Skip to content

Commit 6968f70

Browse files
authored
[release/9.0] Add maintenance-packages entries (#1203)
* System.Buffers 4.6.1 * System.Memory 4.6.2 * System.Net.WebSockets.WebSocketProtocol 5.1.2 * System.Numerics.Vectors 4.6.1 * System.Reflection.DispatchProxy 4.8.2 * System.Runtime.CompilerServices.Unsafe 6.1.1 * System.Threading.Tasks.Extensions 4.6.2 * Build.props
1 parent 27dfbb8 commit 6968f70

30 files changed

+2826
-0
lines changed

eng/Build.props

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,13 @@
2222
Format:
2323
<DependencyPackageProjects Include="$(RepoRoot)src\referencePackages\src\**\Microsoft.Extensions.Options.5.0.0.csproj" />
2424
-->
25+
<DependencyPackageProjects Include="$(RepoRoot)src\referencePackages\src\**\System.Reflection.DispatchProxy.4.8.2.csproj" />
26+
<DependencyPackageProjects Include="$(RepoRoot)src\referencePackages\src\**\System.Runtime.CompilerServices.Unsafe.6.1.1.csproj" />
27+
<DependencyPackageProjects Include="$(RepoRoot)src\referencePackages\src\**\System.Buffers.4.6.1.csproj" />
28+
<DependencyPackageProjects Include="$(RepoRoot)src\referencePackages\src\**\System.Numerics.Vectors.4.6.1.csproj" />
29+
<DependencyPackageProjects Include="$(RepoRoot)src\referencePackages\src\**\System.Memory.4.6.2.csproj" />
30+
<DependencyPackageProjects Include="$(RepoRoot)src\referencePackages\src\**\System.Threading.Tasks.Extensions.4.6.2.csproj" />
31+
<DependencyPackageProjects Include="$(RepoRoot)src\referencePackages\src\**\System.Net.WebSockets.WebSocketProtocol.5.1.2.csproj" />
2532
</ItemGroup>
2633

2734
<ItemGroup Condition="'$(BuildDependencyPackageProjects)' == 'true'">
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
3+
<PropertyGroup>
4+
<TargetFrameworks>netstandard2.0</TargetFrameworks>
5+
<AssemblyName>System.Buffers</AssemblyName>
6+
<StrongNameKeyId>Open</StrongNameKeyId>
7+
</PropertyGroup>
8+
9+
</Project>
Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
// Licensed to the .NET Foundation under one or more agreements.
2+
// The .NET Foundation licenses this file to you under the MIT license.
3+
// See the LICENSE file in the project root for more information.
4+
// ------------------------------------------------------------------------------
5+
// Changes to this file must follow the http://aka.ms/api-review process.
6+
// ------------------------------------------------------------------------------
7+
[assembly: System.Runtime.CompilerServices.CompilationRelaxations(8)]
8+
[assembly: System.Runtime.CompilerServices.RuntimeCompatibility(WrapNonExceptionThrows = true)]
9+
[assembly: System.Diagnostics.Debuggable(System.Diagnostics.DebuggableAttribute.DebuggingModes.IgnoreSymbolStoreSequencePoints)]
10+
[assembly: System.Runtime.Versioning.TargetFramework(".NETStandard,Version=v2.0", FrameworkDisplayName = ".NET Standard 2.0")]
11+
[assembly: System.CLSCompliant(true)]
12+
[assembly: System.Reflection.AssemblyDefaultAlias("System.Buffers")]
13+
[assembly: System.Resources.NeutralResourcesLanguage("en-US")]
14+
[assembly: System.Runtime.InteropServices.DefaultDllImportSearchPaths(System.Runtime.InteropServices.DllImportSearchPath.AssemblyDirectory | System.Runtime.InteropServices.DllImportSearchPath.System32)]
15+
[assembly: System.Reflection.AssemblyCompany("Microsoft Corporation")]
16+
[assembly: System.Reflection.AssemblyCopyright("© Microsoft Corporation. All rights reserved.")]
17+
[assembly: System.Reflection.AssemblyDescription("System.Buffers")]
18+
[assembly: System.Reflection.AssemblyFileVersion("4.600.125.16908")]
19+
[assembly: System.Reflection.AssemblyInformationalVersion("4.6.1+6b84308c9ad012f53240d72c1d716d7e42546483")]
20+
[assembly: System.Reflection.AssemblyProduct("Microsoft® .NET")]
21+
[assembly: System.Reflection.AssemblyTitle("System.Buffers")]
22+
[assembly: System.Reflection.AssemblyMetadata("RepositoryUrl", "https://github.com/dotnet/maintenance-packages")]
23+
[assembly: System.Reflection.AssemblyMetadata("PreferInbox", "True")]
24+
[assembly: System.Reflection.AssemblyMetadata("Serviceable", "True")]
25+
[assembly: System.Reflection.AssemblyVersionAttribute("4.0.2.0")]
26+
[assembly: System.Runtime.CompilerServices.ReferenceAssembly]
27+
[assembly: System.Reflection.AssemblyFlagsAttribute((System.Reflection.AssemblyNameFlags)0x70)]
28+
namespace System.Buffers
29+
{
30+
public abstract partial class ArrayPool<T>
31+
{
32+
public static ArrayPool<T> Shared { get { throw null; } }
33+
34+
public static ArrayPool<T> Create() { throw null; }
35+
36+
public static ArrayPool<T> Create(int maxArrayLength, int maxArraysPerBucket) { throw null; }
37+
38+
public abstract T[] Rent(int minimumLength);
39+
public abstract void Return(T[] array, bool clearArray = false);
40+
}
41+
}

src/referencePackages/src/system.buffers/4.6.1/lib/netstandard2.1/_._

Whitespace-only changes.
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<package xmlns="http://schemas.microsoft.com/packaging/2012/06/nuspec.xsd">
3+
<metadata>
4+
<id>System.Buffers</id>
5+
<version>4.6.1</version>
6+
<authors>Microsoft</authors>
7+
<requireLicenseAcceptance>true</requireLicenseAcceptance>
8+
<license type="expression">MIT</license>
9+
<licenseUrl>https://licenses.nuget.org/MIT</licenseUrl>
10+
<projectUrl>https://github.com/dotnet/maintenance-packages</projectUrl>
11+
<description>System.Buffers</description>
12+
<copyright>© Microsoft Corporation. All rights reserved.</copyright>
13+
<serviceable>true</serviceable>
14+
<repository type="git" url="https://github.com/dotnet/maintenance-packages" commit="6b84308c9ad012f53240d72c1d716d7e42546483" />
15+
<dependencies>
16+
<group targetFramework=".NETStandard2.0" />
17+
<group targetFramework=".NETStandard2.1" />
18+
</dependencies>
19+
</metadata>
20+
</package>
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
3+
<PropertyGroup>
4+
<TargetFrameworks>netstandard2.0</TargetFrameworks>
5+
<AssemblyName>System.Memory</AssemblyName>
6+
<StrongNameKeyId>Open</StrongNameKeyId>
7+
</PropertyGroup>
8+
9+
<ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.0'">
10+
<PackageReference Include="System.Buffers" Version="4.6.1" />
11+
<PackageReference Include="System.Numerics.Vectors" Version="4.6.1" />
12+
<PackageReference Include="System.Runtime.CompilerServices.Unsafe" Version="6.1.1" />
13+
</ItemGroup>
14+
15+
</Project>

0 commit comments

Comments
 (0)