From 926874e00aecc1218f537736a8420b054b7defb9 Mon Sep 17 00:00:00 2001 From: Viktor Hofer Date: Fri, 1 Nov 2019 18:27:23 +0100 Subject: [PATCH] Use Package suffix instead of PackageId and Version suffix instead of PackageVersion (dotnet/corefx#42289) * Use Package suffix instead of PackageId * Manual darc update from build '20191101.2' Commit migrated from https://github.com/dotnet/corefx/commit/931f79e4670cb73c9347e14714fd892907be6630 --- eng/analyzers.props | 2 +- eng/codeOptimization.targets | 4 ++-- eng/packaging.props | 2 +- eng/restore/docs.targets | 4 ++-- eng/restore/illink.targets | 4 ++-- eng/restore/optimizationData.targets | 4 ++-- .../CoreFx.Private.TestUtilities.csproj | 8 ++++---- .../Common/tests/System/Xml/ModuleCore/ModuleCore.csproj | 4 ++-- ...oft.Diagnostics.Tracing.EventSource.Redist.Tests.csproj | 2 +- .../runtime.native.System.Data.SqlClient.sni.pkgproj | 6 +++--- .../tests/System.ComponentModel.TypeConverter.Tests.csproj | 4 ++-- .../FunctionalTests/System.Data.SqlClient.Tests.csproj | 2 +- .../tests/System.Diagnostics.Tracing.Tests.csproj | 2 +- .../tests/System.Drawing.Common.Tests.csproj | 2 +- .../tests/System.IO.Compression.Brotli.Tests.csproj | 2 +- .../tests/System.IO.Compression.ZipFile.Tests.csproj | 2 +- .../tests/System.IO.Compression.Tests.csproj | 2 +- .../tests/System.IO.Packaging.Tests.csproj | 2 +- .../tests/System.Linq.Expressions.Tests.csproj | 2 +- .../System.Net.Http.Functional.Tests.csproj | 2 +- .../tests/System.Net.Requests.Tests.csproj | 2 +- .../tests/FunctionalTests/System.Net.Security.Tests.csproj | 2 +- .../tests/System.Net.WebSockets.Client.Tests.csproj | 2 +- .../XmlWriterApi/System.Xml.RW.XmlWriterApi.Tests.csproj | 2 +- .../tests/System.Resources.Extensions.Tests.csproj | 2 +- ...tem.Security.Cryptography.X509Certificates.Tests.csproj | 2 +- .../System.Text.Json/tests/System.Text.Json.Tests.csproj | 2 +- .../tests/System.Windows.Extensions.Tests.csproj | 6 +++--- .../Microsoft.Private.PackageBaseline.pkgproj | 4 ++-- src/libraries/pkg/frameworkPackage.targets | 6 +++--- .../test/frameworkSettings/netcoreapp5.0/settings.targets | 2 +- .../System.IO.Ports/workaroundDowngrade.targets | 2 +- src/libraries/restore/netstandard/netstandard.depproj | 10 +++++----- src/libraries/restore/runtime/runtime.depproj | 14 +++++++------- src/libraries/restore/tools/tools.depproj | 4 ++-- 35 files changed, 62 insertions(+), 62 deletions(-) diff --git a/eng/analyzers.props b/eng/analyzers.props index 5a52208..4aa6b32 100644 --- a/eng/analyzers.props +++ b/eng/analyzers.props @@ -1,6 +1,6 @@ - + diff --git a/eng/codeOptimization.targets b/eng/codeOptimization.targets index b49f8e5..b46a0f8 100644 --- a/eng/codeOptimization.targets +++ b/eng/codeOptimization.targets @@ -10,8 +10,8 @@ Condition="'$(IsEligibleForNgenOptimization)' == 'true'" BeforeTargets="CoreCompile"> - $(IbcOptimizationDataDir)$(LinuxCoreFxOptimizationDataPackageId)\ - $(IbcOptimizationDataDir)$(WindowsCoreFxOptimizationDataPackageId)\ + $(IbcOptimizationDataDir)$(LinuxCoreFxOptimizationDataPackage)\ + $(IbcOptimizationDataDir)$(WindowsCoreFxOptimizationDataPackage)\ <_optimizationDataAssembly Include="$(IbcOptimizationDataDir)**\$(TargetFileName)" /> diff --git a/eng/packaging.props b/eng/packaging.props index dc94bd7..50af858 100644 --- a/eng/packaging.props +++ b/eng/packaging.props @@ -13,7 +13,7 @@ x64 - $(NuGetPackageRoot)$(MicrosoftPrivateIntellisensePackageId)/$(MicrosoftPrivateIntellisensePackageVersion)/xmldocs/netcoreapp + $(NuGetPackageRoot)$(MicrosoftPrivateIntellisensePackage)/$(MicrosoftPrivateIntellisenseVersion)/xmldocs/netcoreapp diff --git a/eng/restore/docs.targets b/eng/restore/docs.targets index 414f1a5..61c81ea 100644 --- a/eng/restore/docs.targets +++ b/eng/restore/docs.targets @@ -1,7 +1,7 @@ - + @@ -9,7 +9,7 @@ AfterTargets="Restore"> - + $([System.String]::new('%(RecursiveDir)').TrimEnd('\/')) diff --git a/eng/restore/illink.targets b/eng/restore/illink.targets index 137612c..aa40e2a 100644 --- a/eng/restore/illink.targets +++ b/eng/restore/illink.targets @@ -1,14 +1,14 @@ - + - <_illinkSrcFiles Include="$(NuGetPackageRoot)illink.tasks\$(ILLinkTasksPackageVersion)\tools\**\*" /> + <_illinkSrcFiles Include="$(NuGetPackageRoot)illink.tasks\$(ILLinkTasksVersion)\tools\**\*" /> - - + + diff --git a/src/libraries/Common/tests/CoreFx.Private.TestUtilities/CoreFx.Private.TestUtilities.csproj b/src/libraries/Common/tests/CoreFx.Private.TestUtilities/CoreFx.Private.TestUtilities.csproj index e39f68a..79b4f3d 100644 --- a/src/libraries/Common/tests/CoreFx.Private.TestUtilities/CoreFx.Private.TestUtilities.csproj +++ b/src/libraries/Common/tests/CoreFx.Private.TestUtilities/CoreFx.Private.TestUtilities.csproj @@ -73,9 +73,9 @@ - - - - + + + + \ No newline at end of file diff --git a/src/libraries/Common/tests/System/Xml/ModuleCore/ModuleCore.csproj b/src/libraries/Common/tests/System/Xml/ModuleCore/ModuleCore.csproj index ba4906f..75854e6 100644 --- a/src/libraries/Common/tests/System/Xml/ModuleCore/ModuleCore.csproj +++ b/src/libraries/Common/tests/System/Xml/ModuleCore/ModuleCore.csproj @@ -19,7 +19,7 @@ - - + + \ No newline at end of file diff --git a/src/libraries/Microsoft.Diagnostics.Tracing.EventSource.Redist/tests/Microsoft.Diagnostics.Tracing.EventSource.Redist.Tests.csproj b/src/libraries/Microsoft.Diagnostics.Tracing.EventSource.Redist/tests/Microsoft.Diagnostics.Tracing.EventSource.Redist.Tests.csproj index 8c1d7fd..ed97cfd 100644 --- a/src/libraries/Microsoft.Diagnostics.Tracing.EventSource.Redist/tests/Microsoft.Diagnostics.Tracing.EventSource.Redist.Tests.csproj +++ b/src/libraries/Microsoft.Diagnostics.Tracing.EventSource.Redist/tests/Microsoft.Diagnostics.Tracing.EventSource.Redist.Tests.csproj @@ -36,6 +36,6 @@ - + \ No newline at end of file diff --git a/src/libraries/Native/pkg/runtime.native.System.Data.SqlClient.sni/runtime.native.System.Data.SqlClient.sni.pkgproj b/src/libraries/Native/pkg/runtime.native.System.Data.SqlClient.sni/runtime.native.System.Data.SqlClient.sni.pkgproj index 19cda67..2afdca1 100644 --- a/src/libraries/Native/pkg/runtime.native.System.Data.SqlClient.sni/runtime.native.System.Data.SqlClient.sni.pkgproj +++ b/src/libraries/Native/pkg/runtime.native.System.Data.SqlClient.sni/runtime.native.System.Data.SqlClient.sni.pkgproj @@ -6,13 +6,13 @@ - $(RuntimeWinX64RuntimeNativeSystemDataSqlClientSniPackageVersion) + $(RuntimeWinX64RuntimeNativeSystemDataSqlClientSniVersion) - $(RuntimeWinX64RuntimeNativeSystemDataSqlClientSniPackageVersion) + $(RuntimeWinX64RuntimeNativeSystemDataSqlClientSniVersion) - $(RuntimeWinX64RuntimeNativeSystemDataSqlClientSniPackageVersion) + $(RuntimeWinX64RuntimeNativeSystemDataSqlClientSniVersion) diff --git a/src/libraries/System.ComponentModel.TypeConverter/tests/System.ComponentModel.TypeConverter.Tests.csproj b/src/libraries/System.ComponentModel.TypeConverter/tests/System.ComponentModel.TypeConverter.Tests.csproj index bce419e..01ee43a 100644 --- a/src/libraries/System.ComponentModel.TypeConverter/tests/System.ComponentModel.TypeConverter.Tests.csproj +++ b/src/libraries/System.ComponentModel.TypeConverter/tests/System.ComponentModel.TypeConverter.Tests.csproj @@ -156,8 +156,8 @@ - - + + diff --git a/src/libraries/System.Data.SqlClient/tests/FunctionalTests/System.Data.SqlClient.Tests.csproj b/src/libraries/System.Data.SqlClient/tests/FunctionalTests/System.Data.SqlClient.Tests.csproj index b655493..a72c9b9 100644 --- a/src/libraries/System.Data.SqlClient/tests/FunctionalTests/System.Data.SqlClient.Tests.csproj +++ b/src/libraries/System.Data.SqlClient/tests/FunctionalTests/System.Data.SqlClient.Tests.csproj @@ -37,6 +37,6 @@ - + \ No newline at end of file diff --git a/src/libraries/System.Diagnostics.Tracing/tests/System.Diagnostics.Tracing.Tests.csproj b/src/libraries/System.Diagnostics.Tracing/tests/System.Diagnostics.Tracing.Tests.csproj index c0702be..7b71356 100644 --- a/src/libraries/System.Diagnostics.Tracing/tests/System.Diagnostics.Tracing.Tests.csproj +++ b/src/libraries/System.Diagnostics.Tracing/tests/System.Diagnostics.Tracing.Tests.csproj @@ -42,6 +42,6 @@ - + \ No newline at end of file diff --git a/src/libraries/System.Drawing.Common/tests/System.Drawing.Common.Tests.csproj b/src/libraries/System.Drawing.Common/tests/System.Drawing.Common.Tests.csproj index 0b648ca..21d1167 100644 --- a/src/libraries/System.Drawing.Common/tests/System.Drawing.Common.Tests.csproj +++ b/src/libraries/System.Drawing.Common/tests/System.Drawing.Common.Tests.csproj @@ -89,7 +89,7 @@ - + System.Drawing.Tests.48x48_multiple_entries_4bit.ico diff --git a/src/libraries/System.IO.Compression.Brotli/tests/System.IO.Compression.Brotli.Tests.csproj b/src/libraries/System.IO.Compression.Brotli/tests/System.IO.Compression.Brotli.Tests.csproj index 7a4e95c..1401032 100644 --- a/src/libraries/System.IO.Compression.Brotli/tests/System.IO.Compression.Brotli.Tests.csproj +++ b/src/libraries/System.IO.Compression.Brotli/tests/System.IO.Compression.Brotli.Tests.csproj @@ -31,7 +31,7 @@ TODO: Remove when macOS 10.12 support ended. --> - + \ No newline at end of file diff --git a/src/libraries/System.IO.Compression.ZipFile/tests/System.IO.Compression.ZipFile.Tests.csproj b/src/libraries/System.IO.Compression.ZipFile/tests/System.IO.Compression.ZipFile.Tests.csproj index 833cd20..81312d1 100644 --- a/src/libraries/System.IO.Compression.ZipFile/tests/System.IO.Compression.ZipFile.Tests.csproj +++ b/src/libraries/System.IO.Compression.ZipFile/tests/System.IO.Compression.ZipFile.Tests.csproj @@ -38,7 +38,7 @@ TODO: Remove when macOS 10.12 support ended. --> - + \ No newline at end of file diff --git a/src/libraries/System.IO.Compression/tests/System.IO.Compression.Tests.csproj b/src/libraries/System.IO.Compression/tests/System.IO.Compression.Tests.csproj index 263fd1e..332bc6f 100644 --- a/src/libraries/System.IO.Compression/tests/System.IO.Compression.Tests.csproj +++ b/src/libraries/System.IO.Compression/tests/System.IO.Compression.Tests.csproj @@ -52,7 +52,7 @@ TODO: Remove when macOS 10.12 support ended. --> - + \ No newline at end of file diff --git a/src/libraries/System.IO.Packaging/tests/System.IO.Packaging.Tests.csproj b/src/libraries/System.IO.Packaging/tests/System.IO.Packaging.Tests.csproj index 3afc95a..759191c 100644 --- a/src/libraries/System.IO.Packaging/tests/System.IO.Packaging.Tests.csproj +++ b/src/libraries/System.IO.Packaging/tests/System.IO.Packaging.Tests.csproj @@ -6,6 +6,6 @@ - + \ No newline at end of file diff --git a/src/libraries/System.Linq.Expressions/tests/System.Linq.Expressions.Tests.csproj b/src/libraries/System.Linq.Expressions/tests/System.Linq.Expressions.Tests.csproj index db9c2ea..75ae385 100644 --- a/src/libraries/System.Linq.Expressions/tests/System.Linq.Expressions.Tests.csproj +++ b/src/libraries/System.Linq.Expressions/tests/System.Linq.Expressions.Tests.csproj @@ -246,6 +246,6 @@ - + diff --git a/src/libraries/System.Net.Http/tests/FunctionalTests/System.Net.Http.Functional.Tests.csproj b/src/libraries/System.Net.Http/tests/FunctionalTests/System.Net.Http.Functional.Tests.csproj index fbcdc44..e6067c3 100644 --- a/src/libraries/System.Net.Http/tests/FunctionalTests/System.Net.Http.Functional.Tests.csproj +++ b/src/libraries/System.Net.Http/tests/FunctionalTests/System.Net.Http.Functional.Tests.csproj @@ -178,7 +178,7 @@ - + diff --git a/src/libraries/System.Net.Requests/tests/System.Net.Requests.Tests.csproj b/src/libraries/System.Net.Requests/tests/System.Net.Requests.Tests.csproj index cecca4d..909d883 100644 --- a/src/libraries/System.Net.Requests/tests/System.Net.Requests.Tests.csproj +++ b/src/libraries/System.Net.Requests/tests/System.Net.Requests.Tests.csproj @@ -43,6 +43,6 @@ - + diff --git a/src/libraries/System.Net.Security/tests/FunctionalTests/System.Net.Security.Tests.csproj b/src/libraries/System.Net.Security/tests/FunctionalTests/System.Net.Security.Tests.csproj index 390082b..483512e 100644 --- a/src/libraries/System.Net.Security/tests/FunctionalTests/System.Net.Security.Tests.csproj +++ b/src/libraries/System.Net.Security/tests/FunctionalTests/System.Net.Security.Tests.csproj @@ -157,7 +157,7 @@ - + diff --git a/src/libraries/System.Net.WebSockets.Client/tests/System.Net.WebSockets.Client.Tests.csproj b/src/libraries/System.Net.WebSockets.Client/tests/System.Net.WebSockets.Client.Tests.csproj index 90e9f0f..8fa8499 100644 --- a/src/libraries/System.Net.WebSockets.Client/tests/System.Net.WebSockets.Client.Tests.csproj +++ b/src/libraries/System.Net.WebSockets.Client/tests/System.Net.WebSockets.Client.Tests.csproj @@ -60,6 +60,6 @@ - + diff --git a/src/libraries/System.Private.Xml/tests/Writers/XmlWriterApi/System.Xml.RW.XmlWriterApi.Tests.csproj b/src/libraries/System.Private.Xml/tests/Writers/XmlWriterApi/System.Xml.RW.XmlWriterApi.Tests.csproj index 0133358..02d0b53 100644 --- a/src/libraries/System.Private.Xml/tests/Writers/XmlWriterApi/System.Xml.RW.XmlWriterApi.Tests.csproj +++ b/src/libraries/System.Private.Xml/tests/Writers/XmlWriterApi/System.Xml.RW.XmlWriterApi.Tests.csproj @@ -43,6 +43,6 @@ - + \ No newline at end of file diff --git a/src/libraries/System.Resources.Extensions/tests/System.Resources.Extensions.Tests.csproj b/src/libraries/System.Resources.Extensions/tests/System.Resources.Extensions.Tests.csproj index 7aef5b0..c5fca45 100644 --- a/src/libraries/System.Resources.Extensions/tests/System.Resources.Extensions.Tests.csproj +++ b/src/libraries/System.Resources.Extensions/tests/System.Resources.Extensions.Tests.csproj @@ -20,7 +20,7 @@ - + - + diff --git a/src/libraries/restore/netstandard/netstandard.depproj b/src/libraries/restore/netstandard/netstandard.depproj index dbde334..7a4c07c 100644 --- a/src/libraries/restore/netstandard/netstandard.depproj +++ b/src/libraries/restore/netstandard/netstandard.depproj @@ -10,7 +10,7 @@ - $(NETStandardLibraryPackageVersion) + $(NETStandardLibraryVersion) @@ -77,7 +77,7 @@ - <_NETStandard21RefFolder>$(NuGetPackageRoot)$(NETStandardLibraryPackageId.ToLower())\$(NETStandardLibraryPackageVersion)\build\netstandard2.1\ref + <_NETStandard21RefFolder>$(NuGetPackageRoot)$(NETStandardLibraryPackage)\$(NETStandardLibraryVersion)\build\netstandard2.1\ref @@ -102,7 +102,7 @@ - <_NETStandardRefFolder>$(NuGetPackageRoot)$(NETStandardLibraryPackageId.ToLower())\$(NETStandardLibraryPackageVersion)\build\$(_NETStandardTFMFolder)\ref + <_NETStandardRefFolder>$(NuGetPackageRoot)$(NETStandardLibraryPackage)\$(NETStandardLibraryVersion)\build\$(_NETStandardTFMFolder)\ref @@ -117,8 +117,8 @@ False - $(NETStandardLibraryPackageId) - $(NETStandardLibraryPackageVersion) + $(NETStandardLibraryPackage) + $(NETStandardLibraryVersion) diff --git a/src/libraries/restore/runtime/runtime.depproj b/src/libraries/restore/runtime/runtime.depproj index 4214347..3102905 100644 --- a/src/libraries/restore/runtime/runtime.depproj +++ b/src/libraries/restore/runtime/runtime.depproj @@ -13,17 +13,17 @@ - 3.0.0-rc2.19462.14 + 3.0.0-rc2.19462.14 4.6.0-rc2.19462.14 - - - - - - + + + + + + diff --git a/src/libraries/restore/tools/tools.depproj b/src/libraries/restore/tools/tools.depproj index 579af95..5ddb582 100644 --- a/src/libraries/restore/tools/tools.depproj +++ b/src/libraries/restore/tools/tools.depproj @@ -8,10 +8,10 @@ - $(MicrosoftNETCoreILAsmPackageVersion) + $(MicrosoftNETCoreILAsmVersion) - $(MicrosoftNETCoreILAsmPackageVersion) + $(MicrosoftNETCoreILAsmVersion) \ No newline at end of file -- 2.7.4