Merge pull request #8388 from sfoslund/MergeRC1ToMaster
Merge RC1 to master
This commit is contained in:
commit
97f447f228
5 changed files with 14 additions and 10 deletions
|
@ -31,7 +31,7 @@
|
|||
<_NETCoreApp30RuntimePackVersion>3.0.3</_NETCoreApp30RuntimePackVersion>
|
||||
<_NETCoreApp30TargetingPackVersion>3.0.0</_NETCoreApp30TargetingPackVersion>
|
||||
|
||||
<_NETCoreApp31RuntimePackVersion>3.1.2</_NETCoreApp31RuntimePackVersion>
|
||||
<_NETCoreApp31RuntimePackVersion>3.1.7</_NETCoreApp31RuntimePackVersion>
|
||||
<_NETCoreApp31TargetingPackVersion>3.1.0</_NETCoreApp31TargetingPackVersion>
|
||||
|
||||
<_WindowsDesktop30RuntimePackVersion>3.0.3</_WindowsDesktop30RuntimePackVersion>
|
||||
|
@ -281,7 +281,7 @@ Copyright (c) .NET Foundation. All rights reserved.
|
|||
/>
|
||||
|
||||
<KnownFrameworkReference Include="Microsoft.Windows.SDK.NET.Ref"
|
||||
TargetFramework="net5.0-windows10.0.17763"
|
||||
TargetFramework="net5.0-windows10.0.17763.0"
|
||||
RuntimeFrameworkName="Microsoft.Windows.SDK.NET.Ref"
|
||||
DefaultRuntimeFrameworkVersion="$(MicrosoftWindowsSDKNETRef10_0_17763PackageVersion)"
|
||||
LatestRuntimeFrameworkVersion="$(MicrosoftWindowsSDKNETRef10_0_17763PackageVersion)"
|
||||
|
@ -294,7 +294,7 @@ Copyright (c) .NET Foundation. All rights reserved.
|
|||
/>
|
||||
|
||||
<KnownFrameworkReference Include="Microsoft.Windows.SDK.NET.Ref"
|
||||
TargetFramework="net5.0-windows10.0.18362"
|
||||
TargetFramework="net5.0-windows10.0.18362.0"
|
||||
RuntimeFrameworkName="Microsoft.Windows.SDK.NET.Ref"
|
||||
DefaultRuntimeFrameworkVersion="$(MicrosoftWindowsSDKNETRef10_0_18362PackageVersion)"
|
||||
LatestRuntimeFrameworkVersion="$(MicrosoftWindowsSDKNETRef10_0_18362PackageVersion)"
|
||||
|
@ -307,7 +307,7 @@ Copyright (c) .NET Foundation. All rights reserved.
|
|||
/>
|
||||
|
||||
<KnownFrameworkReference Include="Microsoft.Windows.SDK.NET.Ref"
|
||||
TargetFramework="net5.0-windows10.0.19041"
|
||||
TargetFramework="net5.0-windows10.0.19041.0"
|
||||
RuntimeFrameworkName="Microsoft.Windows.SDK.NET.Ref"
|
||||
DefaultRuntimeFrameworkVersion="$(MicrosoftWindowsSDKNETRef10_0_19041PackageVersion)"
|
||||
LatestRuntimeFrameworkVersion="$(MicrosoftWindowsSDKNETRef10_0_19041PackageVersion)"
|
||||
|
|
|
@ -86,7 +86,11 @@
|
|||
|
||||
<ItemGroup>
|
||||
<!-- External files -->
|
||||
<LayoutFilesToSign Include="$(SdkOutputDirectory)**/Newtonsoft.Json.dll">
|
||||
<LayoutFilesToSign Include="$(SdkOutputDirectory)**/Newtonsoft.Json.dll;
|
||||
$(SdkOutputDirectory)**/MessagePack.Annotations.dll;
|
||||
$(SdkOutputDirectory)**/MessagePack.dll;
|
||||
$(SdkOutputDirectory)**/Nerdbank.Streams.dll;
|
||||
$(SdkOutputDirectory)**/StreamJsonRpc.dll">
|
||||
<CertificateName>$(ExternalCertificateId)</CertificateName>
|
||||
</LayoutFilesToSign>
|
||||
<!-- Built binaries -->
|
||||
|
|
|
@ -10,7 +10,7 @@ Use 'dotnet --help' to see available commands or visit: https://aka.ms/dotnet-cl
|
|||
|
||||
Telemetry
|
||||
---------
|
||||
The .NET tools collect usage data in order to help us improve your experience. The data is anonymous and doesn't include command-line arguments. The data is collected by Microsoft and shared with the community. You can opt-out of telemetry by setting the DOTNET_CLI_TELEMETRY_OPTOUT environment variable to '1' or 'true' using your favorite shell.
|
||||
The .NET tools collect usage data in order to help us improve your experience. It is collected by Microsoft and shared with the community. You can opt-out of telemetry by setting the DOTNET_CLI_TELEMETRY_OPTOUT environment variable to '1' or 'true' using your favorite shell.
|
||||
|
||||
Read more about .NET CLI Tools telemetry: https://aka.ms/dotnet-cli-telemetry
|
||||
|
||||
|
|
|
@ -14,7 +14,7 @@ Use 'dotnet --help' to see available commands or visit: https://aka.ms/dotnet-cl
|
|||
|
||||
Telemetry
|
||||
---------
|
||||
The .NET tools collect usage data in order to help us improve your experience. The data is anonymous and doesn't include command-line arguments. The data is collected by Microsoft and shared with the community. You can opt-out of telemetry by setting the DOTNET_CLI_TELEMETRY_OPTOUT environment variable to '1' or 'true' using your favorite shell.
|
||||
The .NET tools collect usage data in order to help us improve your experience. It is collected by Microsoft and shared with the community. You can opt-out of telemetry by setting the DOTNET_CLI_TELEMETRY_OPTOUT environment variable to '1' or 'true' using your favorite shell.
|
||||
|
||||
Read more about .NET CLI Tools telemetry: https://aka.ms/dotnet-cli-telemetry
|
||||
|
||||
|
|
|
@ -13,9 +13,9 @@ namespace EndToEnd
|
|||
public class GivenWindows50App : TestBase
|
||||
{
|
||||
[WindowsOnlyTheory]
|
||||
[InlineData("10.0.17763")]
|
||||
[InlineData("10.0.18362")]
|
||||
[InlineData("10.0.19041")]
|
||||
[InlineData("10.0.17763.0")]
|
||||
[InlineData("10.0.18362.0")]
|
||||
[InlineData("10.0.19041.0")]
|
||||
public void ItCanBuildAndRun(string targetPlatformVersion)
|
||||
{
|
||||
var testInstance = TestAssets.Get(TestAssetKinds.TestProjects, "UseCswinrt")
|
||||
|
|
Loading…
Add table
Reference in a new issue