From cdc33397f13075ab1e66baa2400cc4d8f8bb2a5b Mon Sep 17 00:00:00 2001 From: Viktor Hofer Date: Fri, 1 Nov 2019 14:32:59 +0100 Subject: [PATCH] Use Version suffix for version properties (dotnet/coreclr#27606) Commit migrated from https://github.com/dotnet/coreclr/commit/833493193a849311b56026303bec2eaf11eb7d67 --- docs/coreclr/building/testing-with-corefx.md | 4 ++-- eng/helixcorefxtests.proj | 2 +- .../targets/Microsoft.NET.Sdk.IL.targets | 6 +++--- src/coreclr/tests/src/Common/CoreFX/CoreFX.csproj | 2 +- .../test_dependencies/test_dependencies.csproj | 12 ++++++------ .../NETClients/Primitives/NETClientPrimitives.csproj | 2 +- .../benchmark+intrinsic/benchmark+intrinsic.csproj | 4 ++-- .../tests/src/JIT/config/benchmark/benchmark.csproj | 4 ++-- src/coreclr/tests/src/helixpublishwitharcade.proj | 2 +- .../performance/Scenario/JitBench/JitBench.csproj | 2 +- .../performance/Scenario/JitBench/Runner/Program.cs | 2 +- .../JitBench/unofficial_dotnet/JitBench.csproj | 2 +- src/coreclr/tests/src/performance/performance.csproj | 2 +- 13 files changed, 23 insertions(+), 23 deletions(-) diff --git a/docs/coreclr/building/testing-with-corefx.md b/docs/coreclr/building/testing-with-corefx.md index b2c7d4d21df44..b7e55275a7f78 100644 --- a/docs/coreclr/building/testing-with-corefx.md +++ b/docs/coreclr/building/testing-with-corefx.md @@ -155,10 +155,10 @@ For Linux and macOS: The published tests are summarized in a `corefx-test-assets.xml` file that lives here: ``` -https://dotnetfeed.blob.core.windows.net/dotnet-core/corefx-tests/$(MicrosoftPrivateCoreFxNETCoreAppPackageVersion)/$(__BuildOS).$(__BuildArch)/$(_TargetGroup)/corefx-test-assets.xml +https://dotnetfeed.blob.core.windows.net/dotnet-core/corefx-tests/$(MicrosoftPrivateCoreFxNETCoreAppVersion)/$(__BuildOS).$(__BuildArch)/$(_TargetGroup)/corefx-test-assets.xml ``` -where `MicrosoftPrivateCoreFxNETCoreAppPackageVersion` is defined in `eng\Versions.props`. For example: +where `MicrosoftPrivateCoreFxNETCoreAppVersion` is defined in `eng\Versions.props`. For example: ``` https://dotnetfeed.blob.core.windows.net/dotnet-core/corefx-tests/4.6.0-preview8.19326.15/Linux.arm64/netcoreapp/corefx-test-assets.xml diff --git a/eng/helixcorefxtests.proj b/eng/helixcorefxtests.proj index 923c7776ce7a9..b335ab42a4297 100644 --- a/eng/helixcorefxtests.proj +++ b/eng/helixcorefxtests.proj @@ -195,7 +195,7 @@ <_TargetGroup>netcoreapp - <_AssetManifestPath>$(TestAssetBlobFeedUrl)/corefx-tests/$(MicrosoftPrivateCoreFxNETCoreAppPackageVersion)/$(__BuildOS).$(__BuildArch)/$(_TargetGroup)/corefx-test-assets.xml + <_AssetManifestPath>$(TestAssetBlobFeedUrl)/corefx-tests/$(MicrosoftPrivateCoreFxNETCoreAppVersion)/$(__BuildOS).$(__BuildArch)/$(_TargetGroup)/corefx-test-assets.xml diff --git a/src/coreclr/src/.nuget/Microsoft.NET.Sdk.IL/targets/Microsoft.NET.Sdk.IL.targets b/src/coreclr/src/.nuget/Microsoft.NET.Sdk.IL/targets/Microsoft.NET.Sdk.IL.targets index d84eee42aec3a..299511fa2a8be 100644 --- a/src/coreclr/src/.nuget/Microsoft.NET.Sdk.IL/targets/Microsoft.NET.Sdk.IL.targets +++ b/src/coreclr/src/.nuget/Microsoft.NET.Sdk.IL/targets/Microsoft.NET.Sdk.IL.targets @@ -27,7 +27,7 @@ Copyright (c) .NET Foundation. All rights reserved. <_OSArchitecture>$([System.Runtime.InteropServices.RuntimeInformation]::OSArchitecture) $(_OSPlatform)-$(_OSArchitecture.ToLower()) - 5.0.0 + 5.0.0 runtime.$(MicrosoftNetCoreIlasmPackageRuntimeId).microsoft.netcore.ilasm runtime.$(MicrosoftNetCoreIlasmPackageRuntimeId).microsoft.netcore.ildasm @@ -39,8 +39,8 @@ Copyright (c) .NET Foundation. All rights reserved. - <_IlasmPackageReference Include="$(MicrosoftNetCoreIlasmPackageName)" Version="$(MicrosoftNetCoreIlasmPackageVersion)" /> - <_IlasmPackageReference Include="$(MicrosoftNetCoreIldasmPackageName)" Version="$(MicrosoftNetCoreIlasmPackageVersion)" /> + <_IlasmPackageReference Include="$(MicrosoftNetCoreIlasmPackageName)" Version="$(MicrosoftNETCoreILAsmVersion)" /> + <_IlasmPackageReference Include="$(MicrosoftNetCoreIldasmPackageName)" Version="$(MicrosoftNETCoreILAsmVersion)" /> diff --git a/src/coreclr/tests/src/Common/CoreFX/CoreFX.csproj b/src/coreclr/tests/src/Common/CoreFX/CoreFX.csproj index 02c14daa1c5c9..80a5b268488ad 100644 --- a/src/coreclr/tests/src/Common/CoreFX/CoreFX.csproj +++ b/src/coreclr/tests/src/Common/CoreFX/CoreFX.csproj @@ -29,7 +29,7 @@ - + diff --git a/src/coreclr/tests/src/Common/test_dependencies/test_dependencies.csproj b/src/coreclr/tests/src/Common/test_dependencies/test_dependencies.csproj index 6da41cfeadf32..795e033fbc8fe 100644 --- a/src/coreclr/tests/src/Common/test_dependencies/test_dependencies.csproj +++ b/src/coreclr/tests/src/Common/test_dependencies/test_dependencies.csproj @@ -9,12 +9,12 @@ win-arm;win-arm64;win-x64;win-x86;$(TargetRid) - - - - - - + + + + + + diff --git a/src/coreclr/tests/src/Interop/COM/NETClients/Primitives/NETClientPrimitives.csproj b/src/coreclr/tests/src/Interop/COM/NETClients/Primitives/NETClientPrimitives.csproj index f43122e5fdd5b..c8ac76c7ac124 100644 --- a/src/coreclr/tests/src/Interop/COM/NETClients/Primitives/NETClientPrimitives.csproj +++ b/src/coreclr/tests/src/Interop/COM/NETClients/Primitives/NETClientPrimitives.csproj @@ -25,7 +25,7 @@ - $(MicrosoftPrivateCoreFxNETCoreAppPackageVersion) + $(MicrosoftPrivateCoreFxNETCoreAppVersion) diff --git a/src/coreclr/tests/src/JIT/config/benchmark+intrinsic/benchmark+intrinsic.csproj b/src/coreclr/tests/src/JIT/config/benchmark+intrinsic/benchmark+intrinsic.csproj index a890f89f41316..4eb81d9bd4f12 100644 --- a/src/coreclr/tests/src/JIT/config/benchmark+intrinsic/benchmark+intrinsic.csproj +++ b/src/coreclr/tests/src/JIT/config/benchmark+intrinsic/benchmark+intrinsic.csproj @@ -11,10 +11,10 @@ - $(MicrosoftPrivateCoreFxNETCoreAppPackageVersion) + $(MicrosoftPrivateCoreFxNETCoreAppVersion) - $(MicrosoftPrivateCoreFxNETCoreAppPackageVersion) + $(MicrosoftPrivateCoreFxNETCoreAppVersion) diff --git a/src/coreclr/tests/src/JIT/config/benchmark/benchmark.csproj b/src/coreclr/tests/src/JIT/config/benchmark/benchmark.csproj index 530c44846eb8b..b4b2b6427aed3 100644 --- a/src/coreclr/tests/src/JIT/config/benchmark/benchmark.csproj +++ b/src/coreclr/tests/src/JIT/config/benchmark/benchmark.csproj @@ -56,13 +56,13 @@ 4.4.0-beta-24913-02 - $(MicrosoftPrivateCoreFxNETCoreAppPackageVersion) + $(MicrosoftPrivateCoreFxNETCoreAppVersion) 4.4.0-beta-24913-02 - $(MicrosoftPrivateCoreFxNETCoreAppPackageVersion) + $(MicrosoftPrivateCoreFxNETCoreAppVersion) 4.4.0-beta-24913-02 diff --git a/src/coreclr/tests/src/helixpublishwitharcade.proj b/src/coreclr/tests/src/helixpublishwitharcade.proj index 61af68f156483..27dd136fe67be 100644 --- a/src/coreclr/tests/src/helixpublishwitharcade.proj +++ b/src/coreclr/tests/src/helixpublishwitharcade.proj @@ -124,7 +124,7 @@ - <_XUnitConsoleRunnerFiles Include="$(NuGetPackageRoot)$(MicrosoftDotNetXUnitConsoleRunnerPackage.ToLower())\$(MicrosoftDotNetXUnitConsoleRunnerVersion)\**\xunit.console.*" /> + <_XUnitConsoleRunnerFiles Include="$(NuGetPackageRoot)$(MicrosoftDotNetXUnitConsoleRunnerPackage)\$(MicrosoftDotNetXUnitConsoleRunnerVersion)\**\xunit.console.*" /> diff --git a/src/coreclr/tests/src/performance/Scenario/JitBench/JitBench.csproj b/src/coreclr/tests/src/performance/Scenario/JitBench/JitBench.csproj index 8f93cb5d598f5..7a8bea2a27e34 100644 --- a/src/coreclr/tests/src/performance/Scenario/JitBench/JitBench.csproj +++ b/src/coreclr/tests/src/performance/Scenario/JitBench/JitBench.csproj @@ -33,7 +33,7 @@ - + diff --git a/src/coreclr/tests/src/performance/Scenario/JitBench/Runner/Program.cs b/src/coreclr/tests/src/performance/Scenario/JitBench/Runner/Program.cs index bd664e1e23103..015838d4b8cfb 100644 --- a/src/coreclr/tests/src/performance/Scenario/JitBench/Runner/Program.cs +++ b/src/coreclr/tests/src/performance/Scenario/JitBench/Runner/Program.cs @@ -37,7 +37,7 @@ static TestRun ConfigureTestRun(CommandLineOptions options) TestRun run = new TestRun() { OutputDir = GetInitialWorkingDir(), - DotnetFrameworkVersion = JitBench.VersioningConstants.MicrosoftNetCoreAppPackageVersion, + DotnetFrameworkVersion = JitBench.VersioningConstants.MicrosoftNETCoreAppVersion, Iterations = 11 }; diff --git a/src/coreclr/tests/src/performance/Scenario/JitBench/unofficial_dotnet/JitBench.csproj b/src/coreclr/tests/src/performance/Scenario/JitBench/unofficial_dotnet/JitBench.csproj index 4764b9e3d6ccb..32436b9728690 100644 --- a/src/coreclr/tests/src/performance/Scenario/JitBench/unofficial_dotnet/JitBench.csproj +++ b/src/coreclr/tests/src/performance/Scenario/JitBench/unofficial_dotnet/JitBench.csproj @@ -40,7 +40,7 @@ - + diff --git a/src/coreclr/tests/src/performance/performance.csproj b/src/coreclr/tests/src/performance/performance.csproj index fd937a1bb4534..684a39863103f 100644 --- a/src/coreclr/tests/src/performance/performance.csproj +++ b/src/coreclr/tests/src/performance/performance.csproj @@ -48,7 +48,7 @@ 4.4.0-beta-24913-02 - $(MicrosoftPrivateCoreFxNETCoreAppPackageVersion) + $(MicrosoftPrivateCoreFxNETCoreAppVersion) 4.4.0-beta-24913-02