This commit is contained in:
Meik
2026-03-05 09:56:57 +01:00
parent 838e6b1ee1
commit 4013fa8e32
827 changed files with 743038 additions and 0 deletions

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.8 KiB

View File

@@ -0,0 +1,27 @@
## About
Provides implementations for various value tuple variants. A value tuple is a data structure that has a specific number and sequence of values.
## Main Types
The main types provided by this library are:
- `System.ValueTuple`
- `System.ValueTuple<T1>`
- `System.ValueTuple<T1,T2>`
- `System.ValueTuple<T1,T2,T3>`
- `System.ValueTuple<T1,T2,T3,T4>`
- `System.ValueTuple<T1,T2,T3,T4,T5>`
- `System.ValueTuple<T1,T2,T3,T4,T5,T6>`
- `System.ValueTuple<T1,T2,T3,T4,T5,T6,T7>`
- `System.ValueTuple<T1,T2,T3,T4,T5,T6,T7,TRest>`
- `System.TupleExtensions`
- `System.Runtime.CompilerServices.TupleElementNamesAttribute`
## Additional Documentation
- For more information about these APIs, see [Value tuples](https://learn.microsoft.com/en-us/dotnet/standard/value-tuples).
## License
`System.ValueTuple` is released as open source under the [MIT license](https://licenses.nuget.org/MIT).

Binary file not shown.

View File

@@ -0,0 +1,11 @@
<Project>
<!-- System.ValueTuple is inbox on .NET Framework >= 4.7.1 and therefore any potential redirect for it should be removed.
This is necessary as the assembly version in the already shipped packages is higher than what's provided inbox on .NET Framework. -->
<Target Name="RemoveValueTupleRedirectForNet471AndAbove" DependsOnTargets="ResolveAssemblyReferences" BeforeTargets="GenerateBindingRedirects">
<ItemGroup>
<SuggestedBindingRedirects Remove="System.ValueTuple, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51" />
</ItemGroup>
</Target>
</Project>

View File

@@ -0,0 +1,6 @@
<Project InitialTargets="NETStandardCompatError_System_ValueTuple_net462">
<Target Name="NETStandardCompatError_System_ValueTuple_net462"
Condition="'$(SuppressTfmSupportBuildWarnings)' == ''">
<Warning Text="System.ValueTuple 4.6.1 doesn't support $(TargetFramework) and has not been tested with it. Consider upgrading your TargetFramework to net462 or later. You may also set &lt;SuppressTfmSupportBuildWarnings&gt;true&lt;/SuppressTfmSupportBuildWarnings&gt; in the project file to ignore this warning and attempt to run in this unsupported configuration at your own risk." />
</Target>
</Project>

View File

@@ -0,0 +1,11 @@
<Project>
<!-- System.ValueTuple is inbox on .NET Framework >= 4.7.1 and therefore any potential redirect for it should be removed.
This is necessary as the assembly version in the already shipped packages is higher than what's provided inbox on .NET Framework. -->
<Target Name="RemoveValueTupleRedirectForNet471AndAbove" DependsOnTargets="ResolveAssemblyReferences" BeforeTargets="GenerateBindingRedirects">
<ItemGroup>
<SuggestedBindingRedirects Remove="System.ValueTuple, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51" />
</ItemGroup>
</Target>
</Project>

Binary file not shown.

File diff suppressed because it is too large Load Diff

Binary file not shown.

File diff suppressed because it is too large Load Diff

View File

View File