Skip to content

Commit 3b42dd4

Browse files
committed
Update Vendored Code
1 parent af1afd9 commit 3b42dd4

166 files changed

Lines changed: 31145 additions & 14772 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

tracer/dependabot/Datadog.Dependabot.Vendors.csproj

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,14 @@
3434
<!-- https://www.nuget.org/packages/System.Collections.Immutable/7.0.20 -->
3535
<PackageReference Include="System.Collections.Immutable" Version="7.0.20" />
3636

37-
<!-- https://www.nuget.org/packages/System.Memory/4.5.5 -->
38-
<PackageReference Include="System.Memory" Version="4.5.5" />
37+
<!-- https://www.nuget.org/packages/System.Buffers/4.6.1 -->
38+
<PackageReference Include="System.Buffers" Version="4.6.1" />
39+
40+
<!-- https://www.nuget.org/packages/System.Numerics.Vectors/4.6.1 -->
41+
<PackageReference Include="System.Numerics.Vectors" Version="4.6.1" />
42+
43+
<!-- https://www.nuget.org/packages/System.Memory/4.6.3 -->
44+
<PackageReference Include="System.Memory" Version="4.6.3" />
3945

4046
<!-- https://www.nuget.org/packages/System.Private.CoreLib/1.0.0 -->
4147
<PackageReference Include="System.Private.CoreLib" Version="1.0.0" />
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
## About
2+
3+
Provides resource pooling of any type for performance-critical applications that allocate and deallocate objects frequently.
4+
5+
## Main Types
6+
7+
The main types provided by this library are:
8+
9+
- System.Buffers.ArrayPool<T>
10+
11+
## Additional Documentation
12+
13+
- API reference can be found in: https://learn.microsoft.com/en-us/dotnet/api/system.buffers
14+
15+
## Related Packages
16+
17+
ArrayPool is shipped as part of the shared framework starting with .NET Core 3.1.
18+
19+
## License
20+
21+
System.Buffers is released as open source under the [MIT license](https://licenses.nuget.org/MIT).
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
3+
<PropertyGroup>
4+
<TargetFrameworks>netstandard2.0;$(NetFrameworkMinimum);netstandard2.1;netcoreapp2.0</TargetFrameworks>
5+
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
6+
<StrongNameKeyId>Open</StrongNameKeyId>
7+
<AssemblyVersion>4.0.2.0</AssemblyVersion> <!-- NO-INCREMENT: This version is frozen for netstandard2.0. -->
8+
<IsPlaceholderTargetFramework Condition="'$(TargetFramework)' == 'netstandard2.1' or '$(TargetFramework)' == 'netcoreapp2.0'">true</IsPlaceholderTargetFramework>
9+
</PropertyGroup>
10+
11+
<!-- Package servicing properties -->
12+
<PropertyGroup>
13+
<IsPackable>false</IsPackable>
14+
<VersionPrefix>4.6.1</VersionPrefix>
15+
<VersionPrefix Condition="'$(IsPackable)' == 'true'">4.6.2</VersionPrefix>
16+
<AssemblyVersion Condition="$([MSBuild]::GetTargetFrameworkIdentifier('$(TargetFramework)')) == '.NETFramework'">4.0.5.0</AssemblyVersion>
17+
<AssemblyVersion Condition="'$(IsPackable)' == 'true' and $([MSBuild]::GetTargetFrameworkIdentifier('$(TargetFramework)')) == '.NETFramework'">4.0.6.0</AssemblyVersion>
18+
<PackageValidationBaselineVersion>4.6.1</PackageValidationBaselineVersion>
19+
</PropertyGroup>
20+
21+
</Project>

tracer/src/Datadog.Trace/Vendors/System.Buffers/System.Buffers.xml

Lines changed: 173 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)