This repository has been archived by the owner on Sep 13, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 424
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8912f05
commit 6e57138
Showing
21 changed files
with
660 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
11 changes: 11 additions & 0 deletions
11
netstandard/pkg/shims/netstandard/System.ValueTuple.Forwards.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
[assembly:System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.TupleExtensions))] | ||
[assembly:System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.ValueTuple))] | ||
[assembly:System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.ValueTuple<>))] | ||
[assembly:System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.ValueTuple<,>))] | ||
[assembly:System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.ValueTuple<,,>))] | ||
[assembly:System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.ValueTuple<,,,>))] | ||
[assembly:System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.ValueTuple<,,,,>))] | ||
[assembly:System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.ValueTuple<,,,,,>))] | ||
[assembly:System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.ValueTuple<,,,,,,>))] | ||
[assembly:System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.ValueTuple<,,,,,,,>))] | ||
[assembly:System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Runtime.CompilerServices.TupleElementNamesAttribute))] |
14 changes: 14 additions & 0 deletions
14
netstandard/pkg/shims/netstandard/System.ValueTuple.csproj
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), dir.props))\dir.props" /> | ||
<PropertyGroup> | ||
<AssemblyName>System.ValueTuple</AssemblyName> | ||
<AssemblyVersion>4.0.1.0</AssemblyVersion> | ||
<UseOpenKey>true</UseOpenKey> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<Compile Include="System.ValueTuple.Forwards.cs" /> | ||
<ProjectReference Include="..\..\..\ref\netstandard.csproj" /> | ||
</ItemGroup> | ||
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), dir.targets))\dir.targets" /> | ||
</Project> |
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,16 @@ | ||
Compat issues with assembly netstandard: | ||
TypesMustExist : Type 'System.TupleExtensions' does not exist in the implementation but it does exist in the contract. | ||
TypesMustExist : Type 'System.ValueTuple' does not exist in the implementation but it does exist in the contract. | ||
TypesMustExist : Type 'System.ValueTuple<T1>' does not exist in the implementation but it does exist in the contract. | ||
TypesMustExist : Type 'System.ValueTuple<T1, T2>' does not exist in the implementation but it does exist in the contract. | ||
TypesMustExist : Type 'System.ValueTuple<T1, T2, T3>' does not exist in the implementation but it does exist in the contract. | ||
TypesMustExist : Type 'System.ValueTuple<T1, T2, T3, T4>' does not exist in the implementation but it does exist in the contract. | ||
TypesMustExist : Type 'System.ValueTuple<T1, T2, T3, T4, T5>' does not exist in the implementation but it does exist in the contract. | ||
TypesMustExist : Type 'System.ValueTuple<T1, T2, T3, T4, T5, T6>' does not exist in the implementation but it does exist in the contract. | ||
TypesMustExist : Type 'System.ValueTuple<T1, T2, T3, T4, T5, T6, T7>' does not exist in the implementation but it does exist in the contract. | ||
TypesMustExist : Type 'System.ValueTuple<T1, T2, T3, T4, T5, T6, T7, TRest>' does not exist in the implementation but it does exist in the contract. | ||
TypesMustExist : Type 'System.Runtime.CompilerServices.TupleElementNamesAttribute' does not exist in the implementation but it does exist in the contract. | ||
TypesMustExist : Type 'System.Security.Cryptography.SHA256CryptoServiceProvider' does not exist in the implementation but it does exist in the contract. | ||
TypesMustExist : Type 'System.Security.Cryptography.SHA384CryptoServiceProvider' does not exist in the implementation but it does exist in the contract. | ||
TypesMustExist : Type 'System.Security.Cryptography.SHA512CryptoServiceProvider' does not exist in the implementation but it does exist in the contract. | ||
Total Issues: 3 | ||
Total Issues: 14 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,16 @@ | ||
Compat issues with assembly netstandard: | ||
TypesMustExist : Type 'System.TupleExtensions' does not exist in the implementation but it does exist in the contract. | ||
TypesMustExist : Type 'System.ValueTuple' does not exist in the implementation but it does exist in the contract. | ||
TypesMustExist : Type 'System.ValueTuple<T1>' does not exist in the implementation but it does exist in the contract. | ||
TypesMustExist : Type 'System.ValueTuple<T1, T2>' does not exist in the implementation but it does exist in the contract. | ||
TypesMustExist : Type 'System.ValueTuple<T1, T2, T3>' does not exist in the implementation but it does exist in the contract. | ||
TypesMustExist : Type 'System.ValueTuple<T1, T2, T3, T4>' does not exist in the implementation but it does exist in the contract. | ||
TypesMustExist : Type 'System.ValueTuple<T1, T2, T3, T4, T5>' does not exist in the implementation but it does exist in the contract. | ||
TypesMustExist : Type 'System.ValueTuple<T1, T2, T3, T4, T5, T6>' does not exist in the implementation but it does exist in the contract. | ||
TypesMustExist : Type 'System.ValueTuple<T1, T2, T3, T4, T5, T6, T7>' does not exist in the implementation but it does exist in the contract. | ||
TypesMustExist : Type 'System.ValueTuple<T1, T2, T3, T4, T5, T6, T7, TRest>' does not exist in the implementation but it does exist in the contract. | ||
TypesMustExist : Type 'System.Runtime.CompilerServices.TupleElementNamesAttribute' does not exist in the implementation but it does exist in the contract. | ||
TypesMustExist : Type 'System.Security.Cryptography.SHA256CryptoServiceProvider' does not exist in the implementation but it does exist in the contract. | ||
TypesMustExist : Type 'System.Security.Cryptography.SHA384CryptoServiceProvider' does not exist in the implementation but it does exist in the contract. | ||
TypesMustExist : Type 'System.Security.Cryptography.SHA512CryptoServiceProvider' does not exist in the implementation but it does exist in the contract. | ||
Total Issues: 3 | ||
Total Issues: 14 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,16 @@ | ||
Compat issues with assembly netstandard: | ||
TypesMustExist : Type 'System.TupleExtensions' does not exist in the implementation but it does exist in the contract. | ||
TypesMustExist : Type 'System.ValueTuple' does not exist in the implementation but it does exist in the contract. | ||
TypesMustExist : Type 'System.ValueTuple<T1>' does not exist in the implementation but it does exist in the contract. | ||
TypesMustExist : Type 'System.ValueTuple<T1, T2>' does not exist in the implementation but it does exist in the contract. | ||
TypesMustExist : Type 'System.ValueTuple<T1, T2, T3>' does not exist in the implementation but it does exist in the contract. | ||
TypesMustExist : Type 'System.ValueTuple<T1, T2, T3, T4>' does not exist in the implementation but it does exist in the contract. | ||
TypesMustExist : Type 'System.ValueTuple<T1, T2, T3, T4, T5>' does not exist in the implementation but it does exist in the contract. | ||
TypesMustExist : Type 'System.ValueTuple<T1, T2, T3, T4, T5, T6>' does not exist in the implementation but it does exist in the contract. | ||
TypesMustExist : Type 'System.ValueTuple<T1, T2, T3, T4, T5, T6, T7>' does not exist in the implementation but it does exist in the contract. | ||
TypesMustExist : Type 'System.ValueTuple<T1, T2, T3, T4, T5, T6, T7, TRest>' does not exist in the implementation but it does exist in the contract. | ||
TypesMustExist : Type 'System.Runtime.CompilerServices.TupleElementNamesAttribute' does not exist in the implementation but it does exist in the contract. | ||
TypesMustExist : Type 'System.Security.Cryptography.SHA256CryptoServiceProvider' does not exist in the implementation but it does exist in the contract. | ||
TypesMustExist : Type 'System.Security.Cryptography.SHA384CryptoServiceProvider' does not exist in the implementation but it does exist in the contract. | ||
TypesMustExist : Type 'System.Security.Cryptography.SHA512CryptoServiceProvider' does not exist in the implementation but it does exist in the contract. | ||
Total Issues: 3 | ||
Total Issues: 14 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,16 @@ | ||
Compat issues with assembly netstandard: | ||
TypesMustExist : Type 'System.TupleExtensions' does not exist in the implementation but it does exist in the contract. | ||
TypesMustExist : Type 'System.ValueTuple' does not exist in the implementation but it does exist in the contract. | ||
TypesMustExist : Type 'System.ValueTuple<T1>' does not exist in the implementation but it does exist in the contract. | ||
TypesMustExist : Type 'System.ValueTuple<T1, T2>' does not exist in the implementation but it does exist in the contract. | ||
TypesMustExist : Type 'System.ValueTuple<T1, T2, T3>' does not exist in the implementation but it does exist in the contract. | ||
TypesMustExist : Type 'System.ValueTuple<T1, T2, T3, T4>' does not exist in the implementation but it does exist in the contract. | ||
TypesMustExist : Type 'System.ValueTuple<T1, T2, T3, T4, T5>' does not exist in the implementation but it does exist in the contract. | ||
TypesMustExist : Type 'System.ValueTuple<T1, T2, T3, T4, T5, T6>' does not exist in the implementation but it does exist in the contract. | ||
TypesMustExist : Type 'System.ValueTuple<T1, T2, T3, T4, T5, T6, T7>' does not exist in the implementation but it does exist in the contract. | ||
TypesMustExist : Type 'System.ValueTuple<T1, T2, T3, T4, T5, T6, T7, TRest>' does not exist in the implementation but it does exist in the contract. | ||
TypesMustExist : Type 'System.Runtime.CompilerServices.TupleElementNamesAttribute' does not exist in the implementation but it does exist in the contract. | ||
TypesMustExist : Type 'System.Security.Cryptography.SHA256CryptoServiceProvider' does not exist in the implementation but it does exist in the contract. | ||
TypesMustExist : Type 'System.Security.Cryptography.SHA384CryptoServiceProvider' does not exist in the implementation but it does exist in the contract. | ||
TypesMustExist : Type 'System.Security.Cryptography.SHA512CryptoServiceProvider' does not exist in the implementation but it does exist in the contract. | ||
Total Issues: 3 | ||
Total Issues: 14 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,16 @@ | ||
Compat issues with assembly netstandard: | ||
TypesMustExist : Type 'System.TupleExtensions' does not exist in the implementation but it does exist in the contract. | ||
TypesMustExist : Type 'System.ValueTuple' does not exist in the implementation but it does exist in the contract. | ||
TypesMustExist : Type 'System.ValueTuple<T1>' does not exist in the implementation but it does exist in the contract. | ||
TypesMustExist : Type 'System.ValueTuple<T1, T2>' does not exist in the implementation but it does exist in the contract. | ||
TypesMustExist : Type 'System.ValueTuple<T1, T2, T3>' does not exist in the implementation but it does exist in the contract. | ||
TypesMustExist : Type 'System.ValueTuple<T1, T2, T3, T4>' does not exist in the implementation but it does exist in the contract. | ||
TypesMustExist : Type 'System.ValueTuple<T1, T2, T3, T4, T5>' does not exist in the implementation but it does exist in the contract. | ||
TypesMustExist : Type 'System.ValueTuple<T1, T2, T3, T4, T5, T6>' does not exist in the implementation but it does exist in the contract. | ||
TypesMustExist : Type 'System.ValueTuple<T1, T2, T3, T4, T5, T6, T7>' does not exist in the implementation but it does exist in the contract. | ||
TypesMustExist : Type 'System.ValueTuple<T1, T2, T3, T4, T5, T6, T7, TRest>' does not exist in the implementation but it does exist in the contract. | ||
TypesMustExist : Type 'System.Runtime.CompilerServices.TupleElementNamesAttribute' does not exist in the implementation but it does exist in the contract. | ||
TypesMustExist : Type 'System.Security.Cryptography.SHA256CryptoServiceProvider' does not exist in the implementation but it does exist in the contract. | ||
TypesMustExist : Type 'System.Security.Cryptography.SHA384CryptoServiceProvider' does not exist in the implementation but it does exist in the contract. | ||
TypesMustExist : Type 'System.Security.Cryptography.SHA512CryptoServiceProvider' does not exist in the implementation but it does exist in the contract. | ||
Total Issues: 3 | ||
Total Issues: 14 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,15 @@ | ||
T:System.Security.Cryptography.SHA256CryptoServiceProvider | ||
T:System.Security.Cryptography.SHA384CryptoServiceProvider | ||
T:System.Security.Cryptography.SHA512CryptoServiceProvider | ||
T:System.Security.Cryptography.SHA512CryptoServiceProvider | ||
T:System.TupleExtensions | ||
T:System.ValueTuple | ||
T:System.ValueTuple`1 | ||
T:System.ValueTuple`1 | ||
T:System.ValueTuple`2 | ||
T:System.ValueTuple`3 | ||
T:System.ValueTuple`4 | ||
T:System.ValueTuple`5 | ||
T:System.ValueTuple`6 | ||
T:System.ValueTuple`7 | ||
T:System.ValueTuple`8 | ||
T:System.Runtime.CompilerServices.TupleElementNamesAttribute |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,15 @@ | ||
T:System.Security.Cryptography.SHA256CryptoServiceProvider | ||
T:System.Security.Cryptography.SHA384CryptoServiceProvider | ||
T:System.Security.Cryptography.SHA512CryptoServiceProvider | ||
T:System.Security.Cryptography.SHA512CryptoServiceProvider | ||
T:System.TupleExtensions | ||
T:System.ValueTuple | ||
T:System.ValueTuple`1 | ||
T:System.ValueTuple`1 | ||
T:System.ValueTuple`2 | ||
T:System.ValueTuple`3 | ||
T:System.ValueTuple`4 | ||
T:System.ValueTuple`5 | ||
T:System.ValueTuple`6 | ||
T:System.ValueTuple`7 | ||
T:System.ValueTuple`8 | ||
T:System.Runtime.CompilerServices.TupleElementNamesAttribute |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,15 @@ | ||
T:System.Security.Cryptography.SHA256CryptoServiceProvider | ||
T:System.Security.Cryptography.SHA384CryptoServiceProvider | ||
T:System.Security.Cryptography.SHA512CryptoServiceProvider | ||
T:System.Security.Cryptography.SHA512CryptoServiceProvider | ||
T:System.TupleExtensions | ||
T:System.ValueTuple | ||
T:System.ValueTuple`1 | ||
T:System.ValueTuple`1 | ||
T:System.ValueTuple`2 | ||
T:System.ValueTuple`3 | ||
T:System.ValueTuple`4 | ||
T:System.ValueTuple`5 | ||
T:System.ValueTuple`6 | ||
T:System.ValueTuple`7 | ||
T:System.ValueTuple`8 | ||
T:System.Runtime.CompilerServices.TupleElementNamesAttribute |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,15 @@ | ||
T:System.Security.Cryptography.SHA256CryptoServiceProvider | ||
T:System.Security.Cryptography.SHA384CryptoServiceProvider | ||
T:System.Security.Cryptography.SHA512CryptoServiceProvider | ||
T:System.Security.Cryptography.SHA512CryptoServiceProvider | ||
T:System.TupleExtensions | ||
T:System.ValueTuple | ||
T:System.ValueTuple`1 | ||
T:System.ValueTuple`1 | ||
T:System.ValueTuple`2 | ||
T:System.ValueTuple`3 | ||
T:System.ValueTuple`4 | ||
T:System.ValueTuple`5 | ||
T:System.ValueTuple`6 | ||
T:System.ValueTuple`7 | ||
T:System.ValueTuple`8 | ||
T:System.Runtime.CompilerServices.TupleElementNamesAttribute |
Oops, something went wrong.