diff --git a/Directory.Build.props b/Directory.Build.props index 6c65af67d082d..274f7931f37f0 100644 --- a/Directory.Build.props +++ b/Directory.Build.props @@ -30,6 +30,7 @@ .NETCoreApp,Version=v5.0 netcoreapp5.0 + net472 - net472 + $(NetFrameworkCurrent) false diff --git a/eng/configurations/targetgroups.props b/eng/configurations/targetgroups.props index b080fbefd8e4c..39b14d468263e 100644 --- a/eng/configurations/targetgroups.props +++ b/eng/configurations/targetgroups.props @@ -98,12 +98,6 @@ netcoreapp3.0 netstandard2.1 - - - $(NetCoreAppCurrent) - $(NetCoreAppCurrent) - netstandard2.1 - net45 Microsoft.TargetingPack.NETFramework.v4.5 @@ -157,13 +151,6 @@ net471 netstandard2.0 - - - net472 - Microsoft.TargetingPack.NETFramework.v4.7.2 - net472 - netstandard2.0 - win8 Windows diff --git a/eng/docker/libraries-sdk.linux.Dockerfile b/eng/docker/libraries-sdk.linux.Dockerfile index 9f1cf4ef12f6a..30813d23b6e27 100644 --- a/eng/docker/libraries-sdk.linux.Dockerfile +++ b/eng/docker/libraries-sdk.linux.Dockerfile @@ -14,7 +14,7 @@ RUN ./libraries.sh -c $CONFIGURATION FROM $SDK_BASE_IMAGE as target ARG TESTHOST_LOCATION=/repo/artifacts/bin/testhost -ARG TFM=netcoreapp +ARG TFM=netcoreapp5.0 ARG OS=Linux ARG ARCH=x64 ARG CONFIGURATION=Release diff --git a/eng/docker/libraries-sdk.windows.Dockerfile b/eng/docker/libraries-sdk.windows.Dockerfile index 06a6dc6762501..5954ae39a0c00 100644 --- a/eng/docker/libraries-sdk.windows.Dockerfile +++ b/eng/docker/libraries-sdk.windows.Dockerfile @@ -4,7 +4,7 @@ ARG SDK_BASE_IMAGE=mcr.microsoft.com/dotnet/core/sdk:3.0.100-nanoserver-1809 FROM $SDK_BASE_IMAGE as target ARG TESTHOST_LOCATION=".\\artifacts\\bin\\testhost" -ARG TFM=netcoreapp +ARG TFM=netcoreapp5.0 ARG OS=Windows_NT ARG ARCH=x64 ARG CONFIGURATION=Release diff --git a/eng/illink.targets b/eng/illink.targets index 924122b0e97e4..640a08821fb05 100644 --- a/eng/illink.targets +++ b/eng/illink.targets @@ -11,7 +11,7 @@ $([MSBuild]::NormalizeDirectory('$(PkgILLink_Tasks)', 'tools')) $(ILLinkTasksDir)netcoreapp2.0/ILLink.Tasks.dll - $(ILLinkTasksDir)net472/ILLink.Tasks.dll + $(ILLinkTasksDir)$(NetFrameworkCurrent)/ILLink.Tasks.dll $(IntermediateOutputPath)$(TargetName)$(TargetExt) $(IntermediateOutputPath)$(TargetName).pdb $(IntermediateOutputPath)PreTrim/ diff --git a/eng/liveBuilds.targets b/eng/liveBuilds.targets index 63d8d1b1a2049..9065ac61308d5 100644 --- a/eng/liveBuilds.targets +++ b/eng/liveBuilds.targets @@ -7,10 +7,10 @@ $(Configuration) $([MSBuild]::NormalizeDirectory('$(RepoRoot)', 'artifacts', 'bin', 'coreclr', '$(CoreCLROSGroup).$(TargetArchitecture).$(CoreCLRConfiguration)')) $([MSBuild]::NormalizeDirectory('$(RepoRoot)', 'artifacts', 'bin', 'ref', 'microsoft.netcore.app', '$(LibrariesConfiguration)')) - $([MSBuild]::NormalizeDirectory('$(RepoRoot)', 'artifacts', 'bin', 'ref', 'netcoreapp')) - $([MSBuild]::NormalizeDirectory('$(RepoRoot)', 'artifacts', 'bin', 'pkg', 'netcoreapp', 'runtime', '$(LibrariesOSGroup)-$(LibrariesConfiguration)-$(TargetArchitecture)')) - $([MSBuild]::NormalizeDirectory('$(RepoRoot)', 'artifacts', 'bin', 'runtime', 'netcoreapp-$(LibrariesOSGroup)-$(LibrariesConfiguration)-$(TargetArchitecture)')) - $([MSBuild]::NormalizeDirectory('$(RepoRoot)', 'artifacts', 'bin', 'native', 'netcoreapp-$(LibrariesOSGroup)-$(LibrariesConfiguration)-$(TargetArchitecture)')) + $([MSBuild]::NormalizeDirectory('$(RepoRoot)', 'artifacts', 'bin', 'ref', '$(NetCoreAppCurrent)')) + $([MSBuild]::NormalizeDirectory('$(RepoRoot)', 'artifacts', 'bin', 'pkg', '$(NetCoreAppCurrent)', 'runtime', '$(LibrariesOSGroup)-$(LibrariesConfiguration)-$(TargetArchitecture)')) + $([MSBuild]::NormalizeDirectory('$(RepoRoot)', 'artifacts', 'bin', 'runtime', '$(NetCoreAppCurrent)-$(LibrariesOSGroup)-$(LibrariesConfiguration)-$(TargetArchitecture)')) + $([MSBuild]::NormalizeDirectory('$(RepoRoot)', 'artifacts', 'bin', 'native', '$(NetCoreAppCurrent)-$(LibrariesOSGroup)-$(LibrariesConfiguration)-$(TargetArchitecture)')) x64 x86 x64 diff --git a/eng/pipelines/libraries/build-job.yml b/eng/pipelines/libraries/build-job.yml index ddfa9676fceb8..710dfed04fcf6 100644 --- a/eng/pipelines/libraries/build-job.yml +++ b/eng/pipelines/libraries/build-job.yml @@ -120,8 +120,8 @@ jobs: - task: CopyFiles@2 displayName: Prepare shared framework runtime folder to publish inputs: - sourceFolder: $(Build.SourcesDirectory)/artifacts/bin/pkg/${{ parameters.framework }}/runtime - targetFolder: $(Build.ArtifactStagingDirectory)/artifacts/bin/pkg/${{ parameters.framework }}/runtime + sourceFolder: $(Build.SourcesDirectory)/artifacts/bin/pkg/netcoreapp5.0/runtime # The hardcoded target framework should be removed when we drop the support for versionless targetframeworks from ci. + targetFolder: $(Build.ArtifactStagingDirectory)/artifacts/bin/pkg/netcoreapp5.0/runtime - task: CopyFiles@2 displayName: Prepare docs folder to publish diff --git a/eng/testing/xunit/xunit.targets b/eng/testing/xunit/xunit.targets index 9e637df82a284..ab1430a4614b9 100644 --- a/eng/testing/xunit/xunit.targets +++ b/eng/testing/xunit/xunit.targets @@ -16,7 +16,10 @@ <_withoutCategories Condition="'$(TestScope)' == '' or '$(TestScope)' == 'innerloop'">$(_withoutCategories);OuterLoop <_withoutCategories Condition="!$(_withCategories.Contains('failing'))">$(_withoutCategories);failing - <_withoutCategories>$(_withoutCategories);non$(_bc_TargetGroup)tests + <_targetGroupCategory Condition="'$(TargetsNetCoreApp)' == 'true'">netcoreapp + <_targetGroupCategory Condition="'$(TargetsNetFx)' == 'true'">netfx + + <_withoutCategories>$(_withoutCategories);non$(_targetGroupCategory)tests <_withoutCategories Condition="'$(TargetOSCategory)' != ''">$(_withoutCategories);$(TargetOSCategory) diff --git a/src/coreclr/src/System.Private.CoreLib/CreateRuntimeRootILLinkDescriptorFile.targets b/src/coreclr/src/System.Private.CoreLib/CreateRuntimeRootILLinkDescriptorFile.targets index 9d362c93b1b2a..f64d389477042 100644 --- a/src/coreclr/src/System.Private.CoreLib/CreateRuntimeRootILLinkDescriptorFile.targets +++ b/src/coreclr/src/System.Private.CoreLib/CreateRuntimeRootILLinkDescriptorFile.targets @@ -12,7 +12,7 @@ <_RexcepFilePath Condition=" '$(_RexcepFilePath)' == '' ">$(MSBuildThisFileDirectory)..\vm\rexcep.h <_ILLinkTrimXmlFilePath Condition=" '$(_ILLinkTrimXmlFilePath)' == '' ">$(MSBuildThisFileDirectory)ILLinkTrim.xml <_ILLinkTasksToolsDir>$(PkgILLink_Tasks)/tools - <_ILLinkTasksDir>$(_ILLinkTasksToolsDir)/net472/ + <_ILLinkTasksDir>$(_ILLinkTasksToolsDir)/$(NetFrameworkCurrent)/ <_ILLinkTasksDir Condition="'$(MSBuildRuntimeType)' == 'Core'">$(_ILLinkTasksToolsDir)/netcoreapp2.0/ diff --git a/src/coreclr/tests/dir.common.props b/src/coreclr/tests/dir.common.props index a5495473c6c2e..4382aa1fbfe4e 100644 --- a/src/coreclr/tests/dir.common.props +++ b/src/coreclr/tests/dir.common.props @@ -30,7 +30,7 @@ - + diff --git a/src/coreclr/tests/scripts/run-corefx-tests.py b/src/coreclr/tests/scripts/run-corefx-tests.py index 1dad96057c14e..1ff22dc52b52c 100644 --- a/src/coreclr/tests/scripts/run-corefx-tests.py +++ b/src/coreclr/tests/scripts/run-corefx-tests.py @@ -298,7 +298,7 @@ def main(args): # Gather up some arguments to pass to the different build scripts. - common_config_args = '-configuration Release -framework netcoreapp -os %s -arch %s' % (clr_os, arch) + common_config_args = '-configuration Release -framework netcoreapp5.0 -os %s -arch %s' % (clr_os, arch) build_args = '-build -restore' build_test_args = '-buildtests /p:ArchiveTests=true' @@ -339,7 +339,7 @@ def main(args): 'artifacts', 'bin', 'testhost', - 'netcoreapp-%s-%s-%s' % (clr_os, 'Release', arch), + 'netcoreapp5.0-%s-%s-%s' % (clr_os, 'Release', arch), 'shared', 'Microsoft.NETCore.App') diff --git a/src/libraries/Common/Common.Tests.sln b/src/libraries/Common/Common.Tests.sln index febf1b42271ae..45269df7299e6 100644 --- a/src/libraries/Common/Common.Tests.sln +++ b/src/libraries/Common/Common.Tests.sln @@ -11,10 +11,10 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {C72FD34C-539A-4447-9796-62A229571199}.Debug|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Debug|Any CPU - {C72FD34C-539A-4447-9796-62A229571199}.Debug|Any CPU.Build.0 = netcoreapp-Windows_NT-Debug|Any CPU - {C72FD34C-539A-4447-9796-62A229571199}.Release|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Release|Any CPU - {C72FD34C-539A-4447-9796-62A229571199}.Release|Any CPU.Build.0 = netcoreapp-Windows_NT-Release|Any CPU + {C72FD34C-539A-4447-9796-62A229571199}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Debug|Any CPU + {C72FD34C-539A-4447-9796-62A229571199}.Debug|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Debug|Any CPU + {C72FD34C-539A-4447-9796-62A229571199}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Release|Any CPU + {C72FD34C-539A-4447-9796-62A229571199}.Release|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/src/libraries/Common/tests/Common.Tests.csproj b/src/libraries/Common/tests/Common.Tests.csproj index 1ffe42339eae2..9d617612ab4ab 100644 --- a/src/libraries/Common/tests/Common.Tests.csproj +++ b/src/libraries/Common/tests/Common.Tests.csproj @@ -3,7 +3,7 @@ true false true - netcoreapp-Unix-Debug;netcoreapp-Unix-Release;netcoreapp-Windows_NT-Debug;netcoreapp-Windows_NT-Release + $(NetCoreAppCurrent)-Unix-Debug;$(NetCoreAppCurrent)-Unix-Release;$(NetCoreAppCurrent)-Windows_NT-Debug;$(NetCoreAppCurrent)-Windows_NT-Release diff --git a/src/libraries/Common/tests/Configurations.props b/src/libraries/Common/tests/Configurations.props index 1c0ceb0002ac4..f8d083e8f7a72 100644 --- a/src/libraries/Common/tests/Configurations.props +++ b/src/libraries/Common/tests/Configurations.props @@ -1,8 +1,8 @@  - netcoreapp-Unix; - netcoreapp-Windows_NT; + $(NetCoreAppCurrent)-Unix; + $(NetCoreAppCurrent)-Windows_NT; \ No newline at end of file diff --git a/src/libraries/Common/tests/CoreFx.Private.TestUtilities/Configurations.props b/src/libraries/Common/tests/CoreFx.Private.TestUtilities/Configurations.props index 7538cfb5a8686..4d7a02a5508f2 100644 --- a/src/libraries/Common/tests/CoreFx.Private.TestUtilities/Configurations.props +++ b/src/libraries/Common/tests/CoreFx.Private.TestUtilities/Configurations.props @@ -1,8 +1,8 @@  - netcoreapp; - netfx; + $(NetCoreAppCurrent); + $(NetFrameworkCurrent); 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 4c2d9873e866b..1a9d2d1e93c1b 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 @@ -6,7 +6,7 @@ This assembly is referenced from rid agnostic configurations therefore we can't make it RID specific and instead use runtime checks. --> - netcoreapp-Debug;netcoreapp-Release;netfx-Debug;netfx-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release;$(NetFrameworkCurrent)-Debug;$(NetFrameworkCurrent)-Release diff --git a/src/libraries/Common/tests/StaticTestGenerator/Program.cs b/src/libraries/Common/tests/StaticTestGenerator/Program.cs index a5b5f02725fb9..a3d6b723615e9 100644 --- a/src/libraries/Common/tests/StaticTestGenerator/Program.cs +++ b/src/libraries/Common/tests/StaticTestGenerator/Program.cs @@ -274,7 +274,7 @@ from part in line.Split(' ') // Invalid command line arguments. Console.WriteLine("Usage: "); Console.WriteLine(" Example:"); - Console.WriteLine(@" dotnet run d:\tmpoutput d:\repos\corefx\artifacts\bin\testhost\netcoreapp-Windows_NT-Debug-x64\shared\Microsoft.NETCore.App\$(ProductVersion) d:\repos\corefx\artifacts\bin\System.Runtime.Tests\netcoreapp-Windows_NT-Debug\System.Runtime.Tests.dll"); + Console.WriteLine(@" dotnet run d:\tmpoutput d:\repos\corefx\artifacts\bin\testhost\netcoreapp5.0-Windows_NT-Debug-x64\shared\Microsoft.NETCore.App\$(ProductVersion) d:\repos\corefx\artifacts\bin\System.Runtime.Tests\netcoreapp5.0-Windows_NT-Debug\System.Runtime.Tests.dll"); testAssemblyPath = string.Empty; runtimeAssembliesPath = string.Empty; outputPath = string.Empty; diff --git a/src/libraries/Common/tests/StaticTestGenerator/README.md b/src/libraries/Common/tests/StaticTestGenerator/README.md index 2467b2eebca5a..990bf45ee28fd 100644 --- a/src/libraries/Common/tests/StaticTestGenerator/README.md +++ b/src/libraries/Common/tests/StaticTestGenerator/README.md @@ -22,16 +22,16 @@ From within the utility directory, run the utility with the arguments: For example: ``` -dotnet run d:\output "d:\repos\runtime\artifacts\bin\testhost\netcoreapp-Windows_NT-Debug-x64\shared\Microsoft.NETCore.App\5.0.0" "d:\repos\runtime\artifacts\bin\System.Runtime.Tests\netcoreapp-Windows_NT-Debug\System.Runtime.Tests.dll" +dotnet run d:\output "d:\repos\runtime\artifacts\bin\testhost\netcoreapp5.0-Windows_NT-Debug-x64\shared\Microsoft.NETCore.App\5.0.0" "d:\repos\runtime\artifacts\bin\System.Runtime.Tests\netcoreapp5.0-Windows_NT-Debug\System.Runtime.Tests.dll" ``` This will run the tool and result in output written to the console like: ``` -3/27/2019 10:55:37 PM | Test assembly path : d:\repos\runtime\artifacts\bin\System.Runtime.Tests\netcoreapp-Windows_NT-Debug\System.Runtime.Tests.dll -3/27/2019 10:55:37 PM | Helper assemblies path: d:\repos\runtime\artifacts\bin\testhost\netcoreapp-Windows_NT-Debug-x64\shared\Microsoft.NETCore.App\3.0.0\ +3/27/2019 10:55:37 PM | Test assembly path : d:\repos\runtime\artifacts\bin\System.Runtime.Tests\netcoreapp5.0-Windows_NT-Debug\System.Runtime.Tests.dll +3/27/2019 10:55:37 PM | Helper assemblies path: d:\repos\runtime\artifacts\bin\testhost\netcoreapp5.0-Windows_NT-Debug-x64\shared\Microsoft.NETCore.App\3.0.0\ 3/27/2019 10:55:37 PM | Output path : d:\output\System.Runtime.Tests\ -3/27/2019 10:55:37 PM | Xunit arguments : d:\repos\runtime\artifacts\bin\System.Runtime.Tests\netcoreapp-Windows_NT-Debug\System.Runtime.Tests.dll -notrait category=nonnetcoreapptests -notrait category=nonwindowstests -notrait category=IgnoreForCI -notrait category=failing -notrait category=OuterLoop +3/27/2019 10:55:37 PM | Xunit arguments : d:\repos\runtime\artifacts\bin\System.Runtime.Tests\netcoreapp5.0-Windows_NT-Debug\System.Runtime.Tests.dll -notrait category=nonnetcoreapptests -notrait category=nonwindowstests -notrait category=IgnoreForCI -notrait category=failing -notrait category=OuterLoop 3/27/2019 10:55:37 PM | -3/27/2019 10:55:37 PM | Loaded System.Runtime.Tests from d:\repos\runtime\artifacts\bin\System.Runtime.Tests\netcoreapp-Windows_NT-Debug\System.Runtime.Tests.dll +3/27/2019 10:55:37 PM | Loaded System.Runtime.Tests from d:\repos\runtime\artifacts\bin\System.Runtime.Tests\netcoreapp5.0-Windows_NT-Debug\System.Runtime.Tests.dll 3/27/2019 10:55:37 PM | Found 5322 test methods. 3/27/2019 10:55:38 PM | Found 3469 InlineDatas / 949 MethodDatas across 5322 test methods. 3/27/2019 10:55:38 PM | diff --git a/src/libraries/Common/tests/System/Xml/XmlCoreTest/Configurations.props b/src/libraries/Common/tests/System/Xml/XmlCoreTest/Configurations.props index 89d6ac0f025b9..b6e0d3ce6383b 100644 --- a/src/libraries/Common/tests/System/Xml/XmlCoreTest/Configurations.props +++ b/src/libraries/Common/tests/System/Xml/XmlCoreTest/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/Common/tests/System/Xml/XmlCoreTest/XmlCoreTest.csproj b/src/libraries/Common/tests/System/Xml/XmlCoreTest/XmlCoreTest.csproj index a64f644605f22..0ab1de296fcc9 100644 --- a/src/libraries/Common/tests/System/Xml/XmlCoreTest/XmlCoreTest.csproj +++ b/src/libraries/Common/tests/System/Xml/XmlCoreTest/XmlCoreTest.csproj @@ -2,7 +2,7 @@ Exe XmlCoreTest.Common - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release diff --git a/src/libraries/Directory.Build.props b/src/libraries/Directory.Build.props index 14b00bc14afcb..6129cb657d702 100644 --- a/src/libraries/Directory.Build.props +++ b/src/libraries/Directory.Build.props @@ -45,7 +45,7 @@ See Documentation/coding-guidelines/project-guidelines.md for more details on our configurations. --> - netcoreapp + $(NetCoreAppCurrent) $(DefaultOSGroup) Debug $([System.Runtime.InteropServices.RuntimeInformation]::ProcessArchitecture.ToString().ToLowerInvariant) @@ -60,6 +60,9 @@ $(TargetGroup)-$(OSGroup)-$(ConfigurationGroup)-$(ArchGroup) + + $(NetCoreAppCurrent)-$(OSGroup)-$(ConfigurationGroup)-$(ArchGroup) + $(NetFrameworkCurrent)-$(OSGroup)-$(ConfigurationGroup)-$(ArchGroup) package @@ -154,8 +157,8 @@ - true - true + true + true true @@ -255,7 +258,7 @@ $([MSBuild]::NormalizeDirectory('$(RefRootPath)', '$(TargetGroup)')) $([MSBuild]::NormalizeDirectory('$(RefRootPath)', 'netstandard2.0')) $([MSBuild]::NormalizeDirectory('$(RefRootPath)', 'netstandard2.1')) - $([MSBuild]::NormalizeDirectory('$(RefRootPath)', 'netfx')) + $([MSBuild]::NormalizeDirectory('$(RefRootPath)', '$(NetFrameworkCurrent)')) $([MSBuild]::NormalizeDirectory('$(ArtifactsToolsetDir)', 'ilasm')) @@ -268,10 +271,10 @@ $(TestArchiveRoot)runtime/ - $(ArtifactsBinDir)pkg\netcoreapp\ref - $(ArtifactsBinDir)pkg\netcoreapp\lib - $(ArtifactsBinDir)pkg\netfx\ref - $(ArtifactsBinDir)pkg\netfx\lib + $(ArtifactsBinDir)pkg\$(NetCoreAppCurrent)\ref + $(ArtifactsBinDir)pkg\$(NetCoreAppCurrent)\lib + $(ArtifactsBinDir)pkg\$(NetFrameworkCurrent)\ref + $(ArtifactsBinDir)pkg\$(NetFrameworkCurrent)\lib $([MSBuild]::NormalizeDirectory('$(ArtifactsBinDir)', 'testhost', '$(BuildConfiguration)')) @@ -303,8 +306,8 @@ - true - true + true + true $([MSBuild]::NormalizeDirectory('$(TestHostRootPath)', 'shared', 'Microsoft.NETCore.App', '$(ProductVersion)')) diff --git a/src/libraries/Directory.Build.targets b/src/libraries/Directory.Build.targets index 6536d32bc16d5..533f8bd0684d3 100644 --- a/src/libraries/Directory.Build.targets +++ b/src/libraries/Directory.Build.targets @@ -54,8 +54,8 @@ $(BuildConfigurationRefPath) $(RuntimePath) - - + + $(NETCoreAppPackageRefPath) $(NETCoreAppPackageRuntimePath) $(NETCoreAppPackageRuntimePath)\..\runtime\$(_bc_OSGroup)-$(ConfigurationGroup)-$(ArchGroup) @@ -65,10 +65,10 @@ - + $(NETCoreAppTestSharedFrameworkPath) - + $(TestHostRootPath) @@ -88,7 +88,7 @@ $(RefRootPath)%(Identity)/ - + $(ArtifactsBinDir)runtime/%(Identity)-$(ConfigurationGroup)-$(ArchGroup) diff --git a/src/libraries/Microsoft.CSharp/Microsoft.CSharp.sln b/src/libraries/Microsoft.CSharp/Microsoft.CSharp.sln index f03803bb449e4..954aefa51864c 100644 --- a/src/libraries/Microsoft.CSharp/Microsoft.CSharp.sln +++ b/src/libraries/Microsoft.CSharp/Microsoft.CSharp.sln @@ -26,10 +26,10 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {82B54697-0251-47A1-8546-FC507D0F3B08}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {82B54697-0251-47A1-8546-FC507D0F3B08}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {82B54697-0251-47A1-8546-FC507D0F3B08}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {82B54697-0251-47A1-8546-FC507D0F3B08}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU + {82B54697-0251-47A1-8546-FC507D0F3B08}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {82B54697-0251-47A1-8546-FC507D0F3B08}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {82B54697-0251-47A1-8546-FC507D0F3B08}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {82B54697-0251-47A1-8546-FC507D0F3B08}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU {149D7DFE-2FAC-4A38-89AD-E24CE63AACB8}.Debug|Any CPU.ActiveCfg = netstandard2.0-Debug|Any CPU {149D7DFE-2FAC-4A38-89AD-E24CE63AACB8}.Debug|Any CPU.Build.0 = netstandard2.0-Debug|Any CPU {149D7DFE-2FAC-4A38-89AD-E24CE63AACB8}.Release|Any CPU.ActiveCfg = netstandard2.0-Release|Any CPU diff --git a/src/libraries/Microsoft.CSharp/src/Configurations.props b/src/libraries/Microsoft.CSharp/src/Configurations.props index a5f5bb4d3352b..781348267d404 100644 --- a/src/libraries/Microsoft.CSharp/src/Configurations.props +++ b/src/libraries/Microsoft.CSharp/src/Configurations.props @@ -2,7 +2,7 @@ netstandard2.0; - _netfx; + _$(NetFrameworkCurrent); \ No newline at end of file diff --git a/src/libraries/Microsoft.CSharp/tests/Configurations.props b/src/libraries/Microsoft.CSharp/tests/Configurations.props index 7538cfb5a8686..4d7a02a5508f2 100644 --- a/src/libraries/Microsoft.CSharp/tests/Configurations.props +++ b/src/libraries/Microsoft.CSharp/tests/Configurations.props @@ -1,8 +1,8 @@  - netcoreapp; - netfx; + $(NetCoreAppCurrent); + $(NetFrameworkCurrent); diff --git a/src/libraries/Microsoft.CSharp/tests/Microsoft.CSharp.Tests.csproj b/src/libraries/Microsoft.CSharp/tests/Microsoft.CSharp.Tests.csproj index ee89be8424a46..084f226d301a2 100644 --- a/src/libraries/Microsoft.CSharp/tests/Microsoft.CSharp.Tests.csproj +++ b/src/libraries/Microsoft.CSharp/tests/Microsoft.CSharp.Tests.csproj @@ -1,7 +1,7 @@ true - netcoreapp-Debug;netcoreapp-Release;netfx-Debug;netfx-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release;$(NetFrameworkCurrent)-Debug;$(NetFrameworkCurrent)-Release - netcoreapp-Debug;netcoreapp-Release;netcoreapp-Windows_NT-Debug;netcoreapp-Windows_NT-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release;$(NetCoreAppCurrent)-Windows_NT-Debug;$(NetCoreAppCurrent)-Windows_NT-Release diff --git a/src/libraries/Microsoft.VisualBasic.Core/tests/Configurations.props b/src/libraries/Microsoft.VisualBasic.Core/tests/Configurations.props index 1a037adc3e7c1..f550cb30c4afd 100644 --- a/src/libraries/Microsoft.VisualBasic.Core/tests/Configurations.props +++ b/src/libraries/Microsoft.VisualBasic.Core/tests/Configurations.props @@ -1,8 +1,8 @@  - netcoreapp; - netfx; + $(NetCoreAppCurrent); + $(NetFrameworkCurrent); \ No newline at end of file diff --git a/src/libraries/Microsoft.VisualBasic.Core/tests/Microsoft.VisualBasic.Core.Tests.csproj b/src/libraries/Microsoft.VisualBasic.Core/tests/Microsoft.VisualBasic.Core.Tests.csproj index ad74aafa26ce9..527b447d12324 100644 --- a/src/libraries/Microsoft.VisualBasic.Core/tests/Microsoft.VisualBasic.Core.Tests.csproj +++ b/src/libraries/Microsoft.VisualBasic.Core/tests/Microsoft.VisualBasic.Core.Tests.csproj @@ -1,7 +1,7 @@ true - netcoreapp-Debug;netcoreapp-Release;netfx-Debug;netfx-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release;$(NetFrameworkCurrent)-Debug;$(NetFrameworkCurrent)-Release diff --git a/src/libraries/Microsoft.Win32.Primitives/Microsoft.Win32.Primitives.sln b/src/libraries/Microsoft.Win32.Primitives/Microsoft.Win32.Primitives.sln index 7881d222f85cf..3643978c2cbc1 100644 --- a/src/libraries/Microsoft.Win32.Primitives/Microsoft.Win32.Primitives.sln +++ b/src/libraries/Microsoft.Win32.Primitives/Microsoft.Win32.Primitives.sln @@ -26,18 +26,18 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {3B17C130-FF2C-4B41-82C6-FADF4ED7FDA0}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {3B17C130-FF2C-4B41-82C6-FADF4ED7FDA0}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {3B17C130-FF2C-4B41-82C6-FADF4ED7FDA0}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {3B17C130-FF2C-4B41-82C6-FADF4ED7FDA0}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU - {8FFE99C0-22F8-4462-B839-970EAC1B3472}.Debug|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Debug|Any CPU - {8FFE99C0-22F8-4462-B839-970EAC1B3472}.Debug|Any CPU.Build.0 = netcoreapp-Windows_NT-Debug|Any CPU - {8FFE99C0-22F8-4462-B839-970EAC1B3472}.Release|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Release|Any CPU - {8FFE99C0-22F8-4462-B839-970EAC1B3472}.Release|Any CPU.Build.0 = netcoreapp-Windows_NT-Release|Any CPU - {4DB14BDE-4B2C-4F08-9FE9-789BFE78F3ED}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {4DB14BDE-4B2C-4F08-9FE9-789BFE78F3ED}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {4DB14BDE-4B2C-4F08-9FE9-789BFE78F3ED}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {4DB14BDE-4B2C-4F08-9FE9-789BFE78F3ED}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU + {3B17C130-FF2C-4B41-82C6-FADF4ED7FDA0}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {3B17C130-FF2C-4B41-82C6-FADF4ED7FDA0}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {3B17C130-FF2C-4B41-82C6-FADF4ED7FDA0}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {3B17C130-FF2C-4B41-82C6-FADF4ED7FDA0}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU + {8FFE99C0-22F8-4462-B839-970EAC1B3472}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Debug|Any CPU + {8FFE99C0-22F8-4462-B839-970EAC1B3472}.Debug|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Debug|Any CPU + {8FFE99C0-22F8-4462-B839-970EAC1B3472}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Release|Any CPU + {8FFE99C0-22F8-4462-B839-970EAC1B3472}.Release|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Release|Any CPU + {4DB14BDE-4B2C-4F08-9FE9-789BFE78F3ED}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {4DB14BDE-4B2C-4F08-9FE9-789BFE78F3ED}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {4DB14BDE-4B2C-4F08-9FE9-789BFE78F3ED}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {4DB14BDE-4B2C-4F08-9FE9-789BFE78F3ED}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/src/libraries/Microsoft.Win32.Primitives/ref/Configurations.props b/src/libraries/Microsoft.Win32.Primitives/ref/Configurations.props index 55d2de1d23f8d..7ac45c966c456 100644 --- a/src/libraries/Microsoft.Win32.Primitives/ref/Configurations.props +++ b/src/libraries/Microsoft.Win32.Primitives/ref/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/Microsoft.Win32.Primitives/ref/Microsoft.Win32.Primitives.csproj b/src/libraries/Microsoft.Win32.Primitives/ref/Microsoft.Win32.Primitives.csproj index d695ab05b3a1c..10c6e91cc5f72 100644 --- a/src/libraries/Microsoft.Win32.Primitives/ref/Microsoft.Win32.Primitives.csproj +++ b/src/libraries/Microsoft.Win32.Primitives/ref/Microsoft.Win32.Primitives.csproj @@ -1,6 +1,6 @@ - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release enable diff --git a/src/libraries/Microsoft.Win32.Primitives/src/Configurations.props b/src/libraries/Microsoft.Win32.Primitives/src/Configurations.props index 1c0ceb0002ac4..f8d083e8f7a72 100644 --- a/src/libraries/Microsoft.Win32.Primitives/src/Configurations.props +++ b/src/libraries/Microsoft.Win32.Primitives/src/Configurations.props @@ -1,8 +1,8 @@  - netcoreapp-Unix; - netcoreapp-Windows_NT; + $(NetCoreAppCurrent)-Unix; + $(NetCoreAppCurrent)-Windows_NT; \ No newline at end of file diff --git a/src/libraries/Microsoft.Win32.Primitives/src/Microsoft.Win32.Primitives.csproj b/src/libraries/Microsoft.Win32.Primitives/src/Microsoft.Win32.Primitives.csproj index b4812782c598a..4752a85954c0c 100644 --- a/src/libraries/Microsoft.Win32.Primitives/src/Microsoft.Win32.Primitives.csproj +++ b/src/libraries/Microsoft.Win32.Primitives/src/Microsoft.Win32.Primitives.csproj @@ -1,7 +1,7 @@ true - netcoreapp-Unix-Debug;netcoreapp-Unix-Release;netcoreapp-Windows_NT-Debug;netcoreapp-Windows_NT-Release + $(NetCoreAppCurrent)-Unix-Debug;$(NetCoreAppCurrent)-Unix-Release;$(NetCoreAppCurrent)-Windows_NT-Debug;$(NetCoreAppCurrent)-Windows_NT-Release enable diff --git a/src/libraries/Microsoft.Win32.Primitives/tests/Configurations.props b/src/libraries/Microsoft.Win32.Primitives/tests/Configurations.props index 55d2de1d23f8d..7ac45c966c456 100644 --- a/src/libraries/Microsoft.Win32.Primitives/tests/Configurations.props +++ b/src/libraries/Microsoft.Win32.Primitives/tests/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/Microsoft.Win32.Primitives/tests/Microsoft.Win32.Primitives.Tests.csproj b/src/libraries/Microsoft.Win32.Primitives/tests/Microsoft.Win32.Primitives.Tests.csproj index e2b8924bdb30e..0a6049f1fee9e 100644 --- a/src/libraries/Microsoft.Win32.Primitives/tests/Microsoft.Win32.Primitives.Tests.csproj +++ b/src/libraries/Microsoft.Win32.Primitives/tests/Microsoft.Win32.Primitives.Tests.csproj @@ -1,6 +1,6 @@ - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release diff --git a/src/libraries/Microsoft.Win32.Registry.AccessControl/Microsoft.Win32.Registry.AccessControl.sln b/src/libraries/Microsoft.Win32.Registry.AccessControl/Microsoft.Win32.Registry.AccessControl.sln index 4dd1ded06247f..5fb6f9de4cce7 100644 --- a/src/libraries/Microsoft.Win32.Registry.AccessControl/Microsoft.Win32.Registry.AccessControl.sln +++ b/src/libraries/Microsoft.Win32.Registry.AccessControl/Microsoft.Win32.Registry.AccessControl.sln @@ -26,10 +26,10 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {C2B7761E-A4C0-4285-8B83-CC426A1494FA}.Debug|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Debug|Any CPU - {C2B7761E-A4C0-4285-8B83-CC426A1494FA}.Debug|Any CPU.Build.0 = netcoreapp-Windows_NT-Debug|Any CPU - {C2B7761E-A4C0-4285-8B83-CC426A1494FA}.Release|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Release|Any CPU - {C2B7761E-A4C0-4285-8B83-CC426A1494FA}.Release|Any CPU.Build.0 = netcoreapp-Windows_NT-Release|Any CPU + {C2B7761E-A4C0-4285-8B83-CC426A1494FA}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Debug|Any CPU + {C2B7761E-A4C0-4285-8B83-CC426A1494FA}.Debug|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Debug|Any CPU + {C2B7761E-A4C0-4285-8B83-CC426A1494FA}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Release|Any CPU + {C2B7761E-A4C0-4285-8B83-CC426A1494FA}.Release|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Release|Any CPU {0E23F29E-6BB0-4B94-A5DA-B5E50601E0F2}.Debug|Any CPU.ActiveCfg = netstandard2.0-Windows_NT-Debug|Any CPU {0E23F29E-6BB0-4B94-A5DA-B5E50601E0F2}.Debug|Any CPU.Build.0 = netstandard2.0-Windows_NT-Debug|Any CPU {0E23F29E-6BB0-4B94-A5DA-B5E50601E0F2}.Release|Any CPU.ActiveCfg = netstandard2.0-Windows_NT-Release|Any CPU diff --git a/src/libraries/Microsoft.Win32.Registry.AccessControl/ref/Configurations.props b/src/libraries/Microsoft.Win32.Registry.AccessControl/ref/Configurations.props index c920a6563d85c..60697bb573dff 100644 --- a/src/libraries/Microsoft.Win32.Registry.AccessControl/ref/Configurations.props +++ b/src/libraries/Microsoft.Win32.Registry.AccessControl/ref/Configurations.props @@ -6,7 +6,7 @@ $(PackageConfigurations) - netfx; + $(NetFrameworkCurrent); \ No newline at end of file diff --git a/src/libraries/Microsoft.Win32.Registry.AccessControl/ref/Microsoft.Win32.Registry.AccessControl.csproj b/src/libraries/Microsoft.Win32.Registry.AccessControl/ref/Microsoft.Win32.Registry.AccessControl.csproj index 84535b9c6ad97..5ddefaf36be4c 100644 --- a/src/libraries/Microsoft.Win32.Registry.AccessControl/ref/Microsoft.Win32.Registry.AccessControl.csproj +++ b/src/libraries/Microsoft.Win32.Registry.AccessControl/ref/Microsoft.Win32.Registry.AccessControl.csproj @@ -1,6 +1,6 @@ - net461-Debug;net461-Release;netfx-Debug;netfx-Release;netstandard2.0-Debug;netstandard2.0-Release + net461-Debug;net461-Release;$(NetFrameworkCurrent)-Debug;$(NetFrameworkCurrent)-Release;netstandard2.0-Debug;netstandard2.0-Release diff --git a/src/libraries/Microsoft.Win32.Registry.AccessControl/src/Configurations.props b/src/libraries/Microsoft.Win32.Registry.AccessControl/src/Configurations.props index cd4cc29ce49f2..cd93747f92889 100644 --- a/src/libraries/Microsoft.Win32.Registry.AccessControl/src/Configurations.props +++ b/src/libraries/Microsoft.Win32.Registry.AccessControl/src/Configurations.props @@ -7,7 +7,7 @@ $(PackageConfigurations) - netfx-Windows_NT; + $(NetFrameworkCurrent)-Windows_NT; \ No newline at end of file diff --git a/src/libraries/Microsoft.Win32.Registry.AccessControl/src/Microsoft.Win32.Registry.AccessControl.csproj b/src/libraries/Microsoft.Win32.Registry.AccessControl/src/Microsoft.Win32.Registry.AccessControl.csproj index c02555416be0d..19a854e168b46 100644 --- a/src/libraries/Microsoft.Win32.Registry.AccessControl/src/Microsoft.Win32.Registry.AccessControl.csproj +++ b/src/libraries/Microsoft.Win32.Registry.AccessControl/src/Microsoft.Win32.Registry.AccessControl.csproj @@ -4,7 +4,7 @@ true true SR.PlatformNotSupported_RegistryAccessControl - net461-Windows_NT-Debug;net461-Windows_NT-Release;netfx-Windows_NT-Debug;netfx-Windows_NT-Release;netstandard2.0-Debug;netstandard2.0-Release;netstandard2.0-Windows_NT-Debug;netstandard2.0-Windows_NT-Release + net461-Windows_NT-Debug;net461-Windows_NT-Release;$(NetFrameworkCurrent)-Windows_NT-Debug;$(NetFrameworkCurrent)-Windows_NT-Release;netstandard2.0-Debug;netstandard2.0-Release;netstandard2.0-Windows_NT-Debug;netstandard2.0-Windows_NT-Release diff --git a/src/libraries/Microsoft.Win32.Registry.AccessControl/tests/Configurations.props b/src/libraries/Microsoft.Win32.Registry.AccessControl/tests/Configurations.props index c84dc3ce914ad..372831019a146 100644 --- a/src/libraries/Microsoft.Win32.Registry.AccessControl/tests/Configurations.props +++ b/src/libraries/Microsoft.Win32.Registry.AccessControl/tests/Configurations.props @@ -1,8 +1,8 @@  - netcoreapp-Windows_NT; - netfx-Windows_NT; + $(NetCoreAppCurrent)-Windows_NT; + $(NetFrameworkCurrent)-Windows_NT; \ No newline at end of file diff --git a/src/libraries/Microsoft.Win32.Registry.AccessControl/tests/Microsoft.Win32.Registry.AccessControl.Tests.csproj b/src/libraries/Microsoft.Win32.Registry.AccessControl/tests/Microsoft.Win32.Registry.AccessControl.Tests.csproj index afb36759a1e43..fb56e6625ddbb 100644 --- a/src/libraries/Microsoft.Win32.Registry.AccessControl/tests/Microsoft.Win32.Registry.AccessControl.Tests.csproj +++ b/src/libraries/Microsoft.Win32.Registry.AccessControl/tests/Microsoft.Win32.Registry.AccessControl.Tests.csproj @@ -1,6 +1,6 @@ - netcoreapp-Windows_NT-Debug;netcoreapp-Windows_NT-Release;netfx-Windows_NT-Debug;netfx-Windows_NT-Release + $(NetCoreAppCurrent)-Windows_NT-Debug;$(NetCoreAppCurrent)-Windows_NT-Release;$(NetFrameworkCurrent)-Windows_NT-Debug;$(NetFrameworkCurrent)-Windows_NT-Release diff --git a/src/libraries/Microsoft.Win32.Registry/Microsoft.Win32.Registry.sln b/src/libraries/Microsoft.Win32.Registry/Microsoft.Win32.Registry.sln index 9c3c1e24b6880..942fce4182b34 100644 --- a/src/libraries/Microsoft.Win32.Registry/Microsoft.Win32.Registry.sln +++ b/src/libraries/Microsoft.Win32.Registry/Microsoft.Win32.Registry.sln @@ -26,14 +26,14 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {20A2BA2C-5517-483F-8FFE-643441A59852}.Debug|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Debug|Any CPU - {20A2BA2C-5517-483F-8FFE-643441A59852}.Debug|Any CPU.Build.0 = netcoreapp-Windows_NT-Debug|Any CPU - {20A2BA2C-5517-483F-8FFE-643441A59852}.Release|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Release|Any CPU - {20A2BA2C-5517-483F-8FFE-643441A59852}.Release|Any CPU.Build.0 = netcoreapp-Windows_NT-Release|Any CPU - {D3F18ACC-D327-4ABB-BA6C-E9C34A041B2F}.Debug|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Debug|Any CPU - {D3F18ACC-D327-4ABB-BA6C-E9C34A041B2F}.Debug|Any CPU.Build.0 = netcoreapp-Windows_NT-Debug|Any CPU - {D3F18ACC-D327-4ABB-BA6C-E9C34A041B2F}.Release|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Release|Any CPU - {D3F18ACC-D327-4ABB-BA6C-E9C34A041B2F}.Release|Any CPU.Build.0 = netcoreapp-Windows_NT-Release|Any CPU + {20A2BA2C-5517-483F-8FFE-643441A59852}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Debug|Any CPU + {20A2BA2C-5517-483F-8FFE-643441A59852}.Debug|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Debug|Any CPU + {20A2BA2C-5517-483F-8FFE-643441A59852}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Release|Any CPU + {20A2BA2C-5517-483F-8FFE-643441A59852}.Release|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Release|Any CPU + {D3F18ACC-D327-4ABB-BA6C-E9C34A041B2F}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Debug|Any CPU + {D3F18ACC-D327-4ABB-BA6C-E9C34A041B2F}.Debug|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Debug|Any CPU + {D3F18ACC-D327-4ABB-BA6C-E9C34A041B2F}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Release|Any CPU + {D3F18ACC-D327-4ABB-BA6C-E9C34A041B2F}.Release|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Release|Any CPU {EEC02D4E-217E-4B4D-A7DA-5038FAD44A18}.Debug|Any CPU.ActiveCfg = netstandard2.0-Debug|Any CPU {EEC02D4E-217E-4B4D-A7DA-5038FAD44A18}.Debug|Any CPU.Build.0 = netstandard2.0-Debug|Any CPU {EEC02D4E-217E-4B4D-A7DA-5038FAD44A18}.Release|Any CPU.ActiveCfg = netstandard2.0-Release|Any CPU diff --git a/src/libraries/Microsoft.Win32.Registry/ref/Configurations.props b/src/libraries/Microsoft.Win32.Registry/ref/Configurations.props index e34056edb775c..b4029b347f0a2 100644 --- a/src/libraries/Microsoft.Win32.Registry/ref/Configurations.props +++ b/src/libraries/Microsoft.Win32.Registry/ref/Configurations.props @@ -2,7 +2,7 @@ netstandard2.0; - netfx; + $(NetFrameworkCurrent); net461; diff --git a/src/libraries/Microsoft.Win32.Registry/ref/Microsoft.Win32.Registry.csproj b/src/libraries/Microsoft.Win32.Registry/ref/Microsoft.Win32.Registry.csproj index e5e8504061268..6635a0ec0441e 100644 --- a/src/libraries/Microsoft.Win32.Registry/ref/Microsoft.Win32.Registry.csproj +++ b/src/libraries/Microsoft.Win32.Registry/ref/Microsoft.Win32.Registry.csproj @@ -1,7 +1,7 @@ true - net461-Debug;net461-Release;netfx-Debug;netfx-Release;netstandard2.0-Debug;netstandard2.0-Release + net461-Debug;net461-Release;$(NetFrameworkCurrent)-Debug;$(NetFrameworkCurrent)-Release;netstandard2.0-Debug;netstandard2.0-Release diff --git a/src/libraries/Microsoft.Win32.Registry/src/Configurations.props b/src/libraries/Microsoft.Win32.Registry/src/Configurations.props index 6c06203eb1351..b1d54aae17ecb 100644 --- a/src/libraries/Microsoft.Win32.Registry/src/Configurations.props +++ b/src/libraries/Microsoft.Win32.Registry/src/Configurations.props @@ -8,9 +8,9 @@ $(PackageConfigurations); - netcoreapp-Windows_NT; - netcoreapp-Unix; - netfx-Windows_NT; + $(NetCoreAppCurrent)-Windows_NT; + $(NetCoreAppCurrent)-Unix; + $(NetFrameworkCurrent)-Windows_NT; \ No newline at end of file diff --git a/src/libraries/Microsoft.Win32.Registry/src/Microsoft.Win32.Registry.csproj b/src/libraries/Microsoft.Win32.Registry/src/Microsoft.Win32.Registry.csproj index a837c0ae03e9c..a346f691677a8 100644 --- a/src/libraries/Microsoft.Win32.Registry/src/Microsoft.Win32.Registry.csproj +++ b/src/libraries/Microsoft.Win32.Registry/src/Microsoft.Win32.Registry.csproj @@ -6,7 +6,7 @@ true SR.PlatformNotSupported_Registry $(NoWarn);CA1823 - net461-Windows_NT-Debug;net461-Windows_NT-Release;netcoreapp-Unix-Debug;netcoreapp-Unix-Release;netcoreapp-Windows_NT-Debug;netcoreapp-Windows_NT-Release;netfx-Windows_NT-Debug;netfx-Windows_NT-Release;netstandard2.0-Debug;netstandard2.0-Release;netstandard2.0-Unix-Debug;netstandard2.0-Unix-Release;netstandard2.0-Windows_NT-Debug;netstandard2.0-Windows_NT-Release + net461-Windows_NT-Debug;net461-Windows_NT-Release;$(NetCoreAppCurrent)-Unix-Debug;$(NetCoreAppCurrent)-Unix-Release;$(NetCoreAppCurrent)-Windows_NT-Debug;$(NetCoreAppCurrent)-Windows_NT-Release;$(NetFrameworkCurrent)-Windows_NT-Debug;$(NetFrameworkCurrent)-Windows_NT-Release;netstandard2.0-Debug;netstandard2.0-Release;netstandard2.0-Unix-Debug;netstandard2.0-Unix-Release;netstandard2.0-Windows_NT-Debug;netstandard2.0-Windows_NT-Release diff --git a/src/libraries/Microsoft.Win32.Registry/tests/Configurations.props b/src/libraries/Microsoft.Win32.Registry/tests/Configurations.props index d2b1d4d5d8613..d4f49616fbdcb 100644 --- a/src/libraries/Microsoft.Win32.Registry/tests/Configurations.props +++ b/src/libraries/Microsoft.Win32.Registry/tests/Configurations.props @@ -1,8 +1,8 @@  - netcoreapp-Windows_NT; - netfx-Windows_NT; + $(NetCoreAppCurrent)-Windows_NT; + $(NetFrameworkCurrent)-Windows_NT; diff --git a/src/libraries/Microsoft.Win32.Registry/tests/Microsoft.Win32.Registry.Tests.csproj b/src/libraries/Microsoft.Win32.Registry/tests/Microsoft.Win32.Registry.Tests.csproj index df9f549f652db..bd6bee2da80ef 100644 --- a/src/libraries/Microsoft.Win32.Registry/tests/Microsoft.Win32.Registry.Tests.csproj +++ b/src/libraries/Microsoft.Win32.Registry/tests/Microsoft.Win32.Registry.Tests.csproj @@ -1,7 +1,7 @@ $(DefineConstants);REGISTRY_ASSEMBLY - netcoreapp-Windows_NT-Debug;netcoreapp-Windows_NT-Release;netfx-Windows_NT-Debug;netfx-Windows_NT-Release + $(NetCoreAppCurrent)-Windows_NT-Debug;$(NetCoreAppCurrent)-Windows_NT-Release;$(NetFrameworkCurrent)-Windows_NT-Debug;$(NetFrameworkCurrent)-Windows_NT-Release diff --git a/src/libraries/Microsoft.Win32.SystemEvents/Microsoft.Win32.SystemEvents.sln b/src/libraries/Microsoft.Win32.SystemEvents/Microsoft.Win32.SystemEvents.sln index 50e94719c123a..2fc4b5a00974c 100644 --- a/src/libraries/Microsoft.Win32.SystemEvents/Microsoft.Win32.SystemEvents.sln +++ b/src/libraries/Microsoft.Win32.SystemEvents/Microsoft.Win32.SystemEvents.sln @@ -26,14 +26,14 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {8B21F7AD-928E-474C-875A-83D753BB8A28}.Debug|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Debug|Any CPU - {8B21F7AD-928E-474C-875A-83D753BB8A28}.Debug|Any CPU.Build.0 = netcoreapp-Windows_NT-Debug|Any CPU - {8B21F7AD-928E-474C-875A-83D753BB8A28}.Release|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Release|Any CPU - {8B21F7AD-928E-474C-875A-83D753BB8A28}.Release|Any CPU.Build.0 = netcoreapp-Windows_NT-Release|Any CPU - {91DD22C6-521E-49F9-84E8-1D65BAB97776}.Debug|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Debug|Any CPU - {91DD22C6-521E-49F9-84E8-1D65BAB97776}.Debug|Any CPU.Build.0 = netcoreapp-Windows_NT-Debug|Any CPU - {91DD22C6-521E-49F9-84E8-1D65BAB97776}.Release|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Release|Any CPU - {91DD22C6-521E-49F9-84E8-1D65BAB97776}.Release|Any CPU.Build.0 = netcoreapp-Windows_NT-Release|Any CPU + {8B21F7AD-928E-474C-875A-83D753BB8A28}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Debug|Any CPU + {8B21F7AD-928E-474C-875A-83D753BB8A28}.Debug|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Debug|Any CPU + {8B21F7AD-928E-474C-875A-83D753BB8A28}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Release|Any CPU + {8B21F7AD-928E-474C-875A-83D753BB8A28}.Release|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Release|Any CPU + {91DD22C6-521E-49F9-84E8-1D65BAB97776}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Debug|Any CPU + {91DD22C6-521E-49F9-84E8-1D65BAB97776}.Debug|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Debug|Any CPU + {91DD22C6-521E-49F9-84E8-1D65BAB97776}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Release|Any CPU + {91DD22C6-521E-49F9-84E8-1D65BAB97776}.Release|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Release|Any CPU {90BAFB3A-C396-4323-AC4F-5F968230AD22}.Debug|Any CPU.ActiveCfg = netstandard2.0-Debug|Any CPU {90BAFB3A-C396-4323-AC4F-5F968230AD22}.Debug|Any CPU.Build.0 = netstandard2.0-Debug|Any CPU {90BAFB3A-C396-4323-AC4F-5F968230AD22}.Release|Any CPU.ActiveCfg = netstandard2.0-Release|Any CPU diff --git a/src/libraries/Microsoft.Win32.SystemEvents/ref/Configurations.props b/src/libraries/Microsoft.Win32.SystemEvents/ref/Configurations.props index e34056edb775c..b4029b347f0a2 100644 --- a/src/libraries/Microsoft.Win32.SystemEvents/ref/Configurations.props +++ b/src/libraries/Microsoft.Win32.SystemEvents/ref/Configurations.props @@ -2,7 +2,7 @@ netstandard2.0; - netfx; + $(NetFrameworkCurrent); net461; diff --git a/src/libraries/Microsoft.Win32.SystemEvents/ref/Microsoft.Win32.SystemEvents.csproj b/src/libraries/Microsoft.Win32.SystemEvents/ref/Microsoft.Win32.SystemEvents.csproj index dcc0e51974bd6..5617adad535e4 100644 --- a/src/libraries/Microsoft.Win32.SystemEvents/ref/Microsoft.Win32.SystemEvents.csproj +++ b/src/libraries/Microsoft.Win32.SystemEvents/ref/Microsoft.Win32.SystemEvents.csproj @@ -1,7 +1,7 @@ true - net461-Debug;net461-Release;netfx-Debug;netfx-Release;netstandard2.0-Debug;netstandard2.0-Release + net461-Debug;net461-Release;$(NetFrameworkCurrent)-Debug;$(NetFrameworkCurrent)-Release;netstandard2.0-Debug;netstandard2.0-Release diff --git a/src/libraries/Microsoft.Win32.SystemEvents/src/Configurations.props b/src/libraries/Microsoft.Win32.SystemEvents/src/Configurations.props index cbb889b978fd4..0860f3358eeb4 100644 --- a/src/libraries/Microsoft.Win32.SystemEvents/src/Configurations.props +++ b/src/libraries/Microsoft.Win32.SystemEvents/src/Configurations.props @@ -8,8 +8,8 @@ $(PackageConfigurations); - netcoreapp-Windows_NT; - netfx; + $(NetCoreAppCurrent)-Windows_NT; + $(NetFrameworkCurrent); \ No newline at end of file diff --git a/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft.Win32.SystemEvents.csproj b/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft.Win32.SystemEvents.csproj index 7b55806b4c31b..6538e6b9b9484 100644 --- a/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft.Win32.SystemEvents.csproj +++ b/src/libraries/Microsoft.Win32.SystemEvents/src/Microsoft.Win32.SystemEvents.csproj @@ -3,7 +3,7 @@ true true SR.PlatformNotSupported_SystemEvents - net461-Debug;net461-Release;netcoreapp-Windows_NT-Debug;netcoreapp-Windows_NT-Release;netcoreapp2.0-Windows_NT-Debug;netcoreapp2.0-Windows_NT-Release;netcoreapp3.0-Windows_NT-Debug;netcoreapp3.0-Windows_NT-Release;netfx-Debug;netfx-Release;netstandard2.0-Debug;netstandard2.0-Release + net461-Debug;net461-Release;$(NetCoreAppCurrent)-Windows_NT-Debug;$(NetCoreAppCurrent)-Windows_NT-Release;netcoreapp2.0-Windows_NT-Debug;netcoreapp2.0-Windows_NT-Release;netcoreapp3.0-Windows_NT-Debug;netcoreapp3.0-Windows_NT-Release;$(NetFrameworkCurrent)-Debug;$(NetFrameworkCurrent)-Release;netstandard2.0-Debug;netstandard2.0-Release @@ -146,7 +146,7 @@ - + Common\System\Runtime\InteropServices\SuppressGCTransitionAttribute.internal.cs diff --git a/src/libraries/Microsoft.Win32.SystemEvents/tests/Configurations.props b/src/libraries/Microsoft.Win32.SystemEvents/tests/Configurations.props index d2b1d4d5d8613..d4f49616fbdcb 100644 --- a/src/libraries/Microsoft.Win32.SystemEvents/tests/Configurations.props +++ b/src/libraries/Microsoft.Win32.SystemEvents/tests/Configurations.props @@ -1,8 +1,8 @@  - netcoreapp-Windows_NT; - netfx-Windows_NT; + $(NetCoreAppCurrent)-Windows_NT; + $(NetFrameworkCurrent)-Windows_NT; diff --git a/src/libraries/Microsoft.Win32.SystemEvents/tests/Microsoft.Win32.SystemEvents.Tests.csproj b/src/libraries/Microsoft.Win32.SystemEvents/tests/Microsoft.Win32.SystemEvents.Tests.csproj index 59df61485f1bf..842ef8d8a9812 100644 --- a/src/libraries/Microsoft.Win32.SystemEvents/tests/Microsoft.Win32.SystemEvents.Tests.csproj +++ b/src/libraries/Microsoft.Win32.SystemEvents/tests/Microsoft.Win32.SystemEvents.Tests.csproj @@ -1,6 +1,6 @@ - netcoreapp-Windows_NT-Debug;netcoreapp-Windows_NT-Release;netfx-Windows_NT-Debug;netfx-Windows_NT-Release + $(NetCoreAppCurrent)-Windows_NT-Debug;$(NetCoreAppCurrent)-Windows_NT-Release;$(NetFrameworkCurrent)-Windows_NT-Debug;$(NetFrameworkCurrent)-Windows_NT-Release diff --git a/src/libraries/Microsoft.XmlSerializer.Generator/Microsoft.XmlSerializer.Generator.sln b/src/libraries/Microsoft.XmlSerializer.Generator/Microsoft.XmlSerializer.Generator.sln index 6e25f32593d4f..1f9875970efe2 100644 --- a/src/libraries/Microsoft.XmlSerializer.Generator/Microsoft.XmlSerializer.Generator.sln +++ b/src/libraries/Microsoft.XmlSerializer.Generator/Microsoft.XmlSerializer.Generator.sln @@ -19,10 +19,10 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {0D1E2954-A5C7-4B8C-932A-31EB4A96A737}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {0D1E2954-A5C7-4B8C-932A-31EB4A96A737}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {0D1E2954-A5C7-4B8C-932A-31EB4A96A737}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {0D1E2954-A5C7-4B8C-932A-31EB4A96A737}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU + {0D1E2954-A5C7-4B8C-932A-31EB4A96A737}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {0D1E2954-A5C7-4B8C-932A-31EB4A96A737}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {0D1E2954-A5C7-4B8C-932A-31EB4A96A737}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {0D1E2954-A5C7-4B8C-932A-31EB4A96A737}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU {80958E8B-2FEB-4F95-83F9-825CA1ED26F8}.Debug|Any CPU.ActiveCfg = netstandard2.0-Debug|Any CPU {80958E8B-2FEB-4F95-83F9-825CA1ED26F8}.Debug|Any CPU.Build.0 = netstandard2.0-Debug|Any CPU {80958E8B-2FEB-4F95-83F9-825CA1ED26F8}.Release|Any CPU.ActiveCfg = netstandard2.0-Release|Any CPU diff --git a/src/libraries/Microsoft.XmlSerializer.Generator/tests/Configurations.props b/src/libraries/Microsoft.XmlSerializer.Generator/tests/Configurations.props index 55d2de1d23f8d..7ac45c966c456 100644 --- a/src/libraries/Microsoft.XmlSerializer.Generator/tests/Configurations.props +++ b/src/libraries/Microsoft.XmlSerializer.Generator/tests/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/Microsoft.XmlSerializer.Generator/tests/Microsoft.XmlSerializer.Generator.Tests.csproj b/src/libraries/Microsoft.XmlSerializer.Generator/tests/Microsoft.XmlSerializer.Generator.Tests.csproj index adbab7f1425e8..cb7d029fd04c8 100644 --- a/src/libraries/Microsoft.XmlSerializer.Generator/tests/Microsoft.XmlSerializer.Generator.Tests.csproj +++ b/src/libraries/Microsoft.XmlSerializer.Generator/tests/Microsoft.XmlSerializer.Generator.Tests.csproj @@ -1,7 +1,7 @@ $(DefineConstants);XMLSERIALIZERGENERATORTESTS - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release false true diff --git a/src/libraries/Native/native-binplace.proj b/src/libraries/Native/native-binplace.proj index dac523ba03301..831252e5ac1d6 100644 --- a/src/libraries/Native/native-binplace.proj +++ b/src/libraries/Native/native-binplace.proj @@ -1,9 +1,9 @@ - netcoreapp; + $(NetCoreAppCurrent); netstandard2.0; - netfx; + $(NetFrameworkCurrent); diff --git a/src/libraries/System.AppContext/System.AppContext.sln b/src/libraries/System.AppContext/System.AppContext.sln index 08260a62a56cd..5f6ec6aedee12 100644 --- a/src/libraries/System.AppContext/System.AppContext.sln +++ b/src/libraries/System.AppContext/System.AppContext.sln @@ -26,18 +26,18 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {6F04B167-A03F-4206-8481-60213C3EF9B9}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {6F04B167-A03F-4206-8481-60213C3EF9B9}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {6F04B167-A03F-4206-8481-60213C3EF9B9}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {6F04B167-A03F-4206-8481-60213C3EF9B9}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU - {5522BAFC-E2FF-4896-993A-401DDEDFD85F}.Debug|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Debug|Any CPU - {5522BAFC-E2FF-4896-993A-401DDEDFD85F}.Debug|Any CPU.Build.0 = netcoreapp-Windows_NT-Debug|Any CPU - {5522BAFC-E2FF-4896-993A-401DDEDFD85F}.Release|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Release|Any CPU - {5522BAFC-E2FF-4896-993A-401DDEDFD85F}.Release|Any CPU.Build.0 = netcoreapp-Windows_NT-Release|Any CPU - {2D7BBD88-739E-472A-9F44-2794049A688F}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {2D7BBD88-739E-472A-9F44-2794049A688F}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {2D7BBD88-739E-472A-9F44-2794049A688F}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {2D7BBD88-739E-472A-9F44-2794049A688F}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU + {6F04B167-A03F-4206-8481-60213C3EF9B9}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {6F04B167-A03F-4206-8481-60213C3EF9B9}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {6F04B167-A03F-4206-8481-60213C3EF9B9}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {6F04B167-A03F-4206-8481-60213C3EF9B9}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU + {5522BAFC-E2FF-4896-993A-401DDEDFD85F}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Debug|Any CPU + {5522BAFC-E2FF-4896-993A-401DDEDFD85F}.Debug|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Debug|Any CPU + {5522BAFC-E2FF-4896-993A-401DDEDFD85F}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Release|Any CPU + {5522BAFC-E2FF-4896-993A-401DDEDFD85F}.Release|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Release|Any CPU + {2D7BBD88-739E-472A-9F44-2794049A688F}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {2D7BBD88-739E-472A-9F44-2794049A688F}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {2D7BBD88-739E-472A-9F44-2794049A688F}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {2D7BBD88-739E-472A-9F44-2794049A688F}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/src/libraries/System.AppContext/ref/Configurations.props b/src/libraries/System.AppContext/ref/Configurations.props index 55d2de1d23f8d..7ac45c966c456 100644 --- a/src/libraries/System.AppContext/ref/Configurations.props +++ b/src/libraries/System.AppContext/ref/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.AppContext/ref/System.AppContext.csproj b/src/libraries/System.AppContext/ref/System.AppContext.csproj index 8e05a9ff317a9..7ba345bfdd320 100644 --- a/src/libraries/System.AppContext/ref/System.AppContext.csproj +++ b/src/libraries/System.AppContext/ref/System.AppContext.csproj @@ -1,6 +1,6 @@ - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release diff --git a/src/libraries/System.AppContext/src/Configurations.props b/src/libraries/System.AppContext/src/Configurations.props index db389259c06b1..f3922475141ae 100644 --- a/src/libraries/System.AppContext/src/Configurations.props +++ b/src/libraries/System.AppContext/src/Configurations.props @@ -1,8 +1,8 @@  - netcoreapp-Windows_NT; - netcoreapp-Unix; + $(NetCoreAppCurrent)-Windows_NT; + $(NetCoreAppCurrent)-Unix; diff --git a/src/libraries/System.AppContext/src/System.AppContext.csproj b/src/libraries/System.AppContext/src/System.AppContext.csproj index 333ca55fcbf01..09c8bddfea2b1 100644 --- a/src/libraries/System.AppContext/src/System.AppContext.csproj +++ b/src/libraries/System.AppContext/src/System.AppContext.csproj @@ -3,7 +3,7 @@ System.AppContext true true - netcoreapp-Unix-Debug;netcoreapp-Unix-Release;netcoreapp-Windows_NT-Debug;netcoreapp-Windows_NT-Release + $(NetCoreAppCurrent)-Unix-Debug;$(NetCoreAppCurrent)-Unix-Release;$(NetCoreAppCurrent)-Windows_NT-Debug;$(NetCoreAppCurrent)-Windows_NT-Release diff --git a/src/libraries/System.AppContext/tests/Configurations.props b/src/libraries/System.AppContext/tests/Configurations.props index 55d2de1d23f8d..7ac45c966c456 100644 --- a/src/libraries/System.AppContext/tests/Configurations.props +++ b/src/libraries/System.AppContext/tests/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.AppContext/tests/System.AppContext.Tests.csproj b/src/libraries/System.AppContext/tests/System.AppContext.Tests.csproj index 6612f46f794f4..2a150e88c9c85 100644 --- a/src/libraries/System.AppContext/tests/System.AppContext.Tests.csproj +++ b/src/libraries/System.AppContext/tests/System.AppContext.Tests.csproj @@ -1,6 +1,6 @@ - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release true diff --git a/src/libraries/System.Buffers/System.Buffers.sln b/src/libraries/System.Buffers/System.Buffers.sln index ba69f7767b746..b0ccaed92ba12 100644 --- a/src/libraries/System.Buffers/System.Buffers.sln +++ b/src/libraries/System.Buffers/System.Buffers.sln @@ -26,18 +26,18 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {62E2AD5F-C8D0-45FB-B6A5-AED2C77F198C}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {62E2AD5F-C8D0-45FB-B6A5-AED2C77F198C}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {62E2AD5F-C8D0-45FB-B6A5-AED2C77F198C}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {62E2AD5F-C8D0-45FB-B6A5-AED2C77F198C}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU - {2ADDB484-6F57-4D71-A3FE-A57EC6329A2B}.Debug|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Debug|Any CPU - {2ADDB484-6F57-4D71-A3FE-A57EC6329A2B}.Debug|Any CPU.Build.0 = netcoreapp-Windows_NT-Debug|Any CPU - {2ADDB484-6F57-4D71-A3FE-A57EC6329A2B}.Release|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Release|Any CPU - {2ADDB484-6F57-4D71-A3FE-A57EC6329A2B}.Release|Any CPU.Build.0 = netcoreapp-Windows_NT-Release|Any CPU - {11AE73F7-3532-47B9-8FF6-B4F22D76456C}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {11AE73F7-3532-47B9-8FF6-B4F22D76456C}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {11AE73F7-3532-47B9-8FF6-B4F22D76456C}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {11AE73F7-3532-47B9-8FF6-B4F22D76456C}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU + {62E2AD5F-C8D0-45FB-B6A5-AED2C77F198C}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {62E2AD5F-C8D0-45FB-B6A5-AED2C77F198C}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {62E2AD5F-C8D0-45FB-B6A5-AED2C77F198C}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {62E2AD5F-C8D0-45FB-B6A5-AED2C77F198C}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU + {2ADDB484-6F57-4D71-A3FE-A57EC6329A2B}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Debug|Any CPU + {2ADDB484-6F57-4D71-A3FE-A57EC6329A2B}.Debug|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Debug|Any CPU + {2ADDB484-6F57-4D71-A3FE-A57EC6329A2B}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Release|Any CPU + {2ADDB484-6F57-4D71-A3FE-A57EC6329A2B}.Release|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Release|Any CPU + {11AE73F7-3532-47B9-8FF6-B4F22D76456C}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {11AE73F7-3532-47B9-8FF6-B4F22D76456C}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {11AE73F7-3532-47B9-8FF6-B4F22D76456C}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {11AE73F7-3532-47B9-8FF6-B4F22D76456C}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/src/libraries/System.Buffers/ref/Configurations.props b/src/libraries/System.Buffers/ref/Configurations.props index d0b1b2ca247a2..698e595386574 100644 --- a/src/libraries/System.Buffers/ref/Configurations.props +++ b/src/libraries/System.Buffers/ref/Configurations.props @@ -2,7 +2,7 @@ netstandard2.0; - netcoreapp; + $(NetCoreAppCurrent); diff --git a/src/libraries/System.Buffers/ref/System.Buffers.csproj b/src/libraries/System.Buffers/ref/System.Buffers.csproj index 60ccf4e84aff3..fdc1f6745dee9 100644 --- a/src/libraries/System.Buffers/ref/System.Buffers.csproj +++ b/src/libraries/System.Buffers/ref/System.Buffers.csproj @@ -3,7 +3,7 @@ 4.0.2.0 - netcoreapp-Debug;netcoreapp-Release;netstandard2.0-Debug;netstandard2.0-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release;netstandard2.0-Debug;netstandard2.0-Release enable diff --git a/src/libraries/System.Buffers/src/Configurations.props b/src/libraries/System.Buffers/src/Configurations.props index db389259c06b1..f3922475141ae 100644 --- a/src/libraries/System.Buffers/src/Configurations.props +++ b/src/libraries/System.Buffers/src/Configurations.props @@ -1,8 +1,8 @@  - netcoreapp-Windows_NT; - netcoreapp-Unix; + $(NetCoreAppCurrent)-Windows_NT; + $(NetCoreAppCurrent)-Unix; diff --git a/src/libraries/System.Buffers/src/System.Buffers.csproj b/src/libraries/System.Buffers/src/System.Buffers.csproj index 75809ecd80f65..19bd595f25464 100644 --- a/src/libraries/System.Buffers/src/System.Buffers.csproj +++ b/src/libraries/System.Buffers/src/System.Buffers.csproj @@ -3,7 +3,7 @@ true true true - netcoreapp-Unix-Debug;netcoreapp-Unix-Release;netcoreapp-Windows_NT-Debug;netcoreapp-Windows_NT-Release + $(NetCoreAppCurrent)-Unix-Debug;$(NetCoreAppCurrent)-Unix-Release;$(NetCoreAppCurrent)-Windows_NT-Debug;$(NetCoreAppCurrent)-Windows_NT-Release diff --git a/src/libraries/System.Buffers/tests/Configurations.props b/src/libraries/System.Buffers/tests/Configurations.props index 55d2de1d23f8d..7ac45c966c456 100644 --- a/src/libraries/System.Buffers/tests/Configurations.props +++ b/src/libraries/System.Buffers/tests/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Buffers/tests/System.Buffers.Tests.csproj b/src/libraries/System.Buffers/tests/System.Buffers.Tests.csproj index 47b09363a9b19..64054d1e4d86c 100644 --- a/src/libraries/System.Buffers/tests/System.Buffers.Tests.csproj +++ b/src/libraries/System.Buffers/tests/System.Buffers.Tests.csproj @@ -3,7 +3,7 @@ true true true - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release diff --git a/src/libraries/System.CodeDom/System.CodeDom.sln b/src/libraries/System.CodeDom/System.CodeDom.sln index 7086ed9cc106b..d0310d01fdafe 100644 --- a/src/libraries/System.CodeDom/System.CodeDom.sln +++ b/src/libraries/System.CodeDom/System.CodeDom.sln @@ -26,10 +26,10 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {0D1E2954-A5C7-4B8C-932A-31EB4A96A726}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {0D1E2954-A5C7-4B8C-932A-31EB4A96A726}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {0D1E2954-A5C7-4B8C-932A-31EB4A96A726}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {0D1E2954-A5C7-4B8C-932A-31EB4A96A726}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU + {0D1E2954-A5C7-4B8C-932A-31EB4A96A726}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {0D1E2954-A5C7-4B8C-932A-31EB4A96A726}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {0D1E2954-A5C7-4B8C-932A-31EB4A96A726}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {0D1E2954-A5C7-4B8C-932A-31EB4A96A726}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU {53D09AF4-0C13-4197-B8AD-9746F0374E88}.Debug|Any CPU.ActiveCfg = netstandard2.0-Debug|Any CPU {53D09AF4-0C13-4197-B8AD-9746F0374E88}.Debug|Any CPU.Build.0 = netstandard2.0-Debug|Any CPU {53D09AF4-0C13-4197-B8AD-9746F0374E88}.Release|Any CPU.ActiveCfg = netstandard2.0-Release|Any CPU diff --git a/src/libraries/System.CodeDom/ref/Configurations.props b/src/libraries/System.CodeDom/ref/Configurations.props index d8e7a6702bdf4..642fe102f819e 100644 --- a/src/libraries/System.CodeDom/ref/Configurations.props +++ b/src/libraries/System.CodeDom/ref/Configurations.props @@ -6,7 +6,7 @@ $(PackageConfigurations); - netfx; + $(NetFrameworkCurrent); \ No newline at end of file diff --git a/src/libraries/System.CodeDom/ref/System.CodeDom.csproj b/src/libraries/System.CodeDom/ref/System.CodeDom.csproj index f2aebe0c6d600..df45b996a2499 100644 --- a/src/libraries/System.CodeDom/ref/System.CodeDom.csproj +++ b/src/libraries/System.CodeDom/ref/System.CodeDom.csproj @@ -1,7 +1,7 @@ true - net461-Debug;net461-Release;netfx-Debug;netfx-Release;netstandard2.0-Debug;netstandard2.0-Release + net461-Debug;net461-Release;$(NetFrameworkCurrent)-Debug;$(NetFrameworkCurrent)-Release;netstandard2.0-Debug;netstandard2.0-Release diff --git a/src/libraries/System.CodeDom/src/Configurations.props b/src/libraries/System.CodeDom/src/Configurations.props index d8e7a6702bdf4..642fe102f819e 100644 --- a/src/libraries/System.CodeDom/src/Configurations.props +++ b/src/libraries/System.CodeDom/src/Configurations.props @@ -6,7 +6,7 @@ $(PackageConfigurations); - netfx; + $(NetFrameworkCurrent); \ No newline at end of file diff --git a/src/libraries/System.CodeDom/src/System.CodeDom.csproj b/src/libraries/System.CodeDom/src/System.CodeDom.csproj index 30b119cbb5188..07b67446bf6ad 100644 --- a/src/libraries/System.CodeDom/src/System.CodeDom.csproj +++ b/src/libraries/System.CodeDom/src/System.CodeDom.csproj @@ -3,7 +3,7 @@ true true $(DefineConstants);CODEDOM - net461-Debug;net461-Release;netfx-Debug;netfx-Release;netstandard2.0-Debug;netstandard2.0-Release + net461-Debug;net461-Release;$(NetFrameworkCurrent)-Debug;$(NetFrameworkCurrent)-Release;netstandard2.0-Debug;netstandard2.0-Release diff --git a/src/libraries/System.CodeDom/tests/Configurations.props b/src/libraries/System.CodeDom/tests/Configurations.props index 1a037adc3e7c1..f550cb30c4afd 100644 --- a/src/libraries/System.CodeDom/tests/Configurations.props +++ b/src/libraries/System.CodeDom/tests/Configurations.props @@ -1,8 +1,8 @@  - netcoreapp; - netfx; + $(NetCoreAppCurrent); + $(NetFrameworkCurrent); \ No newline at end of file diff --git a/src/libraries/System.CodeDom/tests/System.CodeDom.Tests.csproj b/src/libraries/System.CodeDom/tests/System.CodeDom.Tests.csproj index 02982a326cff3..a9bc05085764e 100644 --- a/src/libraries/System.CodeDom/tests/System.CodeDom.Tests.csproj +++ b/src/libraries/System.CodeDom/tests/System.CodeDom.Tests.csproj @@ -1,7 +1,7 @@  true - netcoreapp-Debug;netcoreapp-Release;netfx-Debug;netfx-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release;$(NetFrameworkCurrent)-Debug;$(NetFrameworkCurrent)-Release diff --git a/src/libraries/System.Collections.Concurrent/System.Collections.Concurrent.sln b/src/libraries/System.Collections.Concurrent/System.Collections.Concurrent.sln index 5d763bd6b79bb..ffde557e53bef 100644 --- a/src/libraries/System.Collections.Concurrent/System.Collections.Concurrent.sln +++ b/src/libraries/System.Collections.Concurrent/System.Collections.Concurrent.sln @@ -26,18 +26,18 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {9574CEEC-5554-411B-B44C-6CA9EC1CEB08}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {9574CEEC-5554-411B-B44C-6CA9EC1CEB08}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {9574CEEC-5554-411B-B44C-6CA9EC1CEB08}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {9574CEEC-5554-411B-B44C-6CA9EC1CEB08}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU - {EA610394-CBA3-4E5C-B3DB-AAEA7F640E89}.Debug|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Debug|Any CPU - {EA610394-CBA3-4E5C-B3DB-AAEA7F640E89}.Debug|Any CPU.Build.0 = netcoreapp-Windows_NT-Debug|Any CPU - {EA610394-CBA3-4E5C-B3DB-AAEA7F640E89}.Release|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Release|Any CPU - {EA610394-CBA3-4E5C-B3DB-AAEA7F640E89}.Release|Any CPU.Build.0 = netcoreapp-Windows_NT-Release|Any CPU - {772CB0A7-3D45-4D3A-B975-671A1937C761}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {772CB0A7-3D45-4D3A-B975-671A1937C761}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {772CB0A7-3D45-4D3A-B975-671A1937C761}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {772CB0A7-3D45-4D3A-B975-671A1937C761}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU + {9574CEEC-5554-411B-B44C-6CA9EC1CEB08}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {9574CEEC-5554-411B-B44C-6CA9EC1CEB08}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {9574CEEC-5554-411B-B44C-6CA9EC1CEB08}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {9574CEEC-5554-411B-B44C-6CA9EC1CEB08}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU + {EA610394-CBA3-4E5C-B3DB-AAEA7F640E89}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Debug|Any CPU + {EA610394-CBA3-4E5C-B3DB-AAEA7F640E89}.Debug|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Debug|Any CPU + {EA610394-CBA3-4E5C-B3DB-AAEA7F640E89}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Release|Any CPU + {EA610394-CBA3-4E5C-B3DB-AAEA7F640E89}.Release|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Release|Any CPU + {772CB0A7-3D45-4D3A-B975-671A1937C761}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {772CB0A7-3D45-4D3A-B975-671A1937C761}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {772CB0A7-3D45-4D3A-B975-671A1937C761}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {772CB0A7-3D45-4D3A-B975-671A1937C761}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/src/libraries/System.Collections.Concurrent/ref/Configurations.props b/src/libraries/System.Collections.Concurrent/ref/Configurations.props index 55d2de1d23f8d..7ac45c966c456 100644 --- a/src/libraries/System.Collections.Concurrent/ref/Configurations.props +++ b/src/libraries/System.Collections.Concurrent/ref/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Collections.Concurrent/ref/System.Collections.Concurrent.csproj b/src/libraries/System.Collections.Concurrent/ref/System.Collections.Concurrent.csproj index 336960844f951..6df9076883b49 100644 --- a/src/libraries/System.Collections.Concurrent/ref/System.Collections.Concurrent.csproj +++ b/src/libraries/System.Collections.Concurrent/ref/System.Collections.Concurrent.csproj @@ -1,6 +1,6 @@ - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release enable diff --git a/src/libraries/System.Collections.Concurrent/src/Configurations.props b/src/libraries/System.Collections.Concurrent/src/Configurations.props index 7e12b46ca40c5..c31cf2a4495cf 100644 --- a/src/libraries/System.Collections.Concurrent/src/Configurations.props +++ b/src/libraries/System.Collections.Concurrent/src/Configurations.props @@ -1,8 +1,8 @@  - netcoreapp-Unix; - netcoreapp-Windows_NT; + $(NetCoreAppCurrent)-Unix; + $(NetCoreAppCurrent)-Windows_NT; diff --git a/src/libraries/System.Collections.Concurrent/src/System.Collections.Concurrent.csproj b/src/libraries/System.Collections.Concurrent/src/System.Collections.Concurrent.csproj index 32cb2f862f7ca..3930e7e4a6091 100644 --- a/src/libraries/System.Collections.Concurrent/src/System.Collections.Concurrent.csproj +++ b/src/libraries/System.Collections.Concurrent/src/System.Collections.Concurrent.csproj @@ -4,7 +4,7 @@ System.Collections.Concurrent true enable - netcoreapp-Unix-Debug;netcoreapp-Unix-Release;netcoreapp-Windows_NT-Debug;netcoreapp-Windows_NT-Release + $(NetCoreAppCurrent)-Unix-Debug;$(NetCoreAppCurrent)-Unix-Release;$(NetCoreAppCurrent)-Windows_NT-Debug;$(NetCoreAppCurrent)-Windows_NT-Release diff --git a/src/libraries/System.Collections.Concurrent/tests/Configurations.props b/src/libraries/System.Collections.Concurrent/tests/Configurations.props index 55d2de1d23f8d..7ac45c966c456 100644 --- a/src/libraries/System.Collections.Concurrent/tests/Configurations.props +++ b/src/libraries/System.Collections.Concurrent/tests/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Collections.Concurrent/tests/System.Collections.Concurrent.Tests.csproj b/src/libraries/System.Collections.Concurrent/tests/System.Collections.Concurrent.Tests.csproj index e3ee4fed73418..4d6d1444f040a 100644 --- a/src/libraries/System.Collections.Concurrent/tests/System.Collections.Concurrent.Tests.csproj +++ b/src/libraries/System.Collections.Concurrent/tests/System.Collections.Concurrent.Tests.csproj @@ -2,7 +2,7 @@ true true - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release diff --git a/src/libraries/System.Collections.Immutable/System.Collections.Immutable.sln b/src/libraries/System.Collections.Immutable/System.Collections.Immutable.sln index 12d6f8798e2cb..a49fe78cc18bf 100644 --- a/src/libraries/System.Collections.Immutable/System.Collections.Immutable.sln +++ b/src/libraries/System.Collections.Immutable/System.Collections.Immutable.sln @@ -26,18 +26,18 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {95DFC527-4DC1-495E-97D7-E94EE1F7140D}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {95DFC527-4DC1-495E-97D7-E94EE1F7140D}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {95DFC527-4DC1-495E-97D7-E94EE1F7140D}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {95DFC527-4DC1-495E-97D7-E94EE1F7140D}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU - {1DD0FF15-6234-4BD6-850A-317F05479554}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {1DD0FF15-6234-4BD6-850A-317F05479554}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {1DD0FF15-6234-4BD6-850A-317F05479554}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {1DD0FF15-6234-4BD6-850A-317F05479554}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU - {C7EFF4EE-70DC-453B-B817-4AF67921AB03}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {C7EFF4EE-70DC-453B-B817-4AF67921AB03}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {C7EFF4EE-70DC-453B-B817-4AF67921AB03}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {C7EFF4EE-70DC-453B-B817-4AF67921AB03}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU + {95DFC527-4DC1-495E-97D7-E94EE1F7140D}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {95DFC527-4DC1-495E-97D7-E94EE1F7140D}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {95DFC527-4DC1-495E-97D7-E94EE1F7140D}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {95DFC527-4DC1-495E-97D7-E94EE1F7140D}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU + {1DD0FF15-6234-4BD6-850A-317F05479554}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {1DD0FF15-6234-4BD6-850A-317F05479554}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {1DD0FF15-6234-4BD6-850A-317F05479554}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {1DD0FF15-6234-4BD6-850A-317F05479554}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU + {C7EFF4EE-70DC-453B-B817-4AF67921AB03}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {C7EFF4EE-70DC-453B-B817-4AF67921AB03}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {C7EFF4EE-70DC-453B-B817-4AF67921AB03}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {C7EFF4EE-70DC-453B-B817-4AF67921AB03}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/src/libraries/System.Collections.Immutable/ref/Configurations.props b/src/libraries/System.Collections.Immutable/ref/Configurations.props index 620ac6f1f9893..92c9ce3a643ba 100644 --- a/src/libraries/System.Collections.Immutable/ref/Configurations.props +++ b/src/libraries/System.Collections.Immutable/ref/Configurations.props @@ -7,7 +7,7 @@ $(PackageConfigurations); - netcoreapp; + $(NetCoreAppCurrent); diff --git a/src/libraries/System.Collections.Immutable/ref/System.Collections.Immutable.csproj b/src/libraries/System.Collections.Immutable/ref/System.Collections.Immutable.csproj index 17dfed13868c2..18c3b30a75dd3 100644 --- a/src/libraries/System.Collections.Immutable/ref/System.Collections.Immutable.csproj +++ b/src/libraries/System.Collections.Immutable/ref/System.Collections.Immutable.csproj @@ -1,6 +1,6 @@ - netcoreapp-Debug;netcoreapp-Release;netstandard2.0-Debug;netstandard2.0-Release;netstandard1.0-Debug;netstandard1.0-Release;netstandard1.3-Debug;netstandard1.3-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release;netstandard2.0-Debug;netstandard2.0-Release;netstandard1.0-Debug;netstandard1.0-Release;netstandard1.3-Debug;netstandard1.3-Release diff --git a/src/libraries/System.Collections.Immutable/src/Configurations.props b/src/libraries/System.Collections.Immutable/src/Configurations.props index 620ac6f1f9893..92c9ce3a643ba 100644 --- a/src/libraries/System.Collections.Immutable/src/Configurations.props +++ b/src/libraries/System.Collections.Immutable/src/Configurations.props @@ -7,7 +7,7 @@ $(PackageConfigurations); - netcoreapp; + $(NetCoreAppCurrent); diff --git a/src/libraries/System.Collections.Immutable/src/System.Collections.Immutable.csproj b/src/libraries/System.Collections.Immutable/src/System.Collections.Immutable.csproj index 50428abeb1b2a..cc52892bb490f 100644 --- a/src/libraries/System.Collections.Immutable/src/System.Collections.Immutable.csproj +++ b/src/libraries/System.Collections.Immutable/src/System.Collections.Immutable.csproj @@ -4,7 +4,7 @@ System.Collections.Immutable 512 netstandard1.0;portable-net45+win8+wp8+wpa81 - netcoreapp-Debug;netcoreapp-Release;netstandard2.0-Debug;netstandard2.0-Release;netstandard1.0-Debug;netstandard1.0-Release;netstandard1.3-Debug;netstandard1.3-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release;netstandard2.0-Debug;netstandard2.0-Release;netstandard1.0-Debug;netstandard1.0-Release;netstandard1.3-Debug;netstandard1.3-Release diff --git a/src/libraries/System.Collections.Immutable/tests/Configurations.props b/src/libraries/System.Collections.Immutable/tests/Configurations.props index 1a037adc3e7c1..f550cb30c4afd 100644 --- a/src/libraries/System.Collections.Immutable/tests/Configurations.props +++ b/src/libraries/System.Collections.Immutable/tests/Configurations.props @@ -1,8 +1,8 @@  - netcoreapp; - netfx; + $(NetCoreAppCurrent); + $(NetFrameworkCurrent); \ No newline at end of file diff --git a/src/libraries/System.Collections.Immutable/tests/System.Collections.Immutable.Tests.csproj b/src/libraries/System.Collections.Immutable/tests/System.Collections.Immutable.Tests.csproj index 4557b10fdb6a4..417af2ef06b3e 100644 --- a/src/libraries/System.Collections.Immutable/tests/System.Collections.Immutable.Tests.csproj +++ b/src/libraries/System.Collections.Immutable/tests/System.Collections.Immutable.Tests.csproj @@ -1,7 +1,7 @@ 0436 - netcoreapp-Debug;netcoreapp-Release;netfx-Debug;netfx-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release;$(NetFrameworkCurrent)-Debug;$(NetFrameworkCurrent)-Release diff --git a/src/libraries/System.Collections.NonGeneric/System.Collections.NonGeneric.sln b/src/libraries/System.Collections.NonGeneric/System.Collections.NonGeneric.sln index 896dd8a930de1..d4430cbf0a6c1 100644 --- a/src/libraries/System.Collections.NonGeneric/System.Collections.NonGeneric.sln +++ b/src/libraries/System.Collections.NonGeneric/System.Collections.NonGeneric.sln @@ -26,18 +26,18 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {EE95AE39-845A-42D3-86D0-8065DBE56612}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {EE95AE39-845A-42D3-86D0-8065DBE56612}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {EE95AE39-845A-42D3-86D0-8065DBE56612}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {EE95AE39-845A-42D3-86D0-8065DBE56612}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU - {585E3764-534B-4A12-8BD5-8578CB826A45}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {585E3764-534B-4A12-8BD5-8578CB826A45}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {585E3764-534B-4A12-8BD5-8578CB826A45}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {585E3764-534B-4A12-8BD5-8578CB826A45}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU - {8500112F-96BD-47BF-8871-3242089FAE70}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {8500112F-96BD-47BF-8871-3242089FAE70}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {8500112F-96BD-47BF-8871-3242089FAE70}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {8500112F-96BD-47BF-8871-3242089FAE70}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU + {EE95AE39-845A-42D3-86D0-8065DBE56612}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {EE95AE39-845A-42D3-86D0-8065DBE56612}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {EE95AE39-845A-42D3-86D0-8065DBE56612}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {EE95AE39-845A-42D3-86D0-8065DBE56612}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU + {585E3764-534B-4A12-8BD5-8578CB826A45}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {585E3764-534B-4A12-8BD5-8578CB826A45}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {585E3764-534B-4A12-8BD5-8578CB826A45}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {585E3764-534B-4A12-8BD5-8578CB826A45}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU + {8500112F-96BD-47BF-8871-3242089FAE70}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {8500112F-96BD-47BF-8871-3242089FAE70}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {8500112F-96BD-47BF-8871-3242089FAE70}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {8500112F-96BD-47BF-8871-3242089FAE70}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/src/libraries/System.Collections.NonGeneric/ref/Configurations.props b/src/libraries/System.Collections.NonGeneric/ref/Configurations.props index 55d2de1d23f8d..7ac45c966c456 100644 --- a/src/libraries/System.Collections.NonGeneric/ref/Configurations.props +++ b/src/libraries/System.Collections.NonGeneric/ref/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Collections.NonGeneric/ref/System.Collections.NonGeneric.csproj b/src/libraries/System.Collections.NonGeneric/ref/System.Collections.NonGeneric.csproj index 98c169a26dd15..51e5556eab84e 100644 --- a/src/libraries/System.Collections.NonGeneric/ref/System.Collections.NonGeneric.csproj +++ b/src/libraries/System.Collections.NonGeneric/ref/System.Collections.NonGeneric.csproj @@ -1,6 +1,6 @@ - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release enable diff --git a/src/libraries/System.Collections.NonGeneric/src/Configurations.props b/src/libraries/System.Collections.NonGeneric/src/Configurations.props index 55d2de1d23f8d..7ac45c966c456 100644 --- a/src/libraries/System.Collections.NonGeneric/src/Configurations.props +++ b/src/libraries/System.Collections.NonGeneric/src/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Collections.NonGeneric/src/System.Collections.NonGeneric.csproj b/src/libraries/System.Collections.NonGeneric/src/System.Collections.NonGeneric.csproj index 1c44bee0f02a7..9cf8eedb1e91a 100644 --- a/src/libraries/System.Collections.NonGeneric/src/System.Collections.NonGeneric.csproj +++ b/src/libraries/System.Collections.NonGeneric/src/System.Collections.NonGeneric.csproj @@ -3,7 +3,7 @@ System.Collections.NonGeneric System.Collections.NonGeneric true - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release enable diff --git a/src/libraries/System.Collections.NonGeneric/tests/Configurations.props b/src/libraries/System.Collections.NonGeneric/tests/Configurations.props index 55d2de1d23f8d..7ac45c966c456 100644 --- a/src/libraries/System.Collections.NonGeneric/tests/Configurations.props +++ b/src/libraries/System.Collections.NonGeneric/tests/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Collections.NonGeneric/tests/System.Collections.NonGeneric.Tests.csproj b/src/libraries/System.Collections.NonGeneric/tests/System.Collections.NonGeneric.Tests.csproj index 34b62bb548a48..d0a568db43db3 100644 --- a/src/libraries/System.Collections.NonGeneric/tests/System.Collections.NonGeneric.Tests.csproj +++ b/src/libraries/System.Collections.NonGeneric/tests/System.Collections.NonGeneric.Tests.csproj @@ -1,7 +1,7 @@ true - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release diff --git a/src/libraries/System.Collections.Specialized/System.Collections.Specialized.sln b/src/libraries/System.Collections.Specialized/System.Collections.Specialized.sln index fe2a4309d1cdd..25d97afcca562 100644 --- a/src/libraries/System.Collections.Specialized/System.Collections.Specialized.sln +++ b/src/libraries/System.Collections.Specialized/System.Collections.Specialized.sln @@ -26,18 +26,18 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {7F5F5134-00FE-4DE8-B20C-3DA8BA2EBA68}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {7F5F5134-00FE-4DE8-B20C-3DA8BA2EBA68}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {7F5F5134-00FE-4DE8-B20C-3DA8BA2EBA68}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {7F5F5134-00FE-4DE8-B20C-3DA8BA2EBA68}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU - {63634289-90D7-4947-8BF3-DBBE98D76C85}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {63634289-90D7-4947-8BF3-DBBE98D76C85}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {63634289-90D7-4947-8BF3-DBBE98D76C85}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {63634289-90D7-4947-8BF3-DBBE98D76C85}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU - {6D2FA7D7-1A71-456C-ACBC-1FF13E0E8959}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {6D2FA7D7-1A71-456C-ACBC-1FF13E0E8959}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {6D2FA7D7-1A71-456C-ACBC-1FF13E0E8959}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {6D2FA7D7-1A71-456C-ACBC-1FF13E0E8959}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU + {7F5F5134-00FE-4DE8-B20C-3DA8BA2EBA68}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {7F5F5134-00FE-4DE8-B20C-3DA8BA2EBA68}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {7F5F5134-00FE-4DE8-B20C-3DA8BA2EBA68}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {7F5F5134-00FE-4DE8-B20C-3DA8BA2EBA68}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU + {63634289-90D7-4947-8BF3-DBBE98D76C85}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {63634289-90D7-4947-8BF3-DBBE98D76C85}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {63634289-90D7-4947-8BF3-DBBE98D76C85}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {63634289-90D7-4947-8BF3-DBBE98D76C85}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU + {6D2FA7D7-1A71-456C-ACBC-1FF13E0E8959}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {6D2FA7D7-1A71-456C-ACBC-1FF13E0E8959}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {6D2FA7D7-1A71-456C-ACBC-1FF13E0E8959}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {6D2FA7D7-1A71-456C-ACBC-1FF13E0E8959}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/src/libraries/System.Collections.Specialized/ref/Configurations.props b/src/libraries/System.Collections.Specialized/ref/Configurations.props index 55d2de1d23f8d..7ac45c966c456 100644 --- a/src/libraries/System.Collections.Specialized/ref/Configurations.props +++ b/src/libraries/System.Collections.Specialized/ref/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Collections.Specialized/ref/System.Collections.Specialized.csproj b/src/libraries/System.Collections.Specialized/ref/System.Collections.Specialized.csproj index 6ed79be21f5af..7c6ca9323672a 100644 --- a/src/libraries/System.Collections.Specialized/ref/System.Collections.Specialized.csproj +++ b/src/libraries/System.Collections.Specialized/ref/System.Collections.Specialized.csproj @@ -1,6 +1,6 @@ - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release enable diff --git a/src/libraries/System.Collections.Specialized/src/Configurations.props b/src/libraries/System.Collections.Specialized/src/Configurations.props index 55d2de1d23f8d..7ac45c966c456 100644 --- a/src/libraries/System.Collections.Specialized/src/Configurations.props +++ b/src/libraries/System.Collections.Specialized/src/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Collections.Specialized/src/System.Collections.Specialized.csproj b/src/libraries/System.Collections.Specialized/src/System.Collections.Specialized.csproj index 84ecdd0cf438a..2890f5e29fd59 100644 --- a/src/libraries/System.Collections.Specialized/src/System.Collections.Specialized.csproj +++ b/src/libraries/System.Collections.Specialized/src/System.Collections.Specialized.csproj @@ -2,7 +2,7 @@ System.Collections.Specialized System.Collections.Specialized - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release enable diff --git a/src/libraries/System.Collections.Specialized/tests/Configurations.props b/src/libraries/System.Collections.Specialized/tests/Configurations.props index 55d2de1d23f8d..7ac45c966c456 100644 --- a/src/libraries/System.Collections.Specialized/tests/Configurations.props +++ b/src/libraries/System.Collections.Specialized/tests/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Collections.Specialized/tests/System.Collections.Specialized.Tests.csproj b/src/libraries/System.Collections.Specialized/tests/System.Collections.Specialized.Tests.csproj index 53a747bf40f35..d7530aac72bbf 100644 --- a/src/libraries/System.Collections.Specialized/tests/System.Collections.Specialized.Tests.csproj +++ b/src/libraries/System.Collections.Specialized/tests/System.Collections.Specialized.Tests.csproj @@ -1,6 +1,6 @@ - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release diff --git a/src/libraries/System.Collections/System.Collections.sln b/src/libraries/System.Collections/System.Collections.sln index c71e69246d53c..9834d1d260127 100644 --- a/src/libraries/System.Collections/System.Collections.sln +++ b/src/libraries/System.Collections/System.Collections.sln @@ -26,18 +26,18 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {F5EB9630-AD29-4880-963F-F2D39C684D8A}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {F5EB9630-AD29-4880-963F-F2D39C684D8A}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {F5EB9630-AD29-4880-963F-F2D39C684D8A}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {F5EB9630-AD29-4880-963F-F2D39C684D8A}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU - {D5FF747F-7A0B-9003-885A-FE9A63E755E5}.Debug|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Debug|Any CPU - {D5FF747F-7A0B-9003-885A-FE9A63E755E5}.Debug|Any CPU.Build.0 = netcoreapp-Windows_NT-Debug|Any CPU - {D5FF747F-7A0B-9003-885A-FE9A63E755E5}.Release|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Release|Any CPU - {D5FF747F-7A0B-9003-885A-FE9A63E755E5}.Release|Any CPU.Build.0 = netcoreapp-Windows_NT-Release|Any CPU - {C746D448-E7C3-4850-9CA7-D3F1FA49742F}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {C746D448-E7C3-4850-9CA7-D3F1FA49742F}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {C746D448-E7C3-4850-9CA7-D3F1FA49742F}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {C746D448-E7C3-4850-9CA7-D3F1FA49742F}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU + {F5EB9630-AD29-4880-963F-F2D39C684D8A}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {F5EB9630-AD29-4880-963F-F2D39C684D8A}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {F5EB9630-AD29-4880-963F-F2D39C684D8A}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {F5EB9630-AD29-4880-963F-F2D39C684D8A}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU + {D5FF747F-7A0B-9003-885A-FE9A63E755E5}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Debug|Any CPU + {D5FF747F-7A0B-9003-885A-FE9A63E755E5}.Debug|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Debug|Any CPU + {D5FF747F-7A0B-9003-885A-FE9A63E755E5}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Release|Any CPU + {D5FF747F-7A0B-9003-885A-FE9A63E755E5}.Release|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Release|Any CPU + {C746D448-E7C3-4850-9CA7-D3F1FA49742F}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {C746D448-E7C3-4850-9CA7-D3F1FA49742F}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {C746D448-E7C3-4850-9CA7-D3F1FA49742F}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {C746D448-E7C3-4850-9CA7-D3F1FA49742F}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/src/libraries/System.Collections/ref/Configurations.props b/src/libraries/System.Collections/ref/Configurations.props index 55d2de1d23f8d..7ac45c966c456 100644 --- a/src/libraries/System.Collections/ref/Configurations.props +++ b/src/libraries/System.Collections/ref/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Collections/ref/System.Collections.csproj b/src/libraries/System.Collections/ref/System.Collections.csproj index e3e894606eb61..85054983a9bf1 100644 --- a/src/libraries/System.Collections/ref/System.Collections.csproj +++ b/src/libraries/System.Collections/ref/System.Collections.csproj @@ -1,6 +1,6 @@ - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release enable diff --git a/src/libraries/System.Collections/src/Configurations.props b/src/libraries/System.Collections/src/Configurations.props index db389259c06b1..f3922475141ae 100644 --- a/src/libraries/System.Collections/src/Configurations.props +++ b/src/libraries/System.Collections/src/Configurations.props @@ -1,8 +1,8 @@  - netcoreapp-Windows_NT; - netcoreapp-Unix; + $(NetCoreAppCurrent)-Windows_NT; + $(NetCoreAppCurrent)-Unix; diff --git a/src/libraries/System.Collections/src/System.Collections.csproj b/src/libraries/System.Collections/src/System.Collections.csproj index d3037f004bd5e..8509e28105b42 100644 --- a/src/libraries/System.Collections/src/System.Collections.csproj +++ b/src/libraries/System.Collections/src/System.Collections.csproj @@ -3,7 +3,7 @@ System.Collections true true - netcoreapp-Unix-Debug;netcoreapp-Unix-Release;netcoreapp-Windows_NT-Debug;netcoreapp-Windows_NT-Release + $(NetCoreAppCurrent)-Unix-Debug;$(NetCoreAppCurrent)-Unix-Release;$(NetCoreAppCurrent)-Windows_NT-Debug;$(NetCoreAppCurrent)-Windows_NT-Release enable diff --git a/src/libraries/System.Collections/tests/Configurations.props b/src/libraries/System.Collections/tests/Configurations.props index 55d2de1d23f8d..7ac45c966c456 100644 --- a/src/libraries/System.Collections/tests/Configurations.props +++ b/src/libraries/System.Collections/tests/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Collections/tests/System.Collections.Tests.csproj b/src/libraries/System.Collections/tests/System.Collections.Tests.csproj index 8b80191cfa245..933bd437f10a0 100644 --- a/src/libraries/System.Collections/tests/System.Collections.Tests.csproj +++ b/src/libraries/System.Collections/tests/System.Collections.Tests.csproj @@ -1,6 +1,6 @@ - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release true diff --git a/src/libraries/System.ComponentModel.Annotations/System.ComponentModel.Annotations.sln b/src/libraries/System.ComponentModel.Annotations/System.ComponentModel.Annotations.sln index cd86ad818c950..eb4b75e1dfb71 100644 --- a/src/libraries/System.ComponentModel.Annotations/System.ComponentModel.Annotations.sln +++ b/src/libraries/System.ComponentModel.Annotations/System.ComponentModel.Annotations.sln @@ -26,10 +26,10 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {6E48765E-D6AC-4A79-9C2E-B5EE67EEDECF}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {6E48765E-D6AC-4A79-9C2E-B5EE67EEDECF}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {6E48765E-D6AC-4A79-9C2E-B5EE67EEDECF}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {6E48765E-D6AC-4A79-9C2E-B5EE67EEDECF}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU + {6E48765E-D6AC-4A79-9C2E-B5EE67EEDECF}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {6E48765E-D6AC-4A79-9C2E-B5EE67EEDECF}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {6E48765E-D6AC-4A79-9C2E-B5EE67EEDECF}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {6E48765E-D6AC-4A79-9C2E-B5EE67EEDECF}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU {4266D58F-EB60-46C2-BA81-3ABDE759A7D5}.Debug|Any CPU.ActiveCfg = netstandard2.1-Debug|Any CPU {4266D58F-EB60-46C2-BA81-3ABDE759A7D5}.Debug|Any CPU.Build.0 = netstandard2.1-Debug|Any CPU {4266D58F-EB60-46C2-BA81-3ABDE759A7D5}.Release|Any CPU.ActiveCfg = netstandard2.1-Release|Any CPU diff --git a/src/libraries/System.ComponentModel.Annotations/tests/Configurations.props b/src/libraries/System.ComponentModel.Annotations/tests/Configurations.props index 1a037adc3e7c1..f550cb30c4afd 100644 --- a/src/libraries/System.ComponentModel.Annotations/tests/Configurations.props +++ b/src/libraries/System.ComponentModel.Annotations/tests/Configurations.props @@ -1,8 +1,8 @@  - netcoreapp; - netfx; + $(NetCoreAppCurrent); + $(NetFrameworkCurrent); \ No newline at end of file diff --git a/src/libraries/System.ComponentModel.Annotations/tests/System.ComponentModel.Annotations.Tests.csproj b/src/libraries/System.ComponentModel.Annotations/tests/System.ComponentModel.Annotations.Tests.csproj index 9f645e70e5e3e..8fe3a069246d7 100644 --- a/src/libraries/System.ComponentModel.Annotations/tests/System.ComponentModel.Annotations.Tests.csproj +++ b/src/libraries/System.ComponentModel.Annotations/tests/System.ComponentModel.Annotations.Tests.csproj @@ -1,7 +1,7 @@ true - netcoreapp-Debug;netcoreapp-Release;netfx-Debug;netfx-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release;$(NetFrameworkCurrent)-Debug;$(NetFrameworkCurrent)-Release diff --git a/src/libraries/System.ComponentModel.Composition.Registration/System.ComponentModel.Composition.Registration.sln b/src/libraries/System.ComponentModel.Composition.Registration/System.ComponentModel.Composition.Registration.sln index 4715f9a3f03b4..c2e62e74257af 100644 --- a/src/libraries/System.ComponentModel.Composition.Registration/System.ComponentModel.Composition.Registration.sln +++ b/src/libraries/System.ComponentModel.Composition.Registration/System.ComponentModel.Composition.Registration.sln @@ -26,10 +26,10 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {0F8CFFA3-6E16-4642-82C1-289D95338D7C}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {0F8CFFA3-6E16-4642-82C1-289D95338D7C}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {0F8CFFA3-6E16-4642-82C1-289D95338D7C}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {0F8CFFA3-6E16-4642-82C1-289D95338D7C}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU + {0F8CFFA3-6E16-4642-82C1-289D95338D7C}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {0F8CFFA3-6E16-4642-82C1-289D95338D7C}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {0F8CFFA3-6E16-4642-82C1-289D95338D7C}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {0F8CFFA3-6E16-4642-82C1-289D95338D7C}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU {E3663E26-6819-4997-B372-94454DB4D60E}.Debug|Any CPU.ActiveCfg = netstandard2.1-Debug|Any CPU {E3663E26-6819-4997-B372-94454DB4D60E}.Debug|Any CPU.Build.0 = netstandard2.1-Debug|Any CPU {E3663E26-6819-4997-B372-94454DB4D60E}.Release|Any CPU.ActiveCfg = netstandard2.1-Release|Any CPU diff --git a/src/libraries/System.ComponentModel.Composition.Registration/tests/Configurations.props b/src/libraries/System.ComponentModel.Composition.Registration/tests/Configurations.props index 19236e72c58fb..b79c1d7c3d9a0 100644 --- a/src/libraries/System.ComponentModel.Composition.Registration/tests/Configurations.props +++ b/src/libraries/System.ComponentModel.Composition.Registration/tests/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); diff --git a/src/libraries/System.ComponentModel.Composition.Registration/tests/System.ComponentModel.Composition.Registration.Tests.csproj b/src/libraries/System.ComponentModel.Composition.Registration/tests/System.ComponentModel.Composition.Registration.Tests.csproj index 1521c75b0fc29..2e6eb27398f99 100644 --- a/src/libraries/System.ComponentModel.Composition.Registration/tests/System.ComponentModel.Composition.Registration.Tests.csproj +++ b/src/libraries/System.ComponentModel.Composition.Registration/tests/System.ComponentModel.Composition.Registration.Tests.csproj @@ -1,6 +1,6 @@  - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release diff --git a/src/libraries/System.ComponentModel.Composition/System.ComponentModel.Composition.sln b/src/libraries/System.ComponentModel.Composition/System.ComponentModel.Composition.sln index 6cfffaaa2ce3e..88db40ebcc429 100644 --- a/src/libraries/System.ComponentModel.Composition/System.ComponentModel.Composition.sln +++ b/src/libraries/System.ComponentModel.Composition/System.ComponentModel.Composition.sln @@ -31,18 +31,18 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {59F4682D-C41D-45A7-9798-16C75525BB1D}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {59F4682D-C41D-45A7-9798-16C75525BB1D}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {59F4682D-C41D-45A7-9798-16C75525BB1D}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {59F4682D-C41D-45A7-9798-16C75525BB1D}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU + {59F4682D-C41D-45A7-9798-16C75525BB1D}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {59F4682D-C41D-45A7-9798-16C75525BB1D}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {59F4682D-C41D-45A7-9798-16C75525BB1D}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {59F4682D-C41D-45A7-9798-16C75525BB1D}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU {396D6EBF-60BD-4DAF-8783-FB403E070A56}.Debug|Any CPU.ActiveCfg = netstandard2.0-Debug|Any CPU {396D6EBF-60BD-4DAF-8783-FB403E070A56}.Debug|Any CPU.Build.0 = netstandard2.0-Debug|Any CPU {396D6EBF-60BD-4DAF-8783-FB403E070A56}.Release|Any CPU.ActiveCfg = netstandard2.0-Release|Any CPU {396D6EBF-60BD-4DAF-8783-FB403E070A56}.Release|Any CPU.Build.0 = netstandard2.0-Release|Any CPU - {2D694AC8-A12F-4622-9405-74E20EC40C3A}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {2D694AC8-A12F-4622-9405-74E20EC40C3A}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {2D694AC8-A12F-4622-9405-74E20EC40C3A}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {2D694AC8-A12F-4622-9405-74E20EC40C3A}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU + {2D694AC8-A12F-4622-9405-74E20EC40C3A}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {2D694AC8-A12F-4622-9405-74E20EC40C3A}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {2D694AC8-A12F-4622-9405-74E20EC40C3A}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {2D694AC8-A12F-4622-9405-74E20EC40C3A}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU {DD3B8052-CE03-4159-8311-1CE1382C51B0}.Debug|Any CPU.ActiveCfg = netstandard2.0-Debug|Any CPU {DD3B8052-CE03-4159-8311-1CE1382C51B0}.Debug|Any CPU.Build.0 = netstandard2.0-Debug|Any CPU {DD3B8052-CE03-4159-8311-1CE1382C51B0}.Release|Any CPU.ActiveCfg = netstandard2.0-Release|Any CPU diff --git a/src/libraries/System.ComponentModel.Composition/ref/Configurations.props b/src/libraries/System.ComponentModel.Composition/ref/Configurations.props index b1a453087dc50..d196aebf0851f 100644 --- a/src/libraries/System.ComponentModel.Composition/ref/Configurations.props +++ b/src/libraries/System.ComponentModel.Composition/ref/Configurations.props @@ -2,7 +2,7 @@ netstandard2.0; - _netfx; + _$(NetFrameworkCurrent); diff --git a/src/libraries/System.ComponentModel.Composition/src/Configurations.props b/src/libraries/System.ComponentModel.Composition/src/Configurations.props index 0e7cb0ffa7da7..b44f08eaa24ea 100644 --- a/src/libraries/System.ComponentModel.Composition/src/Configurations.props +++ b/src/libraries/System.ComponentModel.Composition/src/Configurations.props @@ -6,8 +6,8 @@ $(PackageConfigurations); - _netfx; - netcoreapp; + _$(NetFrameworkCurrent); + $(NetCoreAppCurrent); diff --git a/src/libraries/System.ComponentModel.Composition/src/System.ComponentModel.Composition.csproj b/src/libraries/System.ComponentModel.Composition/src/System.ComponentModel.Composition.csproj index cb788f627cbbe..f7067b40ec7da 100644 --- a/src/libraries/System.ComponentModel.Composition/src/System.ComponentModel.Composition.csproj +++ b/src/libraries/System.ComponentModel.Composition/src/System.ComponentModel.Composition.csproj @@ -6,7 +6,7 @@ $(NoWarn);CS1573 SR.PlatformNotSupported_ComponentModel_Composition - netcoreapp-Debug;netcoreapp-Release;netcoreapp2.0-Debug;netcoreapp2.0-Release;netstandard2.0-Debug;netstandard2.0-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release;netcoreapp2.0-Debug;netcoreapp2.0-Release;netstandard2.0-Debug;netstandard2.0-Release diff --git a/src/libraries/System.ComponentModel.Composition/tests/Configurations.props b/src/libraries/System.ComponentModel.Composition/tests/Configurations.props index 19236e72c58fb..b79c1d7c3d9a0 100644 --- a/src/libraries/System.ComponentModel.Composition/tests/Configurations.props +++ b/src/libraries/System.ComponentModel.Composition/tests/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); diff --git a/src/libraries/System.ComponentModel.Composition/tests/System.ComponentModel.Composition.Tests.csproj b/src/libraries/System.ComponentModel.Composition/tests/System.ComponentModel.Composition.Tests.csproj index dd775fc337b35..45cf78a7b3bdb 100644 --- a/src/libraries/System.ComponentModel.Composition/tests/System.ComponentModel.Composition.Tests.csproj +++ b/src/libraries/System.ComponentModel.Composition/tests/System.ComponentModel.Composition.Tests.csproj @@ -1,8 +1,8 @@ - + true - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release diff --git a/src/libraries/System.ComponentModel.EventBasedAsync/System.ComponentModel.EventBasedAsync.sln b/src/libraries/System.ComponentModel.EventBasedAsync/System.ComponentModel.EventBasedAsync.sln index 3e6a0f0a58068..7588fef365914 100644 --- a/src/libraries/System.ComponentModel.EventBasedAsync/System.ComponentModel.EventBasedAsync.sln +++ b/src/libraries/System.ComponentModel.EventBasedAsync/System.ComponentModel.EventBasedAsync.sln @@ -26,18 +26,18 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {59E9B218-81D0-4A80-A4B7-66C716136D82}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {59E9B218-81D0-4A80-A4B7-66C716136D82}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {59E9B218-81D0-4A80-A4B7-66C716136D82}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {59E9B218-81D0-4A80-A4B7-66C716136D82}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU - {551A6340-8EEF-445E-A2A2-639CC23DBD36}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {551A6340-8EEF-445E-A2A2-639CC23DBD36}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {551A6340-8EEF-445E-A2A2-639CC23DBD36}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {551A6340-8EEF-445E-A2A2-639CC23DBD36}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU - {E7943063-5DB9-4EC6-86DD-3029E65121CE}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {E7943063-5DB9-4EC6-86DD-3029E65121CE}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {E7943063-5DB9-4EC6-86DD-3029E65121CE}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {E7943063-5DB9-4EC6-86DD-3029E65121CE}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU + {59E9B218-81D0-4A80-A4B7-66C716136D82}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {59E9B218-81D0-4A80-A4B7-66C716136D82}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {59E9B218-81D0-4A80-A4B7-66C716136D82}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {59E9B218-81D0-4A80-A4B7-66C716136D82}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU + {551A6340-8EEF-445E-A2A2-639CC23DBD36}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {551A6340-8EEF-445E-A2A2-639CC23DBD36}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {551A6340-8EEF-445E-A2A2-639CC23DBD36}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {551A6340-8EEF-445E-A2A2-639CC23DBD36}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU + {E7943063-5DB9-4EC6-86DD-3029E65121CE}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {E7943063-5DB9-4EC6-86DD-3029E65121CE}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {E7943063-5DB9-4EC6-86DD-3029E65121CE}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {E7943063-5DB9-4EC6-86DD-3029E65121CE}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/src/libraries/System.ComponentModel.EventBasedAsync/ref/Configurations.props b/src/libraries/System.ComponentModel.EventBasedAsync/ref/Configurations.props index 55d2de1d23f8d..7ac45c966c456 100644 --- a/src/libraries/System.ComponentModel.EventBasedAsync/ref/Configurations.props +++ b/src/libraries/System.ComponentModel.EventBasedAsync/ref/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.ComponentModel.EventBasedAsync/ref/System.ComponentModel.EventBasedAsync.csproj b/src/libraries/System.ComponentModel.EventBasedAsync/ref/System.ComponentModel.EventBasedAsync.csproj index 6a82f1e4810ef..f324fc5041730 100644 --- a/src/libraries/System.ComponentModel.EventBasedAsync/ref/System.ComponentModel.EventBasedAsync.csproj +++ b/src/libraries/System.ComponentModel.EventBasedAsync/ref/System.ComponentModel.EventBasedAsync.csproj @@ -1,7 +1,7 @@ + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release enable - netcoreapp-Debug;netcoreapp-Release diff --git a/src/libraries/System.ComponentModel.EventBasedAsync/src/Configurations.props b/src/libraries/System.ComponentModel.EventBasedAsync/src/Configurations.props index 55d2de1d23f8d..7ac45c966c456 100644 --- a/src/libraries/System.ComponentModel.EventBasedAsync/src/Configurations.props +++ b/src/libraries/System.ComponentModel.EventBasedAsync/src/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.ComponentModel.EventBasedAsync/src/System.ComponentModel.EventBasedAsync.csproj b/src/libraries/System.ComponentModel.EventBasedAsync/src/System.ComponentModel.EventBasedAsync.csproj index 0faacb21f9261..4c6a483bf153e 100644 --- a/src/libraries/System.ComponentModel.EventBasedAsync/src/System.ComponentModel.EventBasedAsync.csproj +++ b/src/libraries/System.ComponentModel.EventBasedAsync/src/System.ComponentModel.EventBasedAsync.csproj @@ -2,8 +2,8 @@ System.ComponentModel.EventBasedAsync System.ComponentModel.EventBasedAsync + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release enable - netcoreapp-Debug;netcoreapp-Release diff --git a/src/libraries/System.ComponentModel.EventBasedAsync/tests/Configurations.props b/src/libraries/System.ComponentModel.EventBasedAsync/tests/Configurations.props index 55d2de1d23f8d..7ac45c966c456 100644 --- a/src/libraries/System.ComponentModel.EventBasedAsync/tests/Configurations.props +++ b/src/libraries/System.ComponentModel.EventBasedAsync/tests/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.ComponentModel.EventBasedAsync/tests/System.ComponentModel.EventBasedAsync.Tests.csproj b/src/libraries/System.ComponentModel.EventBasedAsync/tests/System.ComponentModel.EventBasedAsync.Tests.csproj index 2c5fce355affd..39dd7da60a3fa 100644 --- a/src/libraries/System.ComponentModel.EventBasedAsync/tests/System.ComponentModel.EventBasedAsync.Tests.csproj +++ b/src/libraries/System.ComponentModel.EventBasedAsync/tests/System.ComponentModel.EventBasedAsync.Tests.csproj @@ -1,7 +1,7 @@ true - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release diff --git a/src/libraries/System.ComponentModel.Primitives/System.ComponentModel.Primitives.sln b/src/libraries/System.ComponentModel.Primitives/System.ComponentModel.Primitives.sln index 0bbb97c4b9b22..404c31e55bb77 100644 --- a/src/libraries/System.ComponentModel.Primitives/System.ComponentModel.Primitives.sln +++ b/src/libraries/System.ComponentModel.Primitives/System.ComponentModel.Primitives.sln @@ -26,18 +26,18 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {C9534425-93FB-494F-8DD8-1E4E3E626FDE}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {C9534425-93FB-494F-8DD8-1E4E3E626FDE}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {C9534425-93FB-494F-8DD8-1E4E3E626FDE}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {C9534425-93FB-494F-8DD8-1E4E3E626FDE}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU - {F620F382-30D1-451E-B125-2A612F92068B}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {F620F382-30D1-451E-B125-2A612F92068B}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {F620F382-30D1-451E-B125-2A612F92068B}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {F620F382-30D1-451E-B125-2A612F92068B}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU - {ECF37FA5-BEB7-4A23-A573-693B343B45C3}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {ECF37FA5-BEB7-4A23-A573-693B343B45C3}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {ECF37FA5-BEB7-4A23-A573-693B343B45C3}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {ECF37FA5-BEB7-4A23-A573-693B343B45C3}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU + {C9534425-93FB-494F-8DD8-1E4E3E626FDE}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {C9534425-93FB-494F-8DD8-1E4E3E626FDE}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {C9534425-93FB-494F-8DD8-1E4E3E626FDE}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {C9534425-93FB-494F-8DD8-1E4E3E626FDE}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU + {F620F382-30D1-451E-B125-2A612F92068B}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {F620F382-30D1-451E-B125-2A612F92068B}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {F620F382-30D1-451E-B125-2A612F92068B}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {F620F382-30D1-451E-B125-2A612F92068B}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU + {ECF37FA5-BEB7-4A23-A573-693B343B45C3}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {ECF37FA5-BEB7-4A23-A573-693B343B45C3}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {ECF37FA5-BEB7-4A23-A573-693B343B45C3}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {ECF37FA5-BEB7-4A23-A573-693B343B45C3}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/src/libraries/System.ComponentModel.Primitives/ref/Configurations.props b/src/libraries/System.ComponentModel.Primitives/ref/Configurations.props index 55d2de1d23f8d..7ac45c966c456 100644 --- a/src/libraries/System.ComponentModel.Primitives/ref/Configurations.props +++ b/src/libraries/System.ComponentModel.Primitives/ref/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.ComponentModel.Primitives/ref/System.ComponentModel.Primitives.csproj b/src/libraries/System.ComponentModel.Primitives/ref/System.ComponentModel.Primitives.csproj index d25ef11a03ff3..5d5a6232200d3 100644 --- a/src/libraries/System.ComponentModel.Primitives/ref/System.ComponentModel.Primitives.csproj +++ b/src/libraries/System.ComponentModel.Primitives/ref/System.ComponentModel.Primitives.csproj @@ -1,6 +1,6 @@ - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release enable diff --git a/src/libraries/System.ComponentModel.Primitives/src/Configurations.props b/src/libraries/System.ComponentModel.Primitives/src/Configurations.props index 55d2de1d23f8d..7ac45c966c456 100644 --- a/src/libraries/System.ComponentModel.Primitives/src/Configurations.props +++ b/src/libraries/System.ComponentModel.Primitives/src/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.ComponentModel.Primitives/src/System.ComponentModel.Primitives.csproj b/src/libraries/System.ComponentModel.Primitives/src/System.ComponentModel.Primitives.csproj index 3d68cde78c8f0..ee162e6f4bc74 100644 --- a/src/libraries/System.ComponentModel.Primitives/src/System.ComponentModel.Primitives.csproj +++ b/src/libraries/System.ComponentModel.Primitives/src/System.ComponentModel.Primitives.csproj @@ -2,7 +2,7 @@ System.ComponentModel.Primitives System.ComponentModel.Primitives - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release enable diff --git a/src/libraries/System.ComponentModel.Primitives/tests/Configurations.props b/src/libraries/System.ComponentModel.Primitives/tests/Configurations.props index 55d2de1d23f8d..7ac45c966c456 100644 --- a/src/libraries/System.ComponentModel.Primitives/tests/Configurations.props +++ b/src/libraries/System.ComponentModel.Primitives/tests/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.ComponentModel.Primitives/tests/System.ComponentModel.Primitives.Tests.csproj b/src/libraries/System.ComponentModel.Primitives/tests/System.ComponentModel.Primitives.Tests.csproj index 1c4530106d247..345103092ed92 100644 --- a/src/libraries/System.ComponentModel.Primitives/tests/System.ComponentModel.Primitives.Tests.csproj +++ b/src/libraries/System.ComponentModel.Primitives/tests/System.ComponentModel.Primitives.Tests.csproj @@ -1,6 +1,6 @@ - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release diff --git a/src/libraries/System.ComponentModel.TypeConverter/System.ComponentModel.TypeConverter.sln b/src/libraries/System.ComponentModel.TypeConverter/System.ComponentModel.TypeConverter.sln index fdb868b87691d..4bafb9a8521dd 100644 --- a/src/libraries/System.ComponentModel.TypeConverter/System.ComponentModel.TypeConverter.sln +++ b/src/libraries/System.ComponentModel.TypeConverter/System.ComponentModel.TypeConverter.sln @@ -26,18 +26,18 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {3F0326A1-9E19-4A6C-95CE-63E65C9D2030}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {3F0326A1-9E19-4A6C-95CE-63E65C9D2030}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {3F0326A1-9E19-4A6C-95CE-63E65C9D2030}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {3F0326A1-9E19-4A6C-95CE-63E65C9D2030}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU - {AF3EBF3B-526A-4B51-9F3D-62B0113CD01F}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {AF3EBF3B-526A-4B51-9F3D-62B0113CD01F}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {AF3EBF3B-526A-4B51-9F3D-62B0113CD01F}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {AF3EBF3B-526A-4B51-9F3D-62B0113CD01F}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU - {D35FD24C-1D1E-4860-B44D-73097CC0BD90}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {D35FD24C-1D1E-4860-B44D-73097CC0BD90}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {D35FD24C-1D1E-4860-B44D-73097CC0BD90}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {D35FD24C-1D1E-4860-B44D-73097CC0BD90}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU + {3F0326A1-9E19-4A6C-95CE-63E65C9D2030}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {3F0326A1-9E19-4A6C-95CE-63E65C9D2030}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {3F0326A1-9E19-4A6C-95CE-63E65C9D2030}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {3F0326A1-9E19-4A6C-95CE-63E65C9D2030}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU + {AF3EBF3B-526A-4B51-9F3D-62B0113CD01F}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {AF3EBF3B-526A-4B51-9F3D-62B0113CD01F}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {AF3EBF3B-526A-4B51-9F3D-62B0113CD01F}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {AF3EBF3B-526A-4B51-9F3D-62B0113CD01F}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU + {D35FD24C-1D1E-4860-B44D-73097CC0BD90}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {D35FD24C-1D1E-4860-B44D-73097CC0BD90}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {D35FD24C-1D1E-4860-B44D-73097CC0BD90}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {D35FD24C-1D1E-4860-B44D-73097CC0BD90}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/src/libraries/System.ComponentModel.TypeConverter/ref/Configurations.props b/src/libraries/System.ComponentModel.TypeConverter/ref/Configurations.props index 55d2de1d23f8d..7ac45c966c456 100644 --- a/src/libraries/System.ComponentModel.TypeConverter/ref/Configurations.props +++ b/src/libraries/System.ComponentModel.TypeConverter/ref/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.ComponentModel.TypeConverter/ref/System.ComponentModel.TypeConverter.csproj b/src/libraries/System.ComponentModel.TypeConverter/ref/System.ComponentModel.TypeConverter.csproj index 117bdb958c80e..ffe9dc549d5a0 100644 --- a/src/libraries/System.ComponentModel.TypeConverter/ref/System.ComponentModel.TypeConverter.csproj +++ b/src/libraries/System.ComponentModel.TypeConverter/ref/System.ComponentModel.TypeConverter.csproj @@ -1,6 +1,6 @@ - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release diff --git a/src/libraries/System.ComponentModel.TypeConverter/src/Configurations.props b/src/libraries/System.ComponentModel.TypeConverter/src/Configurations.props index 55d2de1d23f8d..7ac45c966c456 100644 --- a/src/libraries/System.ComponentModel.TypeConverter/src/Configurations.props +++ b/src/libraries/System.ComponentModel.TypeConverter/src/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.ComponentModel.TypeConverter/src/System.ComponentModel.TypeConverter.csproj b/src/libraries/System.ComponentModel.TypeConverter/src/System.ComponentModel.TypeConverter.csproj index 40f1406d18a27..c8051d2b794b5 100644 --- a/src/libraries/System.ComponentModel.TypeConverter/src/System.ComponentModel.TypeConverter.csproj +++ b/src/libraries/System.ComponentModel.TypeConverter/src/System.ComponentModel.TypeConverter.csproj @@ -4,7 +4,7 @@ System.ComponentModel.TypeConverter true true - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release diff --git a/src/libraries/System.ComponentModel.TypeConverter/tests/Configurations.props b/src/libraries/System.ComponentModel.TypeConverter/tests/Configurations.props index 55d2de1d23f8d..7ac45c966c456 100644 --- a/src/libraries/System.ComponentModel.TypeConverter/tests/Configurations.props +++ b/src/libraries/System.ComponentModel.TypeConverter/tests/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file 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 528e6fcec4ba4..bc6b77370d4bc 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 @@ -4,7 +4,7 @@ true 9.9.9.9 - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release diff --git a/src/libraries/System.ComponentModel/System.ComponentModel.sln b/src/libraries/System.ComponentModel/System.ComponentModel.sln index b2d5a09583d0c..f6ddbf600179a 100644 --- a/src/libraries/System.ComponentModel/System.ComponentModel.sln +++ b/src/libraries/System.ComponentModel/System.ComponentModel.sln @@ -26,18 +26,18 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {40C01084-DAB1-4F24-8729-85523BC9F04E}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {40C01084-DAB1-4F24-8729-85523BC9F04E}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {40C01084-DAB1-4F24-8729-85523BC9F04E}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {40C01084-DAB1-4F24-8729-85523BC9F04E}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU - {D40BC4CC-544F-4F49-A9E1-C81FFF784B2C}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {D40BC4CC-544F-4F49-A9E1-C81FFF784B2C}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {D40BC4CC-544F-4F49-A9E1-C81FFF784B2C}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {D40BC4CC-544F-4F49-A9E1-C81FFF784B2C}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU - {2F84DFF4-DD9C-42C2-B192-2B7D1944C1EF}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {2F84DFF4-DD9C-42C2-B192-2B7D1944C1EF}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {2F84DFF4-DD9C-42C2-B192-2B7D1944C1EF}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {2F84DFF4-DD9C-42C2-B192-2B7D1944C1EF}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU + {40C01084-DAB1-4F24-8729-85523BC9F04E}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {40C01084-DAB1-4F24-8729-85523BC9F04E}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {40C01084-DAB1-4F24-8729-85523BC9F04E}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {40C01084-DAB1-4F24-8729-85523BC9F04E}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU + {D40BC4CC-544F-4F49-A9E1-C81FFF784B2C}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {D40BC4CC-544F-4F49-A9E1-C81FFF784B2C}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {D40BC4CC-544F-4F49-A9E1-C81FFF784B2C}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {D40BC4CC-544F-4F49-A9E1-C81FFF784B2C}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU + {2F84DFF4-DD9C-42C2-B192-2B7D1944C1EF}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {2F84DFF4-DD9C-42C2-B192-2B7D1944C1EF}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {2F84DFF4-DD9C-42C2-B192-2B7D1944C1EF}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {2F84DFF4-DD9C-42C2-B192-2B7D1944C1EF}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/src/libraries/System.ComponentModel/ref/Configurations.props b/src/libraries/System.ComponentModel/ref/Configurations.props index 55d2de1d23f8d..7ac45c966c456 100644 --- a/src/libraries/System.ComponentModel/ref/Configurations.props +++ b/src/libraries/System.ComponentModel/ref/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.ComponentModel/ref/System.ComponentModel.csproj b/src/libraries/System.ComponentModel/ref/System.ComponentModel.csproj index 94a559fb453e5..ccb7d78735ff7 100644 --- a/src/libraries/System.ComponentModel/ref/System.ComponentModel.csproj +++ b/src/libraries/System.ComponentModel/ref/System.ComponentModel.csproj @@ -1,6 +1,6 @@ - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release enable diff --git a/src/libraries/System.ComponentModel/src/Configurations.props b/src/libraries/System.ComponentModel/src/Configurations.props index 55d2de1d23f8d..7ac45c966c456 100644 --- a/src/libraries/System.ComponentModel/src/Configurations.props +++ b/src/libraries/System.ComponentModel/src/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.ComponentModel/src/System.ComponentModel.csproj b/src/libraries/System.ComponentModel/src/System.ComponentModel.csproj index 91315fdebfcb1..3062041f6ad6f 100644 --- a/src/libraries/System.ComponentModel/src/System.ComponentModel.csproj +++ b/src/libraries/System.ComponentModel/src/System.ComponentModel.csproj @@ -3,7 +3,7 @@ System.ComponentModel System.ComponentModel true - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release enable diff --git a/src/libraries/System.ComponentModel/tests/Configurations.props b/src/libraries/System.ComponentModel/tests/Configurations.props index 55d2de1d23f8d..7ac45c966c456 100644 --- a/src/libraries/System.ComponentModel/tests/Configurations.props +++ b/src/libraries/System.ComponentModel/tests/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.ComponentModel/tests/System.ComponentModel.Tests.csproj b/src/libraries/System.ComponentModel/tests/System.ComponentModel.Tests.csproj index 18781532650f9..d707f04894c71 100644 --- a/src/libraries/System.ComponentModel/tests/System.ComponentModel.Tests.csproj +++ b/src/libraries/System.ComponentModel/tests/System.ComponentModel.Tests.csproj @@ -1,6 +1,6 @@ - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release diff --git a/src/libraries/System.Composition.AttributedModel/System.Composition.AttributedModel.sln b/src/libraries/System.Composition.AttributedModel/System.Composition.AttributedModel.sln index a21e9135e9154..5337520c72e3a 100644 --- a/src/libraries/System.Composition.AttributedModel/System.Composition.AttributedModel.sln +++ b/src/libraries/System.Composition.AttributedModel/System.Composition.AttributedModel.sln @@ -19,10 +19,10 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {853BB14F-8A5B-42B4-A053-21DE1AEBB335}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {853BB14F-8A5B-42B4-A053-21DE1AEBB335}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {853BB14F-8A5B-42B4-A053-21DE1AEBB335}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {853BB14F-8A5B-42B4-A053-21DE1AEBB335}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU + {853BB14F-8A5B-42B4-A053-21DE1AEBB335}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {853BB14F-8A5B-42B4-A053-21DE1AEBB335}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {853BB14F-8A5B-42B4-A053-21DE1AEBB335}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {853BB14F-8A5B-42B4-A053-21DE1AEBB335}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU {C6257381-C624-494A-A9D9-5586E60856EA}.Debug|Any CPU.ActiveCfg = netstandard2.0-Debug|Any CPU {C6257381-C624-494A-A9D9-5586E60856EA}.Debug|Any CPU.Build.0 = netstandard2.0-Debug|Any CPU {C6257381-C624-494A-A9D9-5586E60856EA}.Release|Any CPU.ActiveCfg = netstandard2.0-Release|Any CPU diff --git a/src/libraries/System.Composition.AttributedModel/tests/Configurations.props b/src/libraries/System.Composition.AttributedModel/tests/Configurations.props index 1a037adc3e7c1..f550cb30c4afd 100644 --- a/src/libraries/System.Composition.AttributedModel/tests/Configurations.props +++ b/src/libraries/System.Composition.AttributedModel/tests/Configurations.props @@ -1,8 +1,8 @@  - netcoreapp; - netfx; + $(NetCoreAppCurrent); + $(NetFrameworkCurrent); \ No newline at end of file diff --git a/src/libraries/System.Composition.AttributedModel/tests/System.Composition.AttributeModel.Tests.csproj b/src/libraries/System.Composition.AttributedModel/tests/System.Composition.AttributeModel.Tests.csproj index 6ba40ebdc5d76..fba0fa2c4c49d 100644 --- a/src/libraries/System.Composition.AttributedModel/tests/System.Composition.AttributeModel.Tests.csproj +++ b/src/libraries/System.Composition.AttributedModel/tests/System.Composition.AttributeModel.Tests.csproj @@ -1,6 +1,6 @@ - netcoreapp-Debug;netcoreapp-Release;netfx-Debug;netfx-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release;$(NetFrameworkCurrent)-Debug;$(NetFrameworkCurrent)-Release diff --git a/src/libraries/System.Composition.Convention/System.Composition.Convention.sln b/src/libraries/System.Composition.Convention/System.Composition.Convention.sln index a3a2e09972ce4..046974277b6dc 100644 --- a/src/libraries/System.Composition.Convention/System.Composition.Convention.sln +++ b/src/libraries/System.Composition.Convention/System.Composition.Convention.sln @@ -19,10 +19,10 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {17DBE1D4-FCB5-4D55-805C-C4A22EE8C032}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {17DBE1D4-FCB5-4D55-805C-C4A22EE8C032}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {17DBE1D4-FCB5-4D55-805C-C4A22EE8C032}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {17DBE1D4-FCB5-4D55-805C-C4A22EE8C032}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU + {17DBE1D4-FCB5-4D55-805C-C4A22EE8C032}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {17DBE1D4-FCB5-4D55-805C-C4A22EE8C032}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {17DBE1D4-FCB5-4D55-805C-C4A22EE8C032}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {17DBE1D4-FCB5-4D55-805C-C4A22EE8C032}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU {E6592FAD-10B5-4B56-9287-D72DD136992F}.Debug|Any CPU.ActiveCfg = netstandard2.0-Debug|Any CPU {E6592FAD-10B5-4B56-9287-D72DD136992F}.Debug|Any CPU.Build.0 = netstandard2.0-Debug|Any CPU {E6592FAD-10B5-4B56-9287-D72DD136992F}.Release|Any CPU.ActiveCfg = netstandard2.0-Release|Any CPU diff --git a/src/libraries/System.Composition.Convention/tests/Configurations.props b/src/libraries/System.Composition.Convention/tests/Configurations.props index 1a037adc3e7c1..f550cb30c4afd 100644 --- a/src/libraries/System.Composition.Convention/tests/Configurations.props +++ b/src/libraries/System.Composition.Convention/tests/Configurations.props @@ -1,8 +1,8 @@  - netcoreapp; - netfx; + $(NetCoreAppCurrent); + $(NetFrameworkCurrent); \ No newline at end of file diff --git a/src/libraries/System.Composition.Convention/tests/System.Composition.Convention.Tests.csproj b/src/libraries/System.Composition.Convention/tests/System.Composition.Convention.Tests.csproj index 77f14be4fb948..a100e22dcf7d0 100644 --- a/src/libraries/System.Composition.Convention/tests/System.Composition.Convention.Tests.csproj +++ b/src/libraries/System.Composition.Convention/tests/System.Composition.Convention.Tests.csproj @@ -1,7 +1,7 @@ System.Composition.Convention.Tests - netcoreapp-Debug;netcoreapp-Release;netfx-Debug;netfx-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release;$(NetFrameworkCurrent)-Debug;$(NetFrameworkCurrent)-Release diff --git a/src/libraries/System.Composition.Hosting/System.Composition.Hosting.sln b/src/libraries/System.Composition.Hosting/System.Composition.Hosting.sln index cac2e9590a69e..cbb90d854a5a1 100644 --- a/src/libraries/System.Composition.Hosting/System.Composition.Hosting.sln +++ b/src/libraries/System.Composition.Hosting/System.Composition.Hosting.sln @@ -19,10 +19,10 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {52BE9F68-69EC-44AA-806E-11EFB57D9B4B}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {52BE9F68-69EC-44AA-806E-11EFB57D9B4B}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {52BE9F68-69EC-44AA-806E-11EFB57D9B4B}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {52BE9F68-69EC-44AA-806E-11EFB57D9B4B}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU + {52BE9F68-69EC-44AA-806E-11EFB57D9B4B}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {52BE9F68-69EC-44AA-806E-11EFB57D9B4B}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {52BE9F68-69EC-44AA-806E-11EFB57D9B4B}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {52BE9F68-69EC-44AA-806E-11EFB57D9B4B}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU {2B8FECC6-34A1-48FE-BA75-99572D2D6DB2}.Debug|Any CPU.ActiveCfg = netstandard2.0-Debug|Any CPU {2B8FECC6-34A1-48FE-BA75-99572D2D6DB2}.Debug|Any CPU.Build.0 = netstandard2.0-Debug|Any CPU {2B8FECC6-34A1-48FE-BA75-99572D2D6DB2}.Release|Any CPU.ActiveCfg = netstandard2.0-Release|Any CPU diff --git a/src/libraries/System.Composition.Hosting/tests/Configurations.props b/src/libraries/System.Composition.Hosting/tests/Configurations.props index 1a037adc3e7c1..f550cb30c4afd 100644 --- a/src/libraries/System.Composition.Hosting/tests/Configurations.props +++ b/src/libraries/System.Composition.Hosting/tests/Configurations.props @@ -1,8 +1,8 @@  - netcoreapp; - netfx; + $(NetCoreAppCurrent); + $(NetFrameworkCurrent); \ No newline at end of file diff --git a/src/libraries/System.Composition.Hosting/tests/System.Composition.Hosting.Tests.csproj b/src/libraries/System.Composition.Hosting/tests/System.Composition.Hosting.Tests.csproj index 9ee5dd12b7e28..0223b49a205a3 100644 --- a/src/libraries/System.Composition.Hosting/tests/System.Composition.Hosting.Tests.csproj +++ b/src/libraries/System.Composition.Hosting/tests/System.Composition.Hosting.Tests.csproj @@ -1,6 +1,6 @@ - netcoreapp-Debug;netcoreapp-Release;netfx-Debug;netfx-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release;$(NetFrameworkCurrent)-Debug;$(NetFrameworkCurrent)-Release diff --git a/src/libraries/System.Composition.Runtime/System.Composition.Runtime.sln b/src/libraries/System.Composition.Runtime/System.Composition.Runtime.sln index de735fda9c4c7..167a473f026b8 100644 --- a/src/libraries/System.Composition.Runtime/System.Composition.Runtime.sln +++ b/src/libraries/System.Composition.Runtime/System.Composition.Runtime.sln @@ -19,10 +19,10 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {3B6042E6-9765-4A03-9089-92050100C85E}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {3B6042E6-9765-4A03-9089-92050100C85E}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {3B6042E6-9765-4A03-9089-92050100C85E}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {3B6042E6-9765-4A03-9089-92050100C85E}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU + {3B6042E6-9765-4A03-9089-92050100C85E}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {3B6042E6-9765-4A03-9089-92050100C85E}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {3B6042E6-9765-4A03-9089-92050100C85E}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {3B6042E6-9765-4A03-9089-92050100C85E}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU {2711DFD2-8541-4628-BC53-EB784A14CDCF}.Debug|Any CPU.ActiveCfg = netstandard2.0-Debug|Any CPU {2711DFD2-8541-4628-BC53-EB784A14CDCF}.Debug|Any CPU.Build.0 = netstandard2.0-Debug|Any CPU {2711DFD2-8541-4628-BC53-EB784A14CDCF}.Release|Any CPU.ActiveCfg = netstandard2.0-Release|Any CPU diff --git a/src/libraries/System.Composition.Runtime/tests/Configurations.props b/src/libraries/System.Composition.Runtime/tests/Configurations.props index 1a037adc3e7c1..f550cb30c4afd 100644 --- a/src/libraries/System.Composition.Runtime/tests/Configurations.props +++ b/src/libraries/System.Composition.Runtime/tests/Configurations.props @@ -1,8 +1,8 @@  - netcoreapp; - netfx; + $(NetCoreAppCurrent); + $(NetFrameworkCurrent); \ No newline at end of file diff --git a/src/libraries/System.Composition.Runtime/tests/System.Composition.Runtime.Tests.csproj b/src/libraries/System.Composition.Runtime/tests/System.Composition.Runtime.Tests.csproj index 5aa5025a26dd4..383eed487675d 100644 --- a/src/libraries/System.Composition.Runtime/tests/System.Composition.Runtime.Tests.csproj +++ b/src/libraries/System.Composition.Runtime/tests/System.Composition.Runtime.Tests.csproj @@ -1,6 +1,6 @@ - netcoreapp-Debug;netcoreapp-Release;netfx-Debug;netfx-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release;$(NetFrameworkCurrent)-Debug;$(NetFrameworkCurrent)-Release diff --git a/src/libraries/System.Composition.TypedParts/System.Composition.TypedParts.sln b/src/libraries/System.Composition.TypedParts/System.Composition.TypedParts.sln index f8b6e6abdd4a6..c57ae5c24821c 100644 --- a/src/libraries/System.Composition.TypedParts/System.Composition.TypedParts.sln +++ b/src/libraries/System.Composition.TypedParts/System.Composition.TypedParts.sln @@ -19,10 +19,10 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {8D1CB149-B52E-472B-A91F-DF1C77D8BA46}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {8D1CB149-B52E-472B-A91F-DF1C77D8BA46}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {8D1CB149-B52E-472B-A91F-DF1C77D8BA46}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {8D1CB149-B52E-472B-A91F-DF1C77D8BA46}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU + {8D1CB149-B52E-472B-A91F-DF1C77D8BA46}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {8D1CB149-B52E-472B-A91F-DF1C77D8BA46}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {8D1CB149-B52E-472B-A91F-DF1C77D8BA46}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {8D1CB149-B52E-472B-A91F-DF1C77D8BA46}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU {B4B5E15C-E6B9-48EA-94C2-F067484D4D3E}.Debug|Any CPU.ActiveCfg = netstandard2.0-Debug|Any CPU {B4B5E15C-E6B9-48EA-94C2-F067484D4D3E}.Debug|Any CPU.Build.0 = netstandard2.0-Debug|Any CPU {B4B5E15C-E6B9-48EA-94C2-F067484D4D3E}.Release|Any CPU.ActiveCfg = netstandard2.0-Release|Any CPU diff --git a/src/libraries/System.Composition.TypedParts/tests/Configurations.props b/src/libraries/System.Composition.TypedParts/tests/Configurations.props index 1a037adc3e7c1..f550cb30c4afd 100644 --- a/src/libraries/System.Composition.TypedParts/tests/Configurations.props +++ b/src/libraries/System.Composition.TypedParts/tests/Configurations.props @@ -1,8 +1,8 @@  - netcoreapp; - netfx; + $(NetCoreAppCurrent); + $(NetFrameworkCurrent); \ No newline at end of file diff --git a/src/libraries/System.Composition.TypedParts/tests/System.Composition.TypedParts.Tests.csproj b/src/libraries/System.Composition.TypedParts/tests/System.Composition.TypedParts.Tests.csproj index 62f54c3cef081..efa5d48173de0 100644 --- a/src/libraries/System.Composition.TypedParts/tests/System.Composition.TypedParts.Tests.csproj +++ b/src/libraries/System.Composition.TypedParts/tests/System.Composition.TypedParts.Tests.csproj @@ -1,6 +1,6 @@ - netcoreapp-Debug;netcoreapp-Release;netfx-Debug;netfx-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release;$(NetFrameworkCurrent)-Debug;$(NetFrameworkCurrent)-Release diff --git a/src/libraries/System.Composition/System.Composition.sln b/src/libraries/System.Composition/System.Composition.sln index 551252f6455ec..e6ffbae2173ed 100644 --- a/src/libraries/System.Composition/System.Composition.sln +++ b/src/libraries/System.Composition/System.Composition.sln @@ -16,10 +16,10 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {4852A19F-C05C-478D-BFA0-59FD03DE0E3F}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {4852A19F-C05C-478D-BFA0-59FD03DE0E3F}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {4852A19F-C05C-478D-BFA0-59FD03DE0E3F}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {4852A19F-C05C-478D-BFA0-59FD03DE0E3F}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU + {4852A19F-C05C-478D-BFA0-59FD03DE0E3F}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {4852A19F-C05C-478D-BFA0-59FD03DE0E3F}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {4852A19F-C05C-478D-BFA0-59FD03DE0E3F}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {4852A19F-C05C-478D-BFA0-59FD03DE0E3F}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU {44C7E52C-3873-4C64-875C-8A23A8376D60}.Debug|Any CPU.ActiveCfg = netstandard2.0-Debug|Any CPU {44C7E52C-3873-4C64-875C-8A23A8376D60}.Debug|Any CPU.Build.0 = netstandard2.0-Debug|Any CPU {44C7E52C-3873-4C64-875C-8A23A8376D60}.Release|Any CPU.ActiveCfg = netstandard2.0-Release|Any CPU diff --git a/src/libraries/System.Composition/tests/Configurations.props b/src/libraries/System.Composition/tests/Configurations.props index 1a037adc3e7c1..f550cb30c4afd 100644 --- a/src/libraries/System.Composition/tests/Configurations.props +++ b/src/libraries/System.Composition/tests/Configurations.props @@ -1,8 +1,8 @@  - netcoreapp; - netfx; + $(NetCoreAppCurrent); + $(NetFrameworkCurrent); \ No newline at end of file diff --git a/src/libraries/System.Composition/tests/System.Composition.Tests.csproj b/src/libraries/System.Composition/tests/System.Composition.Tests.csproj index b8f9c7c7ebc1a..85b172f5b0d38 100644 --- a/src/libraries/System.Composition/tests/System.Composition.Tests.csproj +++ b/src/libraries/System.Composition/tests/System.Composition.Tests.csproj @@ -2,7 +2,7 @@ System.Composition.Lightweight.UnitTests System.Composition.Tests - netcoreapp-Debug;netcoreapp-Release;netfx-Debug;netfx-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release;$(NetFrameworkCurrent)-Debug;$(NetFrameworkCurrent)-Release diff --git a/src/libraries/System.Configuration.ConfigurationManager/System.Configuration.ConfigurationManager.sln b/src/libraries/System.Configuration.ConfigurationManager/System.Configuration.ConfigurationManager.sln index 84ebd7611e097..ee6b65aced5fa 100644 --- a/src/libraries/System.Configuration.ConfigurationManager/System.Configuration.ConfigurationManager.sln +++ b/src/libraries/System.Configuration.ConfigurationManager/System.Configuration.ConfigurationManager.sln @@ -26,10 +26,10 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {7669C397-C21C-4C08-83F1-BE6691911E88}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {7669C397-C21C-4C08-83F1-BE6691911E88}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {7669C397-C21C-4C08-83F1-BE6691911E88}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {7669C397-C21C-4C08-83F1-BE6691911E88}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU + {7669C397-C21C-4C08-83F1-BE6691911E88}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {7669C397-C21C-4C08-83F1-BE6691911E88}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {7669C397-C21C-4C08-83F1-BE6691911E88}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {7669C397-C21C-4C08-83F1-BE6691911E88}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU {B7697463-7C98-4462-BA09-67B7BF3842B6}.Debug|Any CPU.ActiveCfg = netstandard2.0-Debug|Any CPU {B7697463-7C98-4462-BA09-67B7BF3842B6}.Debug|Any CPU.Build.0 = netstandard2.0-Debug|Any CPU {B7697463-7C98-4462-BA09-67B7BF3842B6}.Release|Any CPU.ActiveCfg = netstandard2.0-Release|Any CPU diff --git a/src/libraries/System.Configuration.ConfigurationManager/ref/Configurations.props b/src/libraries/System.Configuration.ConfigurationManager/ref/Configurations.props index b4925fb60b67f..0dac4d73f4a20 100644 --- a/src/libraries/System.Configuration.ConfigurationManager/ref/Configurations.props +++ b/src/libraries/System.Configuration.ConfigurationManager/ref/Configurations.props @@ -6,7 +6,7 @@ $(PackageConfigurations); - netfx; + $(NetFrameworkCurrent); \ No newline at end of file diff --git a/src/libraries/System.Configuration.ConfigurationManager/ref/System.Configuration.ConfigurationManager.csproj b/src/libraries/System.Configuration.ConfigurationManager/ref/System.Configuration.ConfigurationManager.csproj index 4ad85e43a78de..39ae1bb065a49 100644 --- a/src/libraries/System.Configuration.ConfigurationManager/ref/System.Configuration.ConfigurationManager.csproj +++ b/src/libraries/System.Configuration.ConfigurationManager/ref/System.Configuration.ConfigurationManager.csproj @@ -1,7 +1,7 @@ true - net461-Debug;net461-Release;netfx-Debug;netfx-Release;netstandard2.0-Debug;netstandard2.0-Release + net461-Debug;net461-Release;$(NetFrameworkCurrent)-Debug;$(NetFrameworkCurrent)-Release;netstandard2.0-Debug;netstandard2.0-Release diff --git a/src/libraries/System.Configuration.ConfigurationManager/src/Configurations.props b/src/libraries/System.Configuration.ConfigurationManager/src/Configurations.props index 9ec640e9d20f4..84807793befbe 100644 --- a/src/libraries/System.Configuration.ConfigurationManager/src/Configurations.props +++ b/src/libraries/System.Configuration.ConfigurationManager/src/Configurations.props @@ -6,7 +6,7 @@ $(PackageConfigurations); - netfx; + $(NetFrameworkCurrent); diff --git a/src/libraries/System.Configuration.ConfigurationManager/src/System.Configuration.ConfigurationManager.csproj b/src/libraries/System.Configuration.ConfigurationManager/src/System.Configuration.ConfigurationManager.csproj index 48b30e99cedfd..7acf1a93825f7 100644 --- a/src/libraries/System.Configuration.ConfigurationManager/src/System.Configuration.ConfigurationManager.csproj +++ b/src/libraries/System.Configuration.ConfigurationManager/src/System.Configuration.ConfigurationManager.csproj @@ -1,7 +1,7 @@ true - net461-Debug;net461-Release;netfx-Debug;netfx-Release;netstandard2.0-Debug;netstandard2.0-Release + net461-Debug;net461-Release;$(NetFrameworkCurrent)-Debug;$(NetFrameworkCurrent)-Release;netstandard2.0-Debug;netstandard2.0-Release diff --git a/src/libraries/System.Configuration.ConfigurationManager/tests/Configurations.props b/src/libraries/System.Configuration.ConfigurationManager/tests/Configurations.props index 4eaa8e632f7a7..61dd6d50aeccc 100644 --- a/src/libraries/System.Configuration.ConfigurationManager/tests/Configurations.props +++ b/src/libraries/System.Configuration.ConfigurationManager/tests/Configurations.props @@ -1,8 +1,8 @@ - netcoreapp; - netfx; + $(NetCoreAppCurrent); + $(NetFrameworkCurrent); diff --git a/src/libraries/System.Configuration.ConfigurationManager/tests/System.Configuration.ConfigurationManager.Tests.csproj b/src/libraries/System.Configuration.ConfigurationManager/tests/System.Configuration.ConfigurationManager.Tests.csproj index f0efd58710abb..d3560c99cb959 100644 --- a/src/libraries/System.Configuration.ConfigurationManager/tests/System.Configuration.ConfigurationManager.Tests.csproj +++ b/src/libraries/System.Configuration.ConfigurationManager/tests/System.Configuration.ConfigurationManager.Tests.csproj @@ -4,7 +4,7 @@ true true true - netcoreapp-Debug;netcoreapp-Release;netfx-Debug;netfx-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release;$(NetFrameworkCurrent)-Debug;$(NetFrameworkCurrent)-Release diff --git a/src/libraries/System.Console/System.Console.sln b/src/libraries/System.Console/System.Console.sln index bb1d6dcf2dbbf..272951dc2dd2a 100644 --- a/src/libraries/System.Console/System.Console.sln +++ b/src/libraries/System.Console/System.Console.sln @@ -31,22 +31,22 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {3ED7BCF1-34B9-49B7-9C25-0BC3304C0858}.Debug|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Debug|Any CPU - {3ED7BCF1-34B9-49B7-9C25-0BC3304C0858}.Debug|Any CPU.Build.0 = netcoreapp-Windows_NT-Debug|Any CPU - {3ED7BCF1-34B9-49B7-9C25-0BC3304C0858}.Release|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Release|Any CPU - {3ED7BCF1-34B9-49B7-9C25-0BC3304C0858}.Release|Any CPU.Build.0 = netcoreapp-Windows_NT-Release|Any CPU + {3ED7BCF1-34B9-49B7-9C25-0BC3304C0858}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Debug|Any CPU + {3ED7BCF1-34B9-49B7-9C25-0BC3304C0858}.Debug|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Debug|Any CPU + {3ED7BCF1-34B9-49B7-9C25-0BC3304C0858}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Release|Any CPU + {3ED7BCF1-34B9-49B7-9C25-0BC3304C0858}.Release|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Release|Any CPU {99E5069D-241F-48A6-8F29-404B4AED72BF}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {99E5069D-241F-48A6-8F29-404B4AED72BF}.Debug|Any CPU.Build.0 = Debug|Any CPU {99E5069D-241F-48A6-8F29-404B4AED72BF}.Release|Any CPU.ActiveCfg = Release|Any CPU {99E5069D-241F-48A6-8F29-404B4AED72BF}.Release|Any CPU.Build.0 = Release|Any CPU - {F9DF2357-81B4-4317-908E-512DA9395583}.Debug|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Debug|Any CPU - {F9DF2357-81B4-4317-908E-512DA9395583}.Debug|Any CPU.Build.0 = netcoreapp-Windows_NT-Debug|Any CPU - {F9DF2357-81B4-4317-908E-512DA9395583}.Release|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Release|Any CPU - {F9DF2357-81B4-4317-908E-512DA9395583}.Release|Any CPU.Build.0 = netcoreapp-Windows_NT-Release|Any CPU - {9EB75B87-2BE5-48E5-8988-A0929CE6664E}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {9EB75B87-2BE5-48E5-8988-A0929CE6664E}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {9EB75B87-2BE5-48E5-8988-A0929CE6664E}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {9EB75B87-2BE5-48E5-8988-A0929CE6664E}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU + {F9DF2357-81B4-4317-908E-512DA9395583}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Debug|Any CPU + {F9DF2357-81B4-4317-908E-512DA9395583}.Debug|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Debug|Any CPU + {F9DF2357-81B4-4317-908E-512DA9395583}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Release|Any CPU + {F9DF2357-81B4-4317-908E-512DA9395583}.Release|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Release|Any CPU + {9EB75B87-2BE5-48E5-8988-A0929CE6664E}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {9EB75B87-2BE5-48E5-8988-A0929CE6664E}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {9EB75B87-2BE5-48E5-8988-A0929CE6664E}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {9EB75B87-2BE5-48E5-8988-A0929CE6664E}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/src/libraries/System.Console/ref/Configurations.props b/src/libraries/System.Console/ref/Configurations.props index 55d2de1d23f8d..7ac45c966c456 100644 --- a/src/libraries/System.Console/ref/Configurations.props +++ b/src/libraries/System.Console/ref/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Console/ref/System.Console.csproj b/src/libraries/System.Console/ref/System.Console.csproj index 84284f0353183..cf496de3a4371 100644 --- a/src/libraries/System.Console/ref/System.Console.csproj +++ b/src/libraries/System.Console/ref/System.Console.csproj @@ -1,6 +1,6 @@  - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release enable diff --git a/src/libraries/System.Console/src/Configurations.props b/src/libraries/System.Console/src/Configurations.props index 1c0ceb0002ac4..f8d083e8f7a72 100644 --- a/src/libraries/System.Console/src/Configurations.props +++ b/src/libraries/System.Console/src/Configurations.props @@ -1,8 +1,8 @@  - netcoreapp-Unix; - netcoreapp-Windows_NT; + $(NetCoreAppCurrent)-Unix; + $(NetCoreAppCurrent)-Windows_NT; \ No newline at end of file diff --git a/src/libraries/System.Console/src/System.Console.csproj b/src/libraries/System.Console/src/System.Console.csproj index bff20b24718a0..c539c594bd36e 100644 --- a/src/libraries/System.Console/src/System.Console.csproj +++ b/src/libraries/System.Console/src/System.Console.csproj @@ -3,7 +3,7 @@ System.Console System.Console true - netcoreapp-Unix-Debug;netcoreapp-Unix-Release;netcoreapp-Windows_NT-Debug;netcoreapp-Windows_NT-Release + $(NetCoreAppCurrent)-Unix-Debug;$(NetCoreAppCurrent)-Unix-Release;$(NetCoreAppCurrent)-Windows_NT-Debug;$(NetCoreAppCurrent)-Windows_NT-Release enable diff --git a/src/libraries/System.Console/tests/Configurations.props b/src/libraries/System.Console/tests/Configurations.props index 2076da5c28fd9..4614c37cf0f25 100644 --- a/src/libraries/System.Console/tests/Configurations.props +++ b/src/libraries/System.Console/tests/Configurations.props @@ -1,8 +1,8 @@  - netcoreapp; - netcoreapp-Windows_NT; + $(NetCoreAppCurrent); + $(NetCoreAppCurrent)-Windows_NT; \ No newline at end of file diff --git a/src/libraries/System.Console/tests/System.Console.Tests.csproj b/src/libraries/System.Console/tests/System.Console.Tests.csproj index e576e0b2941d6..07b9eddfe9708 100644 --- a/src/libraries/System.Console/tests/System.Console.Tests.csproj +++ b/src/libraries/System.Console/tests/System.Console.Tests.csproj @@ -2,7 +2,7 @@ true true - netcoreapp-Debug;netcoreapp-Release;netcoreapp-Windows_NT-Debug;netcoreapp-Windows_NT-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release;$(NetCoreAppCurrent)-Windows_NT-Debug;$(NetCoreAppCurrent)-Windows_NT-Release diff --git a/src/libraries/System.Data.Common/System.Data.Common.sln b/src/libraries/System.Data.Common/System.Data.Common.sln index a6a1c30e25c64..c85dfbd755bf7 100644 --- a/src/libraries/System.Data.Common/System.Data.Common.sln +++ b/src/libraries/System.Data.Common/System.Data.Common.sln @@ -26,18 +26,18 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {B473F77D-4168-4123-932A-E88020B768FA}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {B473F77D-4168-4123-932A-E88020B768FA}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {B473F77D-4168-4123-932A-E88020B768FA}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {B473F77D-4168-4123-932A-E88020B768FA}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU - {29EF8D53-8E84-4E49-B90F-5950A2FE7D54}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {29EF8D53-8E84-4E49-B90F-5950A2FE7D54}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {29EF8D53-8E84-4E49-B90F-5950A2FE7D54}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {29EF8D53-8E84-4E49-B90F-5950A2FE7D54}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU - {D2DB0D6F-F65E-4174-B31E-27DC03137118}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {D2DB0D6F-F65E-4174-B31E-27DC03137118}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {D2DB0D6F-F65E-4174-B31E-27DC03137118}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {D2DB0D6F-F65E-4174-B31E-27DC03137118}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU + {B473F77D-4168-4123-932A-E88020B768FA}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {B473F77D-4168-4123-932A-E88020B768FA}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {B473F77D-4168-4123-932A-E88020B768FA}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {B473F77D-4168-4123-932A-E88020B768FA}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU + {29EF8D53-8E84-4E49-B90F-5950A2FE7D54}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {29EF8D53-8E84-4E49-B90F-5950A2FE7D54}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {29EF8D53-8E84-4E49-B90F-5950A2FE7D54}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {29EF8D53-8E84-4E49-B90F-5950A2FE7D54}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU + {D2DB0D6F-F65E-4174-B31E-27DC03137118}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {D2DB0D6F-F65E-4174-B31E-27DC03137118}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {D2DB0D6F-F65E-4174-B31E-27DC03137118}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {D2DB0D6F-F65E-4174-B31E-27DC03137118}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/src/libraries/System.Data.Common/ref/Configurations.props b/src/libraries/System.Data.Common/ref/Configurations.props index 55d2de1d23f8d..7ac45c966c456 100644 --- a/src/libraries/System.Data.Common/ref/Configurations.props +++ b/src/libraries/System.Data.Common/ref/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Data.Common/ref/System.Data.Common.csproj b/src/libraries/System.Data.Common/ref/System.Data.Common.csproj index c50b085cca737..09f3d8b0c043d 100644 --- a/src/libraries/System.Data.Common/ref/System.Data.Common.csproj +++ b/src/libraries/System.Data.Common/ref/System.Data.Common.csproj @@ -1,7 +1,7 @@  $(NoWarn);0618 - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release diff --git a/src/libraries/System.Data.Common/src/Configurations.props b/src/libraries/System.Data.Common/src/Configurations.props index 55d2de1d23f8d..7ac45c966c456 100644 --- a/src/libraries/System.Data.Common/src/Configurations.props +++ b/src/libraries/System.Data.Common/src/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Data.Common/src/System.Data.Common.csproj b/src/libraries/System.Data.Common/src/System.Data.Common.csproj index 418b062d163b1..ae8deb1e7582e 100644 --- a/src/libraries/System.Data.Common/src/System.Data.Common.csproj +++ b/src/libraries/System.Data.Common/src/System.Data.Common.csproj @@ -4,7 +4,7 @@ true $(NoWarn);CS1573 AnyCPU - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release diff --git a/src/libraries/System.Data.Common/tests/Configurations.props b/src/libraries/System.Data.Common/tests/Configurations.props index 55d2de1d23f8d..7ac45c966c456 100644 --- a/src/libraries/System.Data.Common/tests/Configurations.props +++ b/src/libraries/System.Data.Common/tests/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Data.Common/tests/System.Data.Common.Tests.csproj b/src/libraries/System.Data.Common/tests/System.Data.Common.Tests.csproj index 77548d0813b6d..ada40ba7edd0d 100644 --- a/src/libraries/System.Data.Common/tests/System.Data.Common.Tests.csproj +++ b/src/libraries/System.Data.Common/tests/System.Data.Common.Tests.csproj @@ -2,7 +2,7 @@ 0168,0169,0414,0219,0649 true - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release diff --git a/src/libraries/System.Data.DataSetExtensions/System.Data.DataSetExtensions.sln b/src/libraries/System.Data.DataSetExtensions/System.Data.DataSetExtensions.sln index 9ed643e9b3ad9..04e4b235efd08 100644 --- a/src/libraries/System.Data.DataSetExtensions/System.Data.DataSetExtensions.sln +++ b/src/libraries/System.Data.DataSetExtensions/System.Data.DataSetExtensions.sln @@ -26,18 +26,18 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {2B38992F-9979-485F-B104-38C476D0B706}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {2B38992F-9979-485F-B104-38C476D0B706}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {2B38992F-9979-485F-B104-38C476D0B706}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {2B38992F-9979-485F-B104-38C476D0B706}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU - {50D18478-BE75-4F54-8080-A5C3047D776B}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {50D18478-BE75-4F54-8080-A5C3047D776B}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {50D18478-BE75-4F54-8080-A5C3047D776B}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {50D18478-BE75-4F54-8080-A5C3047D776B}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU - {50A5A8BC-C6A9-4000-8B52-667BEE00459D}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {50A5A8BC-C6A9-4000-8B52-667BEE00459D}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {50A5A8BC-C6A9-4000-8B52-667BEE00459D}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {50A5A8BC-C6A9-4000-8B52-667BEE00459D}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU + {2B38992F-9979-485F-B104-38C476D0B706}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {2B38992F-9979-485F-B104-38C476D0B706}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {2B38992F-9979-485F-B104-38C476D0B706}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {2B38992F-9979-485F-B104-38C476D0B706}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU + {50D18478-BE75-4F54-8080-A5C3047D776B}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {50D18478-BE75-4F54-8080-A5C3047D776B}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {50D18478-BE75-4F54-8080-A5C3047D776B}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {50D18478-BE75-4F54-8080-A5C3047D776B}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU + {50A5A8BC-C6A9-4000-8B52-667BEE00459D}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {50A5A8BC-C6A9-4000-8B52-667BEE00459D}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {50A5A8BC-C6A9-4000-8B52-667BEE00459D}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {50A5A8BC-C6A9-4000-8B52-667BEE00459D}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/src/libraries/System.Data.DataSetExtensions/ref/Configurations.props b/src/libraries/System.Data.DataSetExtensions/ref/Configurations.props index 55d2de1d23f8d..7ac45c966c456 100644 --- a/src/libraries/System.Data.DataSetExtensions/ref/Configurations.props +++ b/src/libraries/System.Data.DataSetExtensions/ref/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Data.DataSetExtensions/ref/System.Data.DataSetExtensions.csproj b/src/libraries/System.Data.DataSetExtensions/ref/System.Data.DataSetExtensions.csproj index 9c1d0f7d637a3..2cd636b2265f5 100644 --- a/src/libraries/System.Data.DataSetExtensions/ref/System.Data.DataSetExtensions.csproj +++ b/src/libraries/System.Data.DataSetExtensions/ref/System.Data.DataSetExtensions.csproj @@ -1,6 +1,6 @@ - netcoreapp-Debug;netcoreapp-Release;netstandard2.0-Debug;netstandard2.0-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release;netstandard2.0-Debug;netstandard2.0-Release diff --git a/src/libraries/System.Data.DataSetExtensions/src/Configurations.props b/src/libraries/System.Data.DataSetExtensions/src/Configurations.props index 55d2de1d23f8d..7ac45c966c456 100644 --- a/src/libraries/System.Data.DataSetExtensions/src/Configurations.props +++ b/src/libraries/System.Data.DataSetExtensions/src/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Data.DataSetExtensions/src/System.Data.DataSetExtensions.csproj b/src/libraries/System.Data.DataSetExtensions/src/System.Data.DataSetExtensions.csproj index 88a7749231177..5271a90384a37 100644 --- a/src/libraries/System.Data.DataSetExtensions/src/System.Data.DataSetExtensions.csproj +++ b/src/libraries/System.Data.DataSetExtensions/src/System.Data.DataSetExtensions.csproj @@ -1,7 +1,7 @@ System.Data.DataSetExtensions - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release true diff --git a/src/libraries/System.Data.DataSetExtensions/tests/Configurations.props b/src/libraries/System.Data.DataSetExtensions/tests/Configurations.props index 55d2de1d23f8d..7ac45c966c456 100644 --- a/src/libraries/System.Data.DataSetExtensions/tests/Configurations.props +++ b/src/libraries/System.Data.DataSetExtensions/tests/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Data.DataSetExtensions/tests/System.Data.DataSetExtensions.Tests.csproj b/src/libraries/System.Data.DataSetExtensions/tests/System.Data.DataSetExtensions.Tests.csproj index b8013d066eb92..ab9920f017b21 100644 --- a/src/libraries/System.Data.DataSetExtensions/tests/System.Data.DataSetExtensions.Tests.csproj +++ b/src/libraries/System.Data.DataSetExtensions/tests/System.Data.DataSetExtensions.Tests.csproj @@ -1,6 +1,6 @@ - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release diff --git a/src/libraries/System.Data.Odbc/System.Data.Odbc.sln b/src/libraries/System.Data.Odbc/System.Data.Odbc.sln index 33ee95d97e3c3..3212fdb3ddd45 100644 --- a/src/libraries/System.Data.Odbc/System.Data.Odbc.sln +++ b/src/libraries/System.Data.Odbc/System.Data.Odbc.sln @@ -26,14 +26,14 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {F3E72F35-0351-4D67-2209-725BCAD807BA}.Debug|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Debug|Any CPU - {F3E72F35-0351-4D67-2209-725BCAD807BA}.Debug|Any CPU.Build.0 = netcoreapp-Windows_NT-Debug|Any CPU - {F3E72F35-0351-4D67-2209-725BCAD807BA}.Release|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Release|Any CPU - {F3E72F35-0351-4D67-2209-725BCAD807BA}.Release|Any CPU.Build.0 = netcoreapp-Windows_NT-Release|Any CPU - {7BAD100F-AD6B-490A-AF7C-8E3854E812C0}.Debug|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Debug|Any CPU - {7BAD100F-AD6B-490A-AF7C-8E3854E812C0}.Debug|Any CPU.Build.0 = netcoreapp-Windows_NT-Debug|Any CPU - {7BAD100F-AD6B-490A-AF7C-8E3854E812C0}.Release|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Release|Any CPU - {7BAD100F-AD6B-490A-AF7C-8E3854E812C0}.Release|Any CPU.Build.0 = netcoreapp-Windows_NT-Release|Any CPU + {F3E72F35-0351-4D67-2209-725BCAD807BA}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Debug|Any CPU + {F3E72F35-0351-4D67-2209-725BCAD807BA}.Debug|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Debug|Any CPU + {F3E72F35-0351-4D67-2209-725BCAD807BA}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Release|Any CPU + {F3E72F35-0351-4D67-2209-725BCAD807BA}.Release|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Release|Any CPU + {7BAD100F-AD6B-490A-AF7C-8E3854E812C0}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Debug|Any CPU + {7BAD100F-AD6B-490A-AF7C-8E3854E812C0}.Debug|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Debug|Any CPU + {7BAD100F-AD6B-490A-AF7C-8E3854E812C0}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Release|Any CPU + {7BAD100F-AD6B-490A-AF7C-8E3854E812C0}.Release|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Release|Any CPU {D589374B-3331-4660-8DFB-512D66F8EC63}.Debug|Any CPU.ActiveCfg = netstandard2.0-Debug|Any CPU {D589374B-3331-4660-8DFB-512D66F8EC63}.Debug|Any CPU.Build.0 = netstandard2.0-Debug|Any CPU {D589374B-3331-4660-8DFB-512D66F8EC63}.Release|Any CPU.ActiveCfg = netstandard2.0-Release|Any CPU diff --git a/src/libraries/System.Data.Odbc/ref/Configurations.props b/src/libraries/System.Data.Odbc/ref/Configurations.props index e34056edb775c..b4029b347f0a2 100644 --- a/src/libraries/System.Data.Odbc/ref/Configurations.props +++ b/src/libraries/System.Data.Odbc/ref/Configurations.props @@ -2,7 +2,7 @@ netstandard2.0; - netfx; + $(NetFrameworkCurrent); net461; diff --git a/src/libraries/System.Data.Odbc/ref/System.Data.Odbc.csproj b/src/libraries/System.Data.Odbc/ref/System.Data.Odbc.csproj index 901ffa53458c7..5c4a834b6d4f0 100644 --- a/src/libraries/System.Data.Odbc/ref/System.Data.Odbc.csproj +++ b/src/libraries/System.Data.Odbc/ref/System.Data.Odbc.csproj @@ -1,7 +1,7 @@ true - net461-Debug;net461-Release;netfx-Debug;netfx-Release;netstandard2.0-Debug;netstandard2.0-Release + net461-Debug;net461-Release;$(NetFrameworkCurrent)-Debug;$(NetFrameworkCurrent)-Release;netstandard2.0-Debug;netstandard2.0-Release diff --git a/src/libraries/System.Data.Odbc/src/Configurations.props b/src/libraries/System.Data.Odbc/src/Configurations.props index 27e8e5bfba839..f61ae46c039b2 100644 --- a/src/libraries/System.Data.Odbc/src/Configurations.props +++ b/src/libraries/System.Data.Odbc/src/Configurations.props @@ -10,11 +10,11 @@ $(PackageConfigurations) - netcoreapp-FreeBSD; - netcoreapp-Linux; - netcoreapp-OSX; - netcoreapp-Windows_NT; - netfx-Windows_NT; + $(NetCoreAppCurrent)-FreeBSD; + $(NetCoreAppCurrent)-Linux; + $(NetCoreAppCurrent)-OSX; + $(NetCoreAppCurrent)-Windows_NT; + $(NetFrameworkCurrent)-Windows_NT; diff --git a/src/libraries/System.Data.Odbc/src/MatchingRefApiCompatBaseline.txt b/src/libraries/System.Data.Odbc/src/MatchingRefApiCompatBaseline.txt index 9bc9bf03074e6..804d1ccd5c9c9 100644 --- a/src/libraries/System.Data.Odbc/src/MatchingRefApiCompatBaseline.txt +++ b/src/libraries/System.Data.Odbc/src/MatchingRefApiCompatBaseline.txt @@ -1,6 +1,6 @@ # Exposed publicly only in implementation for serialization compat TypesMustExist : Type 'System.Data.Odbc.ODBC32' does not exist in the reference but it does exist in the implementation. -# Cannot be exposed in the ref yet as it is new API that doesn't exist in netfx +# Cannot be exposed in the ref yet as it is new API that doesn't exist in net472 MembersMustExist : Member 'System.Data.Odbc.OdbcParameter.Offset.get()' does not exist in the reference but it does exist in the implementation. MembersMustExist : Member 'System.Data.Odbc.OdbcParameter.Offset.set(System.Int32)' does not exist in the reference but it does exist in the implementation. diff --git a/src/libraries/System.Data.Odbc/src/System.Data.Odbc.csproj b/src/libraries/System.Data.Odbc/src/System.Data.Odbc.csproj index b45ea69013974..9113a4ee995d1 100644 --- a/src/libraries/System.Data.Odbc/src/System.Data.Odbc.csproj +++ b/src/libraries/System.Data.Odbc/src/System.Data.Odbc.csproj @@ -4,7 +4,7 @@ true true SR.Odbc_PlatformNotSupported - net461-Windows_NT-Debug;net461-Windows_NT-Release;netcoreapp-FreeBSD-Debug;netcoreapp-FreeBSD-Release;netcoreapp-Linux-Debug;netcoreapp-Linux-Release;netcoreapp-OSX-Debug;netcoreapp-OSX-Release;netcoreapp-Windows_NT-Debug;netcoreapp-Windows_NT-Release;netcoreapp2.0-FreeBSD-Debug;netcoreapp2.0-FreeBSD-Release;netcoreapp2.0-Linux-Debug;netcoreapp2.0-Linux-Release;netcoreapp2.0-OSX-Debug;netcoreapp2.0-OSX-Release;netcoreapp2.0-Windows_NT-Debug;netcoreapp2.0-Windows_NT-Release;netfx-Windows_NT-Debug;netfx-Windows_NT-Release;netstandard2.0-Debug;netstandard2.0-Release + net461-Windows_NT-Debug;net461-Windows_NT-Release;$(NetCoreAppCurrent)-FreeBSD-Debug;$(NetCoreAppCurrent)-FreeBSD-Release;$(NetCoreAppCurrent)-Linux-Debug;$(NetCoreAppCurrent)-Linux-Release;$(NetCoreAppCurrent)-OSX-Debug;$(NetCoreAppCurrent)-OSX-Release;$(NetCoreAppCurrent)-Windows_NT-Debug;$(NetCoreAppCurrent)-Windows_NT-Release;netcoreapp2.0-FreeBSD-Debug;netcoreapp2.0-FreeBSD-Release;netcoreapp2.0-Linux-Debug;netcoreapp2.0-Linux-Release;netcoreapp2.0-OSX-Debug;netcoreapp2.0-OSX-Release;netcoreapp2.0-Windows_NT-Debug;netcoreapp2.0-Windows_NT-Release;$(NetFrameworkCurrent)-Windows_NT-Debug;$(NetFrameworkCurrent)-Windows_NT-Release;netstandard2.0-Debug;netstandard2.0-Release diff --git a/src/libraries/System.Data.Odbc/tests/Configurations.props b/src/libraries/System.Data.Odbc/tests/Configurations.props index 88f254cfa6fa2..7bcf574dfe24b 100644 --- a/src/libraries/System.Data.Odbc/tests/Configurations.props +++ b/src/libraries/System.Data.Odbc/tests/Configurations.props @@ -1,11 +1,11 @@  - netcoreapp-FreeBSD; - netcoreapp-Linux; - netcoreapp-OSX; - netcoreapp-Windows_NT; - netfx-Windows_NT; + $(NetCoreAppCurrent)-FreeBSD; + $(NetCoreAppCurrent)-Linux; + $(NetCoreAppCurrent)-OSX; + $(NetCoreAppCurrent)-Windows_NT; + $(NetFrameworkCurrent)-Windows_NT; diff --git a/src/libraries/System.Data.Odbc/tests/System.Data.Odbc.Tests.csproj b/src/libraries/System.Data.Odbc/tests/System.Data.Odbc.Tests.csproj index 9b4e58084b420..9d5b6afc8ebce 100644 --- a/src/libraries/System.Data.Odbc/tests/System.Data.Odbc.Tests.csproj +++ b/src/libraries/System.Data.Odbc/tests/System.Data.Odbc.Tests.csproj @@ -1,7 +1,7 @@ $(DefineConstants);TargetsWindows - netcoreapp-FreeBSD-Debug;netcoreapp-FreeBSD-Release;netcoreapp-Linux-Debug;netcoreapp-Linux-Release;netcoreapp-OSX-Debug;netcoreapp-OSX-Release;netcoreapp-Windows_NT-Debug;netcoreapp-Windows_NT-Release;netfx-Windows_NT-Debug;netfx-Windows_NT-Release + $(NetCoreAppCurrent)-FreeBSD-Debug;$(NetCoreAppCurrent)-FreeBSD-Release;$(NetCoreAppCurrent)-Linux-Debug;$(NetCoreAppCurrent)-Linux-Release;$(NetCoreAppCurrent)-OSX-Debug;$(NetCoreAppCurrent)-OSX-Release;$(NetCoreAppCurrent)-Windows_NT-Debug;$(NetCoreAppCurrent)-Windows_NT-Release;$(NetFrameworkCurrent)-Windows_NT-Debug;$(NetFrameworkCurrent)-Windows_NT-Release diff --git a/src/libraries/System.Data.OleDb/System.Data.Oledb.sln b/src/libraries/System.Data.OleDb/System.Data.Oledb.sln index 61636b6e1aa0f..93dbde5607ff8 100644 --- a/src/libraries/System.Data.OleDb/System.Data.Oledb.sln +++ b/src/libraries/System.Data.OleDb/System.Data.Oledb.sln @@ -26,10 +26,10 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {73C7A14F-C3C5-44EA-AB02-05BFBA55722C}.Debug|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Debug|Any CPU - {73C7A14F-C3C5-44EA-AB02-05BFBA55722C}.Debug|Any CPU.Build.0 = netcoreapp-Windows_NT-Debug|Any CPU - {73C7A14F-C3C5-44EA-AB02-05BFBA55722C}.Release|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Release|Any CPU - {73C7A14F-C3C5-44EA-AB02-05BFBA55722C}.Release|Any CPU.Build.0 = netcoreapp-Windows_NT-Release|Any CPU + {73C7A14F-C3C5-44EA-AB02-05BFBA55722C}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Debug|Any CPU + {73C7A14F-C3C5-44EA-AB02-05BFBA55722C}.Debug|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Debug|Any CPU + {73C7A14F-C3C5-44EA-AB02-05BFBA55722C}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Release|Any CPU + {73C7A14F-C3C5-44EA-AB02-05BFBA55722C}.Release|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Release|Any CPU {D909B69D-8F3B-4551-A355-8FFF6A308CF6}.Debug|Any CPU.ActiveCfg = netstandard2.0-Windows_NT-Debug|Any CPU {D909B69D-8F3B-4551-A355-8FFF6A308CF6}.Debug|Any CPU.Build.0 = netstandard2.0-Windows_NT-Debug|Any CPU {D909B69D-8F3B-4551-A355-8FFF6A308CF6}.Release|Any CPU.ActiveCfg = netstandard2.0-Windows_NT-Release|Any CPU diff --git a/src/libraries/System.Data.OleDb/ref/Configurations.props b/src/libraries/System.Data.OleDb/ref/Configurations.props index 23a6cc8aaed2a..66ac0580b8ad4 100644 --- a/src/libraries/System.Data.OleDb/ref/Configurations.props +++ b/src/libraries/System.Data.OleDb/ref/Configurations.props @@ -6,7 +6,7 @@ $(PackageConfigurations); - netfx + $(NetFrameworkCurrent); \ No newline at end of file diff --git a/src/libraries/System.Data.OleDb/ref/System.Data.OleDb.csproj b/src/libraries/System.Data.OleDb/ref/System.Data.OleDb.csproj index 18ac77b1dbf9d..98d4b356ace52 100644 --- a/src/libraries/System.Data.OleDb/ref/System.Data.OleDb.csproj +++ b/src/libraries/System.Data.OleDb/ref/System.Data.OleDb.csproj @@ -1,7 +1,7 @@ true - net461-Debug;net461-Release;netfx-Debug;netfx-Release;netstandard2.0-Debug;netstandard2.0-Release + net461-Debug;net461-Release;$(NetFrameworkCurrent)-Debug;$(NetFrameworkCurrent)-Release;netstandard2.0-Debug;netstandard2.0-Release $(NoWarn);0618 diff --git a/src/libraries/System.Data.OleDb/src/Configurations.props b/src/libraries/System.Data.OleDb/src/Configurations.props index 3751609c9876c..a37ba68cc7613 100644 --- a/src/libraries/System.Data.OleDb/src/Configurations.props +++ b/src/libraries/System.Data.OleDb/src/Configurations.props @@ -7,7 +7,7 @@ $(PackageConfigurations); - netfx-Windows_NT; + $(NetFrameworkCurrent)-Windows_NT; \ No newline at end of file diff --git a/src/libraries/System.Data.OleDb/src/System.Data.OleDb.csproj b/src/libraries/System.Data.OleDb/src/System.Data.OleDb.csproj index 3c740bce963bf..55b8fda937ec4 100644 --- a/src/libraries/System.Data.OleDb/src/System.Data.OleDb.csproj +++ b/src/libraries/System.Data.OleDb/src/System.Data.OleDb.csproj @@ -5,7 +5,7 @@ true SR.PlatformNotSupported_OleDb $(NoWarn);CS0618 - net461-Windows_NT-Debug;net461-Windows_NT-Release;netfx-Windows_NT-Debug;netfx-Windows_NT-Release;netstandard2.0-Debug;netstandard2.0-Release;netstandard2.0-Windows_NT-Debug;netstandard2.0-Windows_NT-Release + net461-Windows_NT-Debug;net461-Windows_NT-Release;$(NetFrameworkCurrent)-Windows_NT-Debug;$(NetFrameworkCurrent)-Windows_NT-Release;netstandard2.0-Debug;netstandard2.0-Release;netstandard2.0-Windows_NT-Debug;netstandard2.0-Windows_NT-Release true diff --git a/src/libraries/System.Data.OleDb/tests/Configurations.props b/src/libraries/System.Data.OleDb/tests/Configurations.props index d2b1d4d5d8613..d4f49616fbdcb 100644 --- a/src/libraries/System.Data.OleDb/tests/Configurations.props +++ b/src/libraries/System.Data.OleDb/tests/Configurations.props @@ -1,8 +1,8 @@  - netcoreapp-Windows_NT; - netfx-Windows_NT; + $(NetCoreAppCurrent)-Windows_NT; + $(NetFrameworkCurrent)-Windows_NT; diff --git a/src/libraries/System.Data.OleDb/tests/System.Data.OleDb.Tests.csproj b/src/libraries/System.Data.OleDb/tests/System.Data.OleDb.Tests.csproj index c74531c1ebce7..5dfec3f24454c 100644 --- a/src/libraries/System.Data.OleDb/tests/System.Data.OleDb.Tests.csproj +++ b/src/libraries/System.Data.OleDb/tests/System.Data.OleDb.Tests.csproj @@ -1,6 +1,6 @@ - netcoreapp-Windows_NT-Debug;netcoreapp-Windows_NT-Release;netfx-Windows_NT-Debug;netfx-Windows_NT-Release + $(NetCoreAppCurrent)-Windows_NT-Debug;$(NetCoreAppCurrent)-Windows_NT-Release;$(NetFrameworkCurrent)-Windows_NT-Debug;$(NetFrameworkCurrent)-Windows_NT-Release diff --git a/src/libraries/System.Data.SqlClient/System.Data.SqlClient.sln b/src/libraries/System.Data.SqlClient/System.Data.SqlClient.sln index 54e999d8f1dcf..3d402955c175f 100644 --- a/src/libraries/System.Data.SqlClient/System.Data.SqlClient.sln +++ b/src/libraries/System.Data.SqlClient/System.Data.SqlClient.sln @@ -86,10 +86,10 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {F3E72F35-0351-4D67-9388-725BCAD807BA}.Debug|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Debug|Any CPU - {F3E72F35-0351-4D67-9388-725BCAD807BA}.Debug|Any CPU.Build.0 = netcoreapp-Windows_NT-Debug|Any CPU - {F3E72F35-0351-4D67-9388-725BCAD807BA}.Release|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Release|Any CPU - {F3E72F35-0351-4D67-9388-725BCAD807BA}.Release|Any CPU.Build.0 = netcoreapp-Windows_NT-Release|Any CPU + {F3E72F35-0351-4D67-9388-725BCAD807BA}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Debug|Any CPU + {F3E72F35-0351-4D67-9388-725BCAD807BA}.Debug|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Debug|Any CPU + {F3E72F35-0351-4D67-9388-725BCAD807BA}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Release|Any CPU + {F3E72F35-0351-4D67-9388-725BCAD807BA}.Release|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Release|Any CPU {D1392B54-998A-4F27-BC17-4CE149117BCC}.Debug|Any CPU.ActiveCfg = netstandard2.0-Debug|Any CPU {D1392B54-998A-4F27-BC17-4CE149117BCC}.Debug|Any CPU.Build.0 = netstandard2.0-Debug|Any CPU {D1392B54-998A-4F27-BC17-4CE149117BCC}.Release|Any CPU.ActiveCfg = netstandard2.0-Release|Any CPU @@ -106,26 +106,26 @@ Global {E0A6BB21-574B-43D9-890D-6E1144F2EE9E}.Debug|Any CPU.Build.0 = netstandard2.0-Debug|Any CPU {E0A6BB21-574B-43D9-890D-6E1144F2EE9E}.Release|Any CPU.ActiveCfg = netstandard2.0-Release|Any CPU {E0A6BB21-574B-43D9-890D-6E1144F2EE9E}.Release|Any CPU.Build.0 = netstandard2.0-Release|Any CPU - {45DB5F86-7AE3-45C6-870D-F9357B66BDB5}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {45DB5F86-7AE3-45C6-870D-F9357B66BDB5}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {45DB5F86-7AE3-45C6-870D-F9357B66BDB5}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {45DB5F86-7AE3-45C6-870D-F9357B66BDB5}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU + {45DB5F86-7AE3-45C6-870D-F9357B66BDB5}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {45DB5F86-7AE3-45C6-870D-F9357B66BDB5}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {45DB5F86-7AE3-45C6-870D-F9357B66BDB5}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {45DB5F86-7AE3-45C6-870D-F9357B66BDB5}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU {AF78BA88-6428-47EA-8682-442DAF8E9656}.Debug|Any CPU.ActiveCfg = netstandard2.0-Windows_NT-Debug|Any CPU {AF78BA88-6428-47EA-8682-442DAF8E9656}.Debug|Any CPU.Build.0 = netstandard2.0-Windows_NT-Debug|Any CPU {AF78BA88-6428-47EA-8682-442DAF8E9656}.Release|Any CPU.ActiveCfg = netstandard2.0-Windows_NT-Release|Any CPU {AF78BA88-6428-47EA-8682-442DAF8E9656}.Release|Any CPU.Build.0 = netstandard2.0-Windows_NT-Release|Any CPU - {B94B8E6D-3E41-4046-B758-4A2E281F74EE}.Debug|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Debug|Any CPU - {B94B8E6D-3E41-4046-B758-4A2E281F74EE}.Debug|Any CPU.Build.0 = netcoreapp-Windows_NT-Debug|Any CPU - {B94B8E6D-3E41-4046-B758-4A2E281F74EE}.Release|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Release|Any CPU - {B94B8E6D-3E41-4046-B758-4A2E281F74EE}.Release|Any CPU.Build.0 = netcoreapp-Windows_NT-Release|Any CPU - {518A4E22-0144-4699-80AE-757B744E8E38}.Debug|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Debug|Any CPU - {518A4E22-0144-4699-80AE-757B744E8E38}.Debug|Any CPU.Build.0 = netcoreapp-Windows_NT-Debug|Any CPU - {518A4E22-0144-4699-80AE-757B744E8E38}.Release|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Release|Any CPU - {518A4E22-0144-4699-80AE-757B744E8E38}.Release|Any CPU.Build.0 = netcoreapp-Windows_NT-Release|Any CPU - {529B187A-DE4F-4F4D-9FBB-D3D416FDB683}.Debug|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Debug|Any CPU - {529B187A-DE4F-4F4D-9FBB-D3D416FDB683}.Debug|Any CPU.Build.0 = netcoreapp-Windows_NT-Debug|Any CPU - {529B187A-DE4F-4F4D-9FBB-D3D416FDB683}.Release|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Release|Any CPU - {529B187A-DE4F-4F4D-9FBB-D3D416FDB683}.Release|Any CPU.Build.0 = netcoreapp-Windows_NT-Release|Any CPU + {B94B8E6D-3E41-4046-B758-4A2E281F74EE}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Debug|Any CPU + {B94B8E6D-3E41-4046-B758-4A2E281F74EE}.Debug|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Debug|Any CPU + {B94B8E6D-3E41-4046-B758-4A2E281F74EE}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Release|Any CPU + {B94B8E6D-3E41-4046-B758-4A2E281F74EE}.Release|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Release|Any CPU + {518A4E22-0144-4699-80AE-757B744E8E38}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Debug|Any CPU + {518A4E22-0144-4699-80AE-757B744E8E38}.Debug|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Debug|Any CPU + {518A4E22-0144-4699-80AE-757B744E8E38}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Release|Any CPU + {518A4E22-0144-4699-80AE-757B744E8E38}.Release|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Release|Any CPU + {529B187A-DE4F-4F4D-9FBB-D3D416FDB683}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Debug|Any CPU + {529B187A-DE4F-4F4D-9FBB-D3D416FDB683}.Debug|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Debug|Any CPU + {529B187A-DE4F-4F4D-9FBB-D3D416FDB683}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Release|Any CPU + {529B187A-DE4F-4F4D-9FBB-D3D416FDB683}.Release|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Release|Any CPU {1FF891B4-D3DE-4CCE-887C-CB48F5351A45}.Debug|Any CPU.ActiveCfg = netstandard2.0-Windows_NT-Debug|Any CPU {1FF891B4-D3DE-4CCE-887C-CB48F5351A45}.Debug|Any CPU.Build.0 = netstandard2.0-Windows_NT-Debug|Any CPU {1FF891B4-D3DE-4CCE-887C-CB48F5351A45}.Release|Any CPU.ActiveCfg = netstandard2.0-Windows_NT-Release|Any CPU @@ -138,14 +138,14 @@ Global {8DC9D1A0-351B-47BC-A90F-B9DA542550E9}.Debug|Any CPU.Build.0 = netstandard2.0-Windows_NT-Debug|Any CPU {8DC9D1A0-351B-47BC-A90F-B9DA542550E9}.Release|Any CPU.ActiveCfg = netstandard2.0-Windows_NT-Release|Any CPU {8DC9D1A0-351B-47BC-A90F-B9DA542550E9}.Release|Any CPU.Build.0 = netstandard2.0-Windows_NT-Release|Any CPU - {D4550556-4745-457F-BA8F-3EBF3836D6B4}.Debug|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Debug|Any CPU - {D4550556-4745-457F-BA8F-3EBF3836D6B4}.Debug|Any CPU.Build.0 = netcoreapp-Windows_NT-Debug|Any CPU - {D4550556-4745-457F-BA8F-3EBF3836D6B4}.Release|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Release|Any CPU - {D4550556-4745-457F-BA8F-3EBF3836D6B4}.Release|Any CPU.Build.0 = netcoreapp-Windows_NT-Release|Any CPU - {D58E8D2B-3331-4660-8DFB-512D66F8EC63}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {D58E8D2B-3331-4660-8DFB-512D66F8EC63}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {D58E8D2B-3331-4660-8DFB-512D66F8EC63}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {D58E8D2B-3331-4660-8DFB-512D66F8EC63}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU + {D4550556-4745-457F-BA8F-3EBF3836D6B4}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Debug|Any CPU + {D4550556-4745-457F-BA8F-3EBF3836D6B4}.Debug|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Debug|Any CPU + {D4550556-4745-457F-BA8F-3EBF3836D6B4}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Release|Any CPU + {D4550556-4745-457F-BA8F-3EBF3836D6B4}.Release|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Release|Any CPU + {D58E8D2B-3331-4660-8DFB-512D66F8EC63}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {D58E8D2B-3331-4660-8DFB-512D66F8EC63}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {D58E8D2B-3331-4660-8DFB-512D66F8EC63}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {D58E8D2B-3331-4660-8DFB-512D66F8EC63}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/src/libraries/System.Data.SqlClient/ref/Configurations.props b/src/libraries/System.Data.SqlClient/ref/Configurations.props index 67f665391a7c8..96cab88710d6a 100644 --- a/src/libraries/System.Data.SqlClient/ref/Configurations.props +++ b/src/libraries/System.Data.SqlClient/ref/Configurations.props @@ -5,7 +5,7 @@ $(PackageConfigurations) - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Data.SqlClient/ref/System.Data.SqlClient.csproj b/src/libraries/System.Data.SqlClient/ref/System.Data.SqlClient.csproj index 3d9a54ff9f830..614bae71d72f1 100644 --- a/src/libraries/System.Data.SqlClient/ref/System.Data.SqlClient.csproj +++ b/src/libraries/System.Data.SqlClient/ref/System.Data.SqlClient.csproj @@ -1,6 +1,6 @@ - netcoreapp-Debug;netcoreapp-Release;netcoreapp2.1-Debug;netcoreapp2.1-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release;netcoreapp2.1-Debug;netcoreapp2.1-Release @@ -18,7 +18,7 @@ - + diff --git a/src/libraries/System.Data.SqlClient/src/Configurations.props b/src/libraries/System.Data.SqlClient/src/Configurations.props index c1bd3428a27ae..3e86819ce3255 100644 --- a/src/libraries/System.Data.SqlClient/src/Configurations.props +++ b/src/libraries/System.Data.SqlClient/src/Configurations.props @@ -9,10 +9,10 @@ $(PackageConfigurations) - netcoreapp; - netcoreapp-Unix; - netcoreapp-Windows_NT; - _netfx-Windows_NT; + $(NetCoreAppCurrent); + $(NetCoreAppCurrent)-Unix; + $(NetCoreAppCurrent)-Windows_NT; + _$(NetFrameworkCurrent)-Windows_NT; \ No newline at end of file diff --git a/src/libraries/System.Data.SqlClient/src/System.Data.SqlClient.csproj b/src/libraries/System.Data.SqlClient/src/System.Data.SqlClient.csproj index 235adc3db0756..d525343406888 100644 --- a/src/libraries/System.Data.SqlClient/src/System.Data.SqlClient.csproj +++ b/src/libraries/System.Data.SqlClient/src/System.Data.SqlClient.csproj @@ -6,10 +6,10 @@ SR.PlatformNotSupported_DataSqlClient 4.6.0.0 $(DefineConstants);NETSTANDARD2_0 - $(DefineConstants);FEATURE_TCPKEEPALIVE + $(DefineConstants);FEATURE_TCPKEEPALIVE annotations - $(DefineConstants);INTERNAL_NULLABLE_ATTRIBUTES - netcoreapp-Debug;netcoreapp-Release;netcoreapp-Unix-Debug;netcoreapp-Unix-Release;netcoreapp-Windows_NT-Debug;netcoreapp-Windows_NT-Release;netcoreapp2.1-Debug;netcoreapp2.1-Release;netcoreapp2.1-Unix-Debug;netcoreapp2.1-Unix-Release;netcoreapp2.1-Windows_NT-Debug;netcoreapp2.1-Windows_NT-Release;netstandard2.0-Unix-Debug;netstandard2.0-Unix-Release;netstandard2.0-Windows_NT-Debug;netstandard2.0-Windows_NT-Release; + $(DefineConstants);INTERNAL_NULLABLE_ATTRIBUTES + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release;$(NetCoreAppCurrent)-Unix-Debug;$(NetCoreAppCurrent)-Unix-Release;$(NetCoreAppCurrent)-Windows_NT-Debug;$(NetCoreAppCurrent)-Windows_NT-Release;netcoreapp2.1-Debug;netcoreapp2.1-Release;netcoreapp2.1-Unix-Debug;netcoreapp2.1-Unix-Release;netcoreapp2.1-Windows_NT-Debug;netcoreapp2.1-Windows_NT-Release;netstandard2.0-Unix-Debug;netstandard2.0-Unix-Release;netstandard2.0-Windows_NT-Debug;netstandard2.0-Windows_NT-Release; @@ -229,7 +229,7 @@ System\IO\PathInternal.Windows.cs - + Common\System\Runtime\InteropServices\SuppressGCTransitionAttribute.internal.cs diff --git a/src/libraries/System.Data.SqlClient/tests/FunctionalTests/Configurations.props b/src/libraries/System.Data.SqlClient/tests/FunctionalTests/Configurations.props index 42a40e420ac44..9f1e7e99d9d16 100644 --- a/src/libraries/System.Data.SqlClient/tests/FunctionalTests/Configurations.props +++ b/src/libraries/System.Data.SqlClient/tests/FunctionalTests/Configurations.props @@ -1,9 +1,9 @@ - netfx-Windows_NT; - netcoreapp-Unix; - netcoreapp-Windows_NT; + $(NetFrameworkCurrent)-Windows_NT; + $(NetCoreAppCurrent)-Unix; + $(NetCoreAppCurrent)-Windows_NT; \ No newline at end of file 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 4573bf83e3e5d..be14e74dab7ce 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 @@ -1,7 +1,7 @@ true - netcoreapp-Unix-Debug;netcoreapp-Unix-Release;netcoreapp-Windows_NT-Debug;netcoreapp-Windows_NT-Release;netfx-Windows_NT-Debug;netfx-Windows_NT-Release + $(NetCoreAppCurrent)-Unix-Debug;$(NetCoreAppCurrent)-Unix-Release;$(NetCoreAppCurrent)-Windows_NT-Debug;$(NetCoreAppCurrent)-Windows_NT-Release;$(NetFrameworkCurrent)-Windows_NT-Debug;$(NetFrameworkCurrent)-Windows_NT-Release diff --git a/src/libraries/System.Data.SqlClient/tests/ManualTests/Configurations.props b/src/libraries/System.Data.SqlClient/tests/ManualTests/Configurations.props index 89d6ac0f025b9..b6e0d3ce6383b 100644 --- a/src/libraries/System.Data.SqlClient/tests/ManualTests/Configurations.props +++ b/src/libraries/System.Data.SqlClient/tests/ManualTests/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Data.SqlClient/tests/ManualTests/System.Data.SqlClient.ManualTesting.Tests.csproj b/src/libraries/System.Data.SqlClient/tests/ManualTests/System.Data.SqlClient.ManualTesting.Tests.csproj index ec584d56415ff..2ad3478157fbe 100644 --- a/src/libraries/System.Data.SqlClient/tests/ManualTests/System.Data.SqlClient.ManualTesting.Tests.csproj +++ b/src/libraries/System.Data.SqlClient/tests/ManualTests/System.Data.SqlClient.ManualTesting.Tests.csproj @@ -1,6 +1,6 @@  - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release @@ -146,7 +146,7 @@ - + diff --git a/src/libraries/System.Data.SqlClient/tests/StressTests/System.Data.SqlClient.Stress.Tests/Configurations.props b/src/libraries/System.Data.SqlClient/tests/StressTests/System.Data.SqlClient.Stress.Tests/Configurations.props index c472e2acc9e28..f350311bc6865 100644 --- a/src/libraries/System.Data.SqlClient/tests/StressTests/System.Data.SqlClient.Stress.Tests/Configurations.props +++ b/src/libraries/System.Data.SqlClient/tests/StressTests/System.Data.SqlClient.Stress.Tests/Configurations.props @@ -1,9 +1,9 @@ - netcoreapp-Unix; - netcoreapp-Windows_NT; - netfx-Windows_NT; + $(NetCoreAppCurrent)-Unix; + $(NetCoreAppCurrent)-Windows_NT; + $(NetFrameworkCurrent)-Windows_NT; \ No newline at end of file diff --git a/src/libraries/System.Data.SqlClient/tests/StressTests/System.Data.SqlClient.Stress.Tests/System.Data.SqlClient.Stress.Tests.csproj b/src/libraries/System.Data.SqlClient/tests/StressTests/System.Data.SqlClient.Stress.Tests/System.Data.SqlClient.Stress.Tests.csproj index 64910317e785a..5cf78a86f4786 100644 --- a/src/libraries/System.Data.SqlClient/tests/StressTests/System.Data.SqlClient.Stress.Tests/System.Data.SqlClient.Stress.Tests.csproj +++ b/src/libraries/System.Data.SqlClient/tests/StressTests/System.Data.SqlClient.Stress.Tests/System.Data.SqlClient.Stress.Tests.csproj @@ -3,8 +3,8 @@ Stress.Data.SqlClient System.Data.SqlClient.Stress.Tests + $(NetCoreAppCurrent)-Unix-Debug;$(NetCoreAppCurrent)-Unix-Release;$(NetCoreAppCurrent)-Windows_NT-Debug;$(NetCoreAppCurrent)-Windows_NT-Release;$(NetFrameworkCurrent)-Windows_NT-Debug;$(NetFrameworkCurrent)-Windows_NT-Release true - netcoreapp-Unix-Debug;netcoreapp-Unix-Release;netcoreapp-Windows_NT-Debug;netcoreapp-Windows_NT-Release;netfx-Windows_NT-Debug;netfx-Windows_NT-Release diff --git a/src/libraries/System.Data.SqlClient/tests/StressTests/System.Data.StressFramework/Configurations.props b/src/libraries/System.Data.SqlClient/tests/StressTests/System.Data.StressFramework/Configurations.props index c472e2acc9e28..f350311bc6865 100644 --- a/src/libraries/System.Data.SqlClient/tests/StressTests/System.Data.StressFramework/Configurations.props +++ b/src/libraries/System.Data.SqlClient/tests/StressTests/System.Data.StressFramework/Configurations.props @@ -1,9 +1,9 @@ - netcoreapp-Unix; - netcoreapp-Windows_NT; - netfx-Windows_NT; + $(NetCoreAppCurrent)-Unix; + $(NetCoreAppCurrent)-Windows_NT; + $(NetFrameworkCurrent)-Windows_NT; \ No newline at end of file diff --git a/src/libraries/System.Data.SqlClient/tests/StressTests/System.Data.StressFramework/System.Data.StressFramework.csproj b/src/libraries/System.Data.SqlClient/tests/StressTests/System.Data.StressFramework/System.Data.StressFramework.csproj index b78ec11d996f5..76649bd53de1d 100644 --- a/src/libraries/System.Data.SqlClient/tests/StressTests/System.Data.StressFramework/System.Data.StressFramework.csproj +++ b/src/libraries/System.Data.SqlClient/tests/StressTests/System.Data.StressFramework/System.Data.StressFramework.csproj @@ -1,7 +1,7 @@ Stress.Data - netcoreapp-Unix-Debug;netcoreapp-Unix-Release;netcoreapp-Windows_NT-Debug;netcoreapp-Windows_NT-Release;netfx-Windows_NT-Debug;netfx-Windows_NT-Release + $(NetCoreAppCurrent)-Unix-Debug;$(NetCoreAppCurrent)-Unix-Release;$(NetCoreAppCurrent)-Windows_NT-Debug;$(NetCoreAppCurrent)-Windows_NT-Release;$(NetFrameworkCurrent)-Windows_NT-Debug;$(NetFrameworkCurrent)-Windows_NT-Release diff --git a/src/libraries/System.Data.SqlClient/tests/StressTests/System.Data.StressRunner/Configurations.props b/src/libraries/System.Data.SqlClient/tests/StressTests/System.Data.StressRunner/Configurations.props index c472e2acc9e28..f350311bc6865 100644 --- a/src/libraries/System.Data.SqlClient/tests/StressTests/System.Data.StressRunner/Configurations.props +++ b/src/libraries/System.Data.SqlClient/tests/StressTests/System.Data.StressRunner/Configurations.props @@ -1,9 +1,9 @@ - netcoreapp-Unix; - netcoreapp-Windows_NT; - netfx-Windows_NT; + $(NetCoreAppCurrent)-Unix; + $(NetCoreAppCurrent)-Windows_NT; + $(NetFrameworkCurrent)-Windows_NT; \ No newline at end of file diff --git a/src/libraries/System.Data.SqlClient/tests/StressTests/System.Data.StressRunner/System.Data.StressRunner.csproj b/src/libraries/System.Data.SqlClient/tests/StressTests/System.Data.StressRunner/System.Data.StressRunner.csproj index 6d9050afee44c..8978d128845de 100644 --- a/src/libraries/System.Data.SqlClient/tests/StressTests/System.Data.StressRunner/System.Data.StressRunner.csproj +++ b/src/libraries/System.Data.SqlClient/tests/StressTests/System.Data.StressRunner/System.Data.StressRunner.csproj @@ -3,7 +3,7 @@ DPStressHarness Exe 3021 - netcoreapp-Unix-Debug;netcoreapp-Unix-Release;netcoreapp-Windows_NT-Debug;netcoreapp-Windows_NT-Release;netfx-Windows_NT-Debug;netfx-Windows_NT-Release + $(NetCoreAppCurrent)-Unix-Debug;$(NetCoreAppCurrent)-Unix-Release;$(NetCoreAppCurrent)-Windows_NT-Debug;$(NetCoreAppCurrent)-Windows_NT-Release;$(NetFrameworkCurrent)-Windows_NT-Debug;$(NetFrameworkCurrent)-Windows_NT-Release diff --git a/src/libraries/System.Diagnostics.Contracts/System.Diagnostics.Contracts.sln b/src/libraries/System.Diagnostics.Contracts/System.Diagnostics.Contracts.sln index a006fc69ab1d7..33ab4c63a70e4 100644 --- a/src/libraries/System.Diagnostics.Contracts/System.Diagnostics.Contracts.sln +++ b/src/libraries/System.Diagnostics.Contracts/System.Diagnostics.Contracts.sln @@ -26,18 +26,18 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {0C4E7FF1-54C6-49B7-9700-18F5F3EB8E65}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {0C4E7FF1-54C6-49B7-9700-18F5F3EB8E65}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {0C4E7FF1-54C6-49B7-9700-18F5F3EB8E65}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {0C4E7FF1-54C6-49B7-9700-18F5F3EB8E65}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU - {13426B04-D1AC-4423-8519-F3EB44943B9D}.Debug|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Debug|Any CPU - {13426B04-D1AC-4423-8519-F3EB44943B9D}.Debug|Any CPU.Build.0 = netcoreapp-Windows_NT-Debug|Any CPU - {13426B04-D1AC-4423-8519-F3EB44943B9D}.Release|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Release|Any CPU - {13426B04-D1AC-4423-8519-F3EB44943B9D}.Release|Any CPU.Build.0 = netcoreapp-Windows_NT-Release|Any CPU - {5E0B1760-8753-467A-8B10-66B8994220DB}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {5E0B1760-8753-467A-8B10-66B8994220DB}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {5E0B1760-8753-467A-8B10-66B8994220DB}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {5E0B1760-8753-467A-8B10-66B8994220DB}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU + {0C4E7FF1-54C6-49B7-9700-18F5F3EB8E65}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {0C4E7FF1-54C6-49B7-9700-18F5F3EB8E65}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {0C4E7FF1-54C6-49B7-9700-18F5F3EB8E65}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {0C4E7FF1-54C6-49B7-9700-18F5F3EB8E65}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU + {13426B04-D1AC-4423-8519-F3EB44943B9D}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Debug|Any CPU + {13426B04-D1AC-4423-8519-F3EB44943B9D}.Debug|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Debug|Any CPU + {13426B04-D1AC-4423-8519-F3EB44943B9D}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Release|Any CPU + {13426B04-D1AC-4423-8519-F3EB44943B9D}.Release|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Release|Any CPU + {5E0B1760-8753-467A-8B10-66B8994220DB}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {5E0B1760-8753-467A-8B10-66B8994220DB}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {5E0B1760-8753-467A-8B10-66B8994220DB}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {5E0B1760-8753-467A-8B10-66B8994220DB}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/src/libraries/System.Diagnostics.Contracts/ref/Configurations.props b/src/libraries/System.Diagnostics.Contracts/ref/Configurations.props index 55d2de1d23f8d..7ac45c966c456 100644 --- a/src/libraries/System.Diagnostics.Contracts/ref/Configurations.props +++ b/src/libraries/System.Diagnostics.Contracts/ref/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Diagnostics.Contracts/ref/System.Diagnostics.Contracts.csproj b/src/libraries/System.Diagnostics.Contracts/ref/System.Diagnostics.Contracts.csproj index ff5eb1d148a87..fb78412f2a8a4 100644 --- a/src/libraries/System.Diagnostics.Contracts/ref/System.Diagnostics.Contracts.csproj +++ b/src/libraries/System.Diagnostics.Contracts/ref/System.Diagnostics.Contracts.csproj @@ -1,6 +1,6 @@ - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release enable diff --git a/src/libraries/System.Diagnostics.Contracts/src/Configurations.props b/src/libraries/System.Diagnostics.Contracts/src/Configurations.props index db389259c06b1..f3922475141ae 100644 --- a/src/libraries/System.Diagnostics.Contracts/src/Configurations.props +++ b/src/libraries/System.Diagnostics.Contracts/src/Configurations.props @@ -1,8 +1,8 @@  - netcoreapp-Windows_NT; - netcoreapp-Unix; + $(NetCoreAppCurrent)-Windows_NT; + $(NetCoreAppCurrent)-Unix; diff --git a/src/libraries/System.Diagnostics.Contracts/src/System.Diagnostics.Contracts.csproj b/src/libraries/System.Diagnostics.Contracts/src/System.Diagnostics.Contracts.csproj index ecde8c9a2b06b..e72ee814bae3c 100644 --- a/src/libraries/System.Diagnostics.Contracts/src/System.Diagnostics.Contracts.csproj +++ b/src/libraries/System.Diagnostics.Contracts/src/System.Diagnostics.Contracts.csproj @@ -2,7 +2,7 @@ System.Diagnostics.Contracts true - netcoreapp-Unix-Debug;netcoreapp-Unix-Release;netcoreapp-Windows_NT-Debug;netcoreapp-Windows_NT-Release + $(NetCoreAppCurrent)-Unix-Debug;$(NetCoreAppCurrent)-Unix-Release;$(NetCoreAppCurrent)-Windows_NT-Debug;$(NetCoreAppCurrent)-Windows_NT-Release diff --git a/src/libraries/System.Diagnostics.Contracts/tests/Configurations.props b/src/libraries/System.Diagnostics.Contracts/tests/Configurations.props index 55d2de1d23f8d..7ac45c966c456 100644 --- a/src/libraries/System.Diagnostics.Contracts/tests/Configurations.props +++ b/src/libraries/System.Diagnostics.Contracts/tests/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Diagnostics.Contracts/tests/System.Diagnostics.Contracts.Tests.csproj b/src/libraries/System.Diagnostics.Contracts/tests/System.Diagnostics.Contracts.Tests.csproj index 78f5b87103169..cce4715377200 100644 --- a/src/libraries/System.Diagnostics.Contracts/tests/System.Diagnostics.Contracts.Tests.csproj +++ b/src/libraries/System.Diagnostics.Contracts/tests/System.Diagnostics.Contracts.Tests.csproj @@ -1,6 +1,6 @@ - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release true diff --git a/src/libraries/System.Diagnostics.Debug/System.Diagnostics.Debug.sln b/src/libraries/System.Diagnostics.Debug/System.Diagnostics.Debug.sln index 431f9cf6fbc3d..46f31487afd92 100644 --- a/src/libraries/System.Diagnostics.Debug/System.Diagnostics.Debug.sln +++ b/src/libraries/System.Diagnostics.Debug/System.Diagnostics.Debug.sln @@ -26,18 +26,18 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {56F67E92-E606-435E-A00F-003CBFB26945}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {56F67E92-E606-435E-A00F-003CBFB26945}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {56F67E92-E606-435E-A00F-003CBFB26945}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {56F67E92-E606-435E-A00F-003CBFB26945}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU - {E7E8DE8A-9EC1-46A8-A6EE-727DB32DBEB8}.Debug|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Debug|Any CPU - {E7E8DE8A-9EC1-46A8-A6EE-727DB32DBEB8}.Debug|Any CPU.Build.0 = netcoreapp-Windows_NT-Debug|Any CPU - {E7E8DE8A-9EC1-46A8-A6EE-727DB32DBEB8}.Release|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Release|Any CPU - {E7E8DE8A-9EC1-46A8-A6EE-727DB32DBEB8}.Release|Any CPU.Build.0 = netcoreapp-Windows_NT-Release|Any CPU - {2CBC7A79-EDF5-4552-B25D-8E32E367571E}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {2CBC7A79-EDF5-4552-B25D-8E32E367571E}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {2CBC7A79-EDF5-4552-B25D-8E32E367571E}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {2CBC7A79-EDF5-4552-B25D-8E32E367571E}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU + {56F67E92-E606-435E-A00F-003CBFB26945}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {56F67E92-E606-435E-A00F-003CBFB26945}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {56F67E92-E606-435E-A00F-003CBFB26945}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {56F67E92-E606-435E-A00F-003CBFB26945}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU + {E7E8DE8A-9EC1-46A8-A6EE-727DB32DBEB8}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Debug|Any CPU + {E7E8DE8A-9EC1-46A8-A6EE-727DB32DBEB8}.Debug|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Debug|Any CPU + {E7E8DE8A-9EC1-46A8-A6EE-727DB32DBEB8}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Release|Any CPU + {E7E8DE8A-9EC1-46A8-A6EE-727DB32DBEB8}.Release|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Release|Any CPU + {2CBC7A79-EDF5-4552-B25D-8E32E367571E}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {2CBC7A79-EDF5-4552-B25D-8E32E367571E}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {2CBC7A79-EDF5-4552-B25D-8E32E367571E}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {2CBC7A79-EDF5-4552-B25D-8E32E367571E}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/src/libraries/System.Diagnostics.Debug/ref/Configurations.props b/src/libraries/System.Diagnostics.Debug/ref/Configurations.props index 55d2de1d23f8d..7ac45c966c456 100644 --- a/src/libraries/System.Diagnostics.Debug/ref/Configurations.props +++ b/src/libraries/System.Diagnostics.Debug/ref/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Diagnostics.Debug/ref/System.Diagnostics.Debug.csproj b/src/libraries/System.Diagnostics.Debug/ref/System.Diagnostics.Debug.csproj index 2ec7a40092dfe..d0f8dc24445b3 100644 --- a/src/libraries/System.Diagnostics.Debug/ref/System.Diagnostics.Debug.csproj +++ b/src/libraries/System.Diagnostics.Debug/ref/System.Diagnostics.Debug.csproj @@ -1,6 +1,6 @@ - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release enable diff --git a/src/libraries/System.Diagnostics.Debug/src/Configurations.props b/src/libraries/System.Diagnostics.Debug/src/Configurations.props index 7e12b46ca40c5..c31cf2a4495cf 100644 --- a/src/libraries/System.Diagnostics.Debug/src/Configurations.props +++ b/src/libraries/System.Diagnostics.Debug/src/Configurations.props @@ -1,8 +1,8 @@  - netcoreapp-Unix; - netcoreapp-Windows_NT; + $(NetCoreAppCurrent)-Unix; + $(NetCoreAppCurrent)-Windows_NT; diff --git a/src/libraries/System.Diagnostics.Debug/src/System.Diagnostics.Debug.csproj b/src/libraries/System.Diagnostics.Debug/src/System.Diagnostics.Debug.csproj index eb0408e1b1450..4f03a4df60adb 100644 --- a/src/libraries/System.Diagnostics.Debug/src/System.Diagnostics.Debug.csproj +++ b/src/libraries/System.Diagnostics.Debug/src/System.Diagnostics.Debug.csproj @@ -2,7 +2,7 @@ System.Diagnostics.Debug true - netcoreapp-Unix-Debug;netcoreapp-Unix-Release;netcoreapp-Windows_NT-Debug;netcoreapp-Windows_NT-Release + $(NetCoreAppCurrent)-Unix-Debug;$(NetCoreAppCurrent)-Unix-Release;$(NetCoreAppCurrent)-Windows_NT-Debug;$(NetCoreAppCurrent)-Windows_NT-Release diff --git a/src/libraries/System.Diagnostics.Debug/tests/Configurations.props b/src/libraries/System.Diagnostics.Debug/tests/Configurations.props index 55d2de1d23f8d..7ac45c966c456 100644 --- a/src/libraries/System.Diagnostics.Debug/tests/Configurations.props +++ b/src/libraries/System.Diagnostics.Debug/tests/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Diagnostics.Debug/tests/System.Diagnostics.Debug.Tests.csproj b/src/libraries/System.Diagnostics.Debug/tests/System.Diagnostics.Debug.Tests.csproj index 9baca4b370390..27f735d8edfec 100644 --- a/src/libraries/System.Diagnostics.Debug/tests/System.Diagnostics.Debug.Tests.csproj +++ b/src/libraries/System.Diagnostics.Debug/tests/System.Diagnostics.Debug.Tests.csproj @@ -4,7 +4,7 @@ System.Diagnostics.Tests true None - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release true diff --git a/src/libraries/System.Diagnostics.DiagnosticSource/System.Diagnostics.DiagnosticSource.sln b/src/libraries/System.Diagnostics.DiagnosticSource/System.Diagnostics.DiagnosticSource.sln index e933042e12378..0f4306b586d48 100644 --- a/src/libraries/System.Diagnostics.DiagnosticSource/System.Diagnostics.DiagnosticSource.sln +++ b/src/libraries/System.Diagnostics.DiagnosticSource/System.Diagnostics.DiagnosticSource.sln @@ -26,14 +26,14 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {A7922FA3-306A-41B9-B8DC-CC4DBE685A85}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {A7922FA3-306A-41B9-B8DC-CC4DBE685A85}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {A7922FA3-306A-41B9-B8DC-CC4DBE685A85}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {A7922FA3-306A-41B9-B8DC-CC4DBE685A85}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU - {F24D3391-2928-4E83-AADE-B34423498750}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {F24D3391-2928-4E83-AADE-B34423498750}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {F24D3391-2928-4E83-AADE-B34423498750}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {F24D3391-2928-4E83-AADE-B34423498750}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU + {A7922FA3-306A-41B9-B8DC-CC4DBE685A85}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {A7922FA3-306A-41B9-B8DC-CC4DBE685A85}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {A7922FA3-306A-41B9-B8DC-CC4DBE685A85}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {A7922FA3-306A-41B9-B8DC-CC4DBE685A85}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU + {F24D3391-2928-4E83-AADE-B34423498750}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {F24D3391-2928-4E83-AADE-B34423498750}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {F24D3391-2928-4E83-AADE-B34423498750}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {F24D3391-2928-4E83-AADE-B34423498750}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU {3DF9A5D5-3D4B-4378-9B55-CFA6AC0114D9}.Debug|Any CPU.ActiveCfg = netstandard2.0-Debug|Any CPU {3DF9A5D5-3D4B-4378-9B55-CFA6AC0114D9}.Debug|Any CPU.Build.0 = netstandard2.0-Debug|Any CPU {3DF9A5D5-3D4B-4378-9B55-CFA6AC0114D9}.Release|Any CPU.ActiveCfg = netstandard2.0-Release|Any CPU diff --git a/src/libraries/System.Diagnostics.DiagnosticSource/ref/Configurations.props b/src/libraries/System.Diagnostics.DiagnosticSource/ref/Configurations.props index 53a1fe3529b3e..839799ca7b0c5 100644 --- a/src/libraries/System.Diagnostics.DiagnosticSource/ref/Configurations.props +++ b/src/libraries/System.Diagnostics.DiagnosticSource/ref/Configurations.props @@ -8,7 +8,7 @@ $(PackageConfigurations); netstandard2.0; - netfx; + $(NetFrameworkCurrent); \ No newline at end of file diff --git a/src/libraries/System.Diagnostics.DiagnosticSource/ref/System.Diagnostics.DiagnosticSource.csproj b/src/libraries/System.Diagnostics.DiagnosticSource/ref/System.Diagnostics.DiagnosticSource.csproj index bca5df7184993..017f85c16fdb0 100644 --- a/src/libraries/System.Diagnostics.DiagnosticSource/ref/System.Diagnostics.DiagnosticSource.csproj +++ b/src/libraries/System.Diagnostics.DiagnosticSource/ref/System.Diagnostics.DiagnosticSource.csproj @@ -1,10 +1,10 @@ - net45-Debug;net45-Release;netfx-Debug;netfx-Release;netstandard2.0-Debug;netstandard2.0-Release;netstandard1.1-Debug;netstandard1.1-Release;netstandard1.3-Debug;netstandard1.3-Release + net45-Debug;net45-Release;$(NetFrameworkCurrent)-Debug;$(NetFrameworkCurrent)-Release;netstandard2.0-Debug;netstandard2.0-Release;netstandard1.1-Debug;netstandard1.1-Release;netstandard1.3-Debug;netstandard1.3-Release false enable - + $(DefineConstants);ALLOW_PARTIALLY_TRUSTED_CALLERS @@ -14,14 +14,14 @@ - + - + diff --git a/src/libraries/System.Diagnostics.DiagnosticSource/src/Configurations.props b/src/libraries/System.Diagnostics.DiagnosticSource/src/Configurations.props index 4c9741158f55a..6278dad0af5f6 100644 --- a/src/libraries/System.Diagnostics.DiagnosticSource/src/Configurations.props +++ b/src/libraries/System.Diagnostics.DiagnosticSource/src/Configurations.props @@ -8,9 +8,9 @@ $(PackageConfigurations); - netcoreapp; + $(NetCoreAppCurrent); netstandard2.0; - netfx; + $(NetFrameworkCurrent); \ No newline at end of file diff --git a/src/libraries/System.Diagnostics.DiagnosticSource/src/System.Diagnostics.DiagnosticSource.csproj b/src/libraries/System.Diagnostics.DiagnosticSource/src/System.Diagnostics.DiagnosticSource.csproj index 94022a3174f47..4edb574f45929 100644 --- a/src/libraries/System.Diagnostics.DiagnosticSource/src/System.Diagnostics.DiagnosticSource.csproj +++ b/src/libraries/System.Diagnostics.DiagnosticSource/src/System.Diagnostics.DiagnosticSource.csproj @@ -13,7 +13,7 @@ $(DefineConstants);EVENTSOURCE_ACTIVITY_SUPPORT $(DefineConstants);EVENTSOURCE_ENUMERATE_SUPPORT $(DefineConstants);ALLOW_PARTIALLY_TRUSTED_CALLERS;ENABLE_HTTP_HANDLER - net45-Debug;net45-Release;net46-Debug;net46-Release;netcoreapp-Debug;netcoreapp-Release;netfx-Debug;netfx-Release;netstandard2.0-Debug;netstandard2.0-Release;netstandard1.1-Debug;netstandard1.1-Release;netstandard1.3-Debug;netstandard1.3-Release + net45-Debug;net45-Release;net46-Debug;net46-Release;$(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release;$(NetFrameworkCurrent)-Debug;$(NetFrameworkCurrent)-Release;netstandard2.0-Debug;netstandard2.0-Release;netstandard1.1-Debug;netstandard1.1-Release;netstandard1.3-Debug;netstandard1.3-Release @@ -51,7 +51,7 @@ - + diff --git a/src/libraries/System.Diagnostics.DiagnosticSource/tests/Configurations.props b/src/libraries/System.Diagnostics.DiagnosticSource/tests/Configurations.props index 43256ffb70252..230da3221d1fe 100644 --- a/src/libraries/System.Diagnostics.DiagnosticSource/tests/Configurations.props +++ b/src/libraries/System.Diagnostics.DiagnosticSource/tests/Configurations.props @@ -1,8 +1,8 @@  - netcoreapp; - netfx-Windows_NT; + $(NetCoreAppCurrent); + $(NetFrameworkCurrent)-Windows_NT; diff --git a/src/libraries/System.Diagnostics.DiagnosticSource/tests/System.Diagnostics.DiagnosticSource.Tests.csproj b/src/libraries/System.Diagnostics.DiagnosticSource/tests/System.Diagnostics.DiagnosticSource.Tests.csproj index 3aba3e357ac85..18190fdb7a0f6 100644 --- a/src/libraries/System.Diagnostics.DiagnosticSource/tests/System.Diagnostics.DiagnosticSource.Tests.csproj +++ b/src/libraries/System.Diagnostics.DiagnosticSource/tests/System.Diagnostics.DiagnosticSource.Tests.csproj @@ -1,7 +1,7 @@ true - netcoreapp-Debug;netcoreapp-Release;netfx-Windows_NT-Debug;netfx-Windows_NT-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release;$(NetFrameworkCurrent)-Windows_NT-Debug;$(NetFrameworkCurrent)-Windows_NT-Release diff --git a/src/libraries/System.Diagnostics.EventLog/System.Diagnostics.EventLog.sln b/src/libraries/System.Diagnostics.EventLog/System.Diagnostics.EventLog.sln index d49070babf9bd..fff940fa19d56 100644 --- a/src/libraries/System.Diagnostics.EventLog/System.Diagnostics.EventLog.sln +++ b/src/libraries/System.Diagnostics.EventLog/System.Diagnostics.EventLog.sln @@ -26,14 +26,14 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {5B218883-369E-4C3D-8BD0-74843474DCBD}.Debug|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Debug|Any CPU - {5B218883-369E-4C3D-8BD0-74843474DCBD}.Debug|Any CPU.Build.0 = netcoreapp-Windows_NT-Debug|Any CPU - {5B218883-369E-4C3D-8BD0-74843474DCBD}.Release|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Release|Any CPU - {5B218883-369E-4C3D-8BD0-74843474DCBD}.Release|Any CPU.Build.0 = netcoreapp-Windows_NT-Release|Any CPU - {432779B9-3CBD-4871-A7DC-D8A192319DBD}.Debug|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Debug|Any CPU - {432779B9-3CBD-4871-A7DC-D8A192319DBD}.Debug|Any CPU.Build.0 = netcoreapp-Windows_NT-Debug|Any CPU - {432779B9-3CBD-4871-A7DC-D8A192319DBD}.Release|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Release|Any CPU - {432779B9-3CBD-4871-A7DC-D8A192319DBD}.Release|Any CPU.Build.0 = netcoreapp-Windows_NT-Release|Any CPU + {5B218883-369E-4C3D-8BD0-74843474DCBD}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Debug|Any CPU + {5B218883-369E-4C3D-8BD0-74843474DCBD}.Debug|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Debug|Any CPU + {5B218883-369E-4C3D-8BD0-74843474DCBD}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Release|Any CPU + {5B218883-369E-4C3D-8BD0-74843474DCBD}.Release|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Release|Any CPU + {432779B9-3CBD-4871-A7DC-D8A192319DBD}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Debug|Any CPU + {432779B9-3CBD-4871-A7DC-D8A192319DBD}.Debug|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Debug|Any CPU + {432779B9-3CBD-4871-A7DC-D8A192319DBD}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Release|Any CPU + {432779B9-3CBD-4871-A7DC-D8A192319DBD}.Release|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Release|Any CPU {F405C42E-EF6F-4404-80FD-3B87E216707C}.Debug|Any CPU.ActiveCfg = netstandard2.0-Debug|Any CPU {F405C42E-EF6F-4404-80FD-3B87E216707C}.Debug|Any CPU.Build.0 = netstandard2.0-Debug|Any CPU {F405C42E-EF6F-4404-80FD-3B87E216707C}.Release|Any CPU.ActiveCfg = netstandard2.0-Release|Any CPU diff --git a/src/libraries/System.Diagnostics.EventLog/ref/Configurations.props b/src/libraries/System.Diagnostics.EventLog/ref/Configurations.props index d7207b468324f..9901e6092d1b3 100644 --- a/src/libraries/System.Diagnostics.EventLog/ref/Configurations.props +++ b/src/libraries/System.Diagnostics.EventLog/ref/Configurations.props @@ -1,7 +1,7 @@  - netfx; + $(NetFrameworkCurrent); net461; netstandard2.0; diff --git a/src/libraries/System.Diagnostics.EventLog/ref/System.Diagnostics.EventLog.csproj b/src/libraries/System.Diagnostics.EventLog/ref/System.Diagnostics.EventLog.csproj index fb77cf2a3e4e9..6c1b2d0f9c428 100644 --- a/src/libraries/System.Diagnostics.EventLog/ref/System.Diagnostics.EventLog.csproj +++ b/src/libraries/System.Diagnostics.EventLog/ref/System.Diagnostics.EventLog.csproj @@ -1,7 +1,7 @@ true - net461-Debug;net461-Release;netfx-Debug;netfx-Release;netstandard2.0-Debug;netstandard2.0-Release + net461-Debug;net461-Release;$(NetFrameworkCurrent)-Debug;$(NetFrameworkCurrent)-Release;netstandard2.0-Debug;netstandard2.0-Release diff --git a/src/libraries/System.Diagnostics.EventLog/src/Configurations.props b/src/libraries/System.Diagnostics.EventLog/src/Configurations.props index fa6a00fb7a812..944cd7c04ef51 100644 --- a/src/libraries/System.Diagnostics.EventLog/src/Configurations.props +++ b/src/libraries/System.Diagnostics.EventLog/src/Configurations.props @@ -7,8 +7,8 @@ $(PackageConfigurations) - netcoreapp-Windows_NT; - netfx; + $(NetCoreAppCurrent)-Windows_NT; + $(NetFrameworkCurrent); diff --git a/src/libraries/System.Diagnostics.EventLog/src/System.Diagnostics.EventLog.csproj b/src/libraries/System.Diagnostics.EventLog/src/System.Diagnostics.EventLog.csproj index 40f3ad1efa94c..74837d99b795c 100644 --- a/src/libraries/System.Diagnostics.EventLog/src/System.Diagnostics.EventLog.csproj +++ b/src/libraries/System.Diagnostics.EventLog/src/System.Diagnostics.EventLog.csproj @@ -3,7 +3,7 @@ true true SR.PlatformNotSupported_EventLog - net461-Debug;net461-Release;netcoreapp-Windows_NT-Debug;netcoreapp-Windows_NT-Release;netcoreapp2.0-Windows_NT-Debug;netcoreapp2.0-Windows_NT-Release;netfx-Debug;netfx-Release;netstandard2.0-Debug;netstandard2.0-Release + net461-Debug;net461-Release;$(NetCoreAppCurrent)-Windows_NT-Debug;$(NetCoreAppCurrent)-Windows_NT-Release;netcoreapp2.0-Windows_NT-Debug;netcoreapp2.0-Windows_NT-Release;$(NetFrameworkCurrent)-Debug;$(NetFrameworkCurrent)-Release;netstandard2.0-Debug;netstandard2.0-Release diff --git a/src/libraries/System.Diagnostics.EventLog/tests/Configurations.props b/src/libraries/System.Diagnostics.EventLog/tests/Configurations.props index 79e917c197596..07d8052384673 100644 --- a/src/libraries/System.Diagnostics.EventLog/tests/Configurations.props +++ b/src/libraries/System.Diagnostics.EventLog/tests/Configurations.props @@ -1,8 +1,8 @@  - netcoreapp-Windows_NT; - netfx; + $(NetCoreAppCurrent)-Windows_NT; + $(NetFrameworkCurrent); \ No newline at end of file diff --git a/src/libraries/System.Diagnostics.EventLog/tests/System.Diagnostics.EventLog.Tests.csproj b/src/libraries/System.Diagnostics.EventLog/tests/System.Diagnostics.EventLog.Tests.csproj index 0825bea3f747a..de7a32a3ab73c 100644 --- a/src/libraries/System.Diagnostics.EventLog/tests/System.Diagnostics.EventLog.Tests.csproj +++ b/src/libraries/System.Diagnostics.EventLog/tests/System.Diagnostics.EventLog.Tests.csproj @@ -1,6 +1,6 @@ - netcoreapp-Windows_NT-Debug;netcoreapp-Windows_NT-Release;netfx-Debug;netfx-Release + $(NetCoreAppCurrent)-Windows_NT-Debug;$(NetCoreAppCurrent)-Windows_NT-Release;$(NetFrameworkCurrent)-Debug;$(NetFrameworkCurrent)-Release diff --git a/src/libraries/System.Diagnostics.FileVersionInfo/System.Diagnostics.FileVersionInfo.sln b/src/libraries/System.Diagnostics.FileVersionInfo/System.Diagnostics.FileVersionInfo.sln index 3a51334ed0c55..df6fc46d33dc3 100644 --- a/src/libraries/System.Diagnostics.FileVersionInfo/System.Diagnostics.FileVersionInfo.sln +++ b/src/libraries/System.Diagnostics.FileVersionInfo/System.Diagnostics.FileVersionInfo.sln @@ -46,10 +46,10 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {6DFDB760-CC88-48AE-BD81-C64844EA3CBC}.Debug|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Debug|Any CPU - {6DFDB760-CC88-48AE-BD81-C64844EA3CBC}.Debug|Any CPU.Build.0 = netcoreapp-Windows_NT-Debug|Any CPU - {6DFDB760-CC88-48AE-BD81-C64844EA3CBC}.Release|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Release|Any CPU - {6DFDB760-CC88-48AE-BD81-C64844EA3CBC}.Release|Any CPU.Build.0 = netcoreapp-Windows_NT-Release|Any CPU + {6DFDB760-CC88-48AE-BD81-C64844EA3CBC}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Debug|Any CPU + {6DFDB760-CC88-48AE-BD81-C64844EA3CBC}.Debug|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Debug|Any CPU + {6DFDB760-CC88-48AE-BD81-C64844EA3CBC}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Release|Any CPU + {6DFDB760-CC88-48AE-BD81-C64844EA3CBC}.Release|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Release|Any CPU {3002560A-5097-4A65-B562-93E335E64163}.Debug|Any CPU.ActiveCfg = netstandard2.0-Debug|Any CPU {3002560A-5097-4A65-B562-93E335E64163}.Debug|Any CPU.Build.0 = netstandard2.0-Debug|Any CPU {3002560A-5097-4A65-B562-93E335E64163}.Release|Any CPU.ActiveCfg = netstandard2.0-Release|Any CPU @@ -62,18 +62,18 @@ Global {925D347C-697C-4777-8995-62426C6866F2}.Debug|Any CPU.Build.0 = netstandard2.0-Debug|Any CPU {925D347C-697C-4777-8995-62426C6866F2}.Release|Any CPU.ActiveCfg = netstandard2.0-Release|Any CPU {925D347C-697C-4777-8995-62426C6866F2}.Release|Any CPU.Build.0 = netstandard2.0-Release|Any CPU - {28EB14BE-3BC9-4543-ABA6-A932424DFBD0}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {28EB14BE-3BC9-4543-ABA6-A932424DFBD0}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {28EB14BE-3BC9-4543-ABA6-A932424DFBD0}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {28EB14BE-3BC9-4543-ABA6-A932424DFBD0}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU - {00EDA5FD-E802-40D3-92D5-56C27612D36D}.Debug|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Debug|Any CPU - {00EDA5FD-E802-40D3-92D5-56C27612D36D}.Debug|Any CPU.Build.0 = netcoreapp-Windows_NT-Debug|Any CPU - {00EDA5FD-E802-40D3-92D5-56C27612D36D}.Release|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Release|Any CPU - {00EDA5FD-E802-40D3-92D5-56C27612D36D}.Release|Any CPU.Build.0 = netcoreapp-Windows_NT-Release|Any CPU - {F815A563-B6B8-49F3-9E90-1A134033B864}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {F815A563-B6B8-49F3-9E90-1A134033B864}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {F815A563-B6B8-49F3-9E90-1A134033B864}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {F815A563-B6B8-49F3-9E90-1A134033B864}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU + {28EB14BE-3BC9-4543-ABA6-A932424DFBD0}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {28EB14BE-3BC9-4543-ABA6-A932424DFBD0}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {28EB14BE-3BC9-4543-ABA6-A932424DFBD0}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {28EB14BE-3BC9-4543-ABA6-A932424DFBD0}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU + {00EDA5FD-E802-40D3-92D5-56C27612D36D}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Debug|Any CPU + {00EDA5FD-E802-40D3-92D5-56C27612D36D}.Debug|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Debug|Any CPU + {00EDA5FD-E802-40D3-92D5-56C27612D36D}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Release|Any CPU + {00EDA5FD-E802-40D3-92D5-56C27612D36D}.Release|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Release|Any CPU + {F815A563-B6B8-49F3-9E90-1A134033B864}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {F815A563-B6B8-49F3-9E90-1A134033B864}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {F815A563-B6B8-49F3-9E90-1A134033B864}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {F815A563-B6B8-49F3-9E90-1A134033B864}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/src/libraries/System.Diagnostics.FileVersionInfo/ref/Configurations.props b/src/libraries/System.Diagnostics.FileVersionInfo/ref/Configurations.props index 55d2de1d23f8d..7ac45c966c456 100644 --- a/src/libraries/System.Diagnostics.FileVersionInfo/ref/Configurations.props +++ b/src/libraries/System.Diagnostics.FileVersionInfo/ref/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Diagnostics.FileVersionInfo/ref/System.Diagnostics.FileVersionInfo.csproj b/src/libraries/System.Diagnostics.FileVersionInfo/ref/System.Diagnostics.FileVersionInfo.csproj index 4b3b7a5088878..e7a966c31672e 100644 --- a/src/libraries/System.Diagnostics.FileVersionInfo/ref/System.Diagnostics.FileVersionInfo.csproj +++ b/src/libraries/System.Diagnostics.FileVersionInfo/ref/System.Diagnostics.FileVersionInfo.csproj @@ -1,6 +1,6 @@ - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release diff --git a/src/libraries/System.Diagnostics.FileVersionInfo/src/Configurations.props b/src/libraries/System.Diagnostics.FileVersionInfo/src/Configurations.props index 1c0ceb0002ac4..f8d083e8f7a72 100644 --- a/src/libraries/System.Diagnostics.FileVersionInfo/src/Configurations.props +++ b/src/libraries/System.Diagnostics.FileVersionInfo/src/Configurations.props @@ -1,8 +1,8 @@  - netcoreapp-Unix; - netcoreapp-Windows_NT; + $(NetCoreAppCurrent)-Unix; + $(NetCoreAppCurrent)-Windows_NT; \ No newline at end of file diff --git a/src/libraries/System.Diagnostics.FileVersionInfo/src/System.Diagnostics.FileVersionInfo.csproj b/src/libraries/System.Diagnostics.FileVersionInfo/src/System.Diagnostics.FileVersionInfo.csproj index 558d3855e4d39..4832aa647fb4e 100644 --- a/src/libraries/System.Diagnostics.FileVersionInfo/src/System.Diagnostics.FileVersionInfo.csproj +++ b/src/libraries/System.Diagnostics.FileVersionInfo/src/System.Diagnostics.FileVersionInfo.csproj @@ -3,7 +3,7 @@ System.Diagnostics.FileVersionInfo true $(NoWarn);CS1573 - netcoreapp-Unix-Debug;netcoreapp-Unix-Release;netcoreapp-Windows_NT-Debug;netcoreapp-Windows_NT-Release + $(NetCoreAppCurrent)-Unix-Debug;$(NetCoreAppCurrent)-Unix-Release;$(NetCoreAppCurrent)-Windows_NT-Debug;$(NetCoreAppCurrent)-Windows_NT-Release diff --git a/src/libraries/System.Diagnostics.FileVersionInfo/tests/System.Diagnostics.FileVersionInfo.TestAssembly/Configurations.props b/src/libraries/System.Diagnostics.FileVersionInfo/tests/System.Diagnostics.FileVersionInfo.TestAssembly/Configurations.props index 7997802166c60..4fead5c4154c3 100644 --- a/src/libraries/System.Diagnostics.FileVersionInfo/tests/System.Diagnostics.FileVersionInfo.TestAssembly/Configurations.props +++ b/src/libraries/System.Diagnostics.FileVersionInfo/tests/System.Diagnostics.FileVersionInfo.TestAssembly/Configurations.props @@ -1,7 +1,7 @@ - netcoreapp; + $(NetCoreAppCurrent); diff --git a/src/libraries/System.Diagnostics.FileVersionInfo/tests/System.Diagnostics.FileVersionInfo.TestAssembly/System.Diagnostics.FileVersionInfo.TestAssembly.csproj b/src/libraries/System.Diagnostics.FileVersionInfo/tests/System.Diagnostics.FileVersionInfo.TestAssembly/System.Diagnostics.FileVersionInfo.TestAssembly.csproj index f0430925c7adc..4c7e232338fbe 100644 --- a/src/libraries/System.Diagnostics.FileVersionInfo/tests/System.Diagnostics.FileVersionInfo.TestAssembly/System.Diagnostics.FileVersionInfo.TestAssembly.csproj +++ b/src/libraries/System.Diagnostics.FileVersionInfo/tests/System.Diagnostics.FileVersionInfo.TestAssembly/System.Diagnostics.FileVersionInfo.TestAssembly.csproj @@ -3,7 +3,7 @@ Exe .dll false - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release diff --git a/src/libraries/System.Diagnostics.FileVersionInfo/tests/System.Diagnostics.FileVersionInfo.Tests/Configurations.props b/src/libraries/System.Diagnostics.FileVersionInfo/tests/System.Diagnostics.FileVersionInfo.Tests/Configurations.props index 19a5b59f8fcf5..8a0bfd1f0bb86 100644 --- a/src/libraries/System.Diagnostics.FileVersionInfo/tests/System.Diagnostics.FileVersionInfo.Tests/Configurations.props +++ b/src/libraries/System.Diagnostics.FileVersionInfo/tests/System.Diagnostics.FileVersionInfo.Tests/Configurations.props @@ -1,8 +1,8 @@ - netcoreapp-Windows_NT; - netcoreapp-Unix; + $(NetCoreAppCurrent)-Windows_NT; + $(NetCoreAppCurrent)-Unix; diff --git a/src/libraries/System.Diagnostics.FileVersionInfo/tests/System.Diagnostics.FileVersionInfo.Tests/System.Diagnostics.FileVersionInfo.Tests.csproj b/src/libraries/System.Diagnostics.FileVersionInfo/tests/System.Diagnostics.FileVersionInfo.Tests/System.Diagnostics.FileVersionInfo.Tests.csproj index 056b835f1c1ab..be563cb44660c 100644 --- a/src/libraries/System.Diagnostics.FileVersionInfo/tests/System.Diagnostics.FileVersionInfo.Tests/System.Diagnostics.FileVersionInfo.Tests.csproj +++ b/src/libraries/System.Diagnostics.FileVersionInfo/tests/System.Diagnostics.FileVersionInfo.Tests/System.Diagnostics.FileVersionInfo.Tests.csproj @@ -1,7 +1,7 @@ System.Diagnostics.FileVersionInfo.Tests - netcoreapp-Unix-Debug;netcoreapp-Unix-Release;netcoreapp-Windows_NT-Debug;netcoreapp-Windows_NT-Release + $(NetCoreAppCurrent)-Unix-Debug;$(NetCoreAppCurrent)-Unix-Release;$(NetCoreAppCurrent)-Windows_NT-Debug;$(NetCoreAppCurrent)-Windows_NT-Release true diff --git a/src/libraries/System.Diagnostics.PerformanceCounter/System.Diagnostics.PerformanceCounter.sln b/src/libraries/System.Diagnostics.PerformanceCounter/System.Diagnostics.PerformanceCounter.sln index 66ab08af672e6..ebf177ed3b579 100644 --- a/src/libraries/System.Diagnostics.PerformanceCounter/System.Diagnostics.PerformanceCounter.sln +++ b/src/libraries/System.Diagnostics.PerformanceCounter/System.Diagnostics.PerformanceCounter.sln @@ -26,14 +26,14 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {296074B7-1CC9-497E-8C1E-FC5C985C75C6}.Debug|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Debug|Any CPU - {296074B7-1CC9-497E-8C1E-FC5C985C75C6}.Debug|Any CPU.Build.0 = netcoreapp-Windows_NT-Debug|Any CPU - {296074B7-1CC9-497E-8C1E-FC5C985C75C6}.Release|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Release|Any CPU - {296074B7-1CC9-497E-8C1E-FC5C985C75C6}.Release|Any CPU.Build.0 = netcoreapp-Windows_NT-Release|Any CPU - {9758106C-5D4E-475D-B5E7-B7ABC46B1DDA}.Debug|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Debug|Any CPU - {9758106C-5D4E-475D-B5E7-B7ABC46B1DDA}.Debug|Any CPU.Build.0 = netcoreapp-Windows_NT-Debug|Any CPU - {9758106C-5D4E-475D-B5E7-B7ABC46B1DDA}.Release|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Release|Any CPU - {9758106C-5D4E-475D-B5E7-B7ABC46B1DDA}.Release|Any CPU.Build.0 = netcoreapp-Windows_NT-Release|Any CPU + {296074B7-1CC9-497E-8C1E-FC5C985C75C6}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Debug|Any CPU + {296074B7-1CC9-497E-8C1E-FC5C985C75C6}.Debug|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Debug|Any CPU + {296074B7-1CC9-497E-8C1E-FC5C985C75C6}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Release|Any CPU + {296074B7-1CC9-497E-8C1E-FC5C985C75C6}.Release|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Release|Any CPU + {9758106C-5D4E-475D-B5E7-B7ABC46B1DDA}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Debug|Any CPU + {9758106C-5D4E-475D-B5E7-B7ABC46B1DDA}.Debug|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Debug|Any CPU + {9758106C-5D4E-475D-B5E7-B7ABC46B1DDA}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Release|Any CPU + {9758106C-5D4E-475D-B5E7-B7ABC46B1DDA}.Release|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Release|Any CPU {5BDC8641-E3EE-47B5-BE7B-2D2275402412}.Debug|Any CPU.ActiveCfg = netstandard2.0-Debug|Any CPU {5BDC8641-E3EE-47B5-BE7B-2D2275402412}.Debug|Any CPU.Build.0 = netstandard2.0-Debug|Any CPU {5BDC8641-E3EE-47B5-BE7B-2D2275402412}.Release|Any CPU.ActiveCfg = netstandard2.0-Release|Any CPU diff --git a/src/libraries/System.Diagnostics.PerformanceCounter/ref/Configurations.props b/src/libraries/System.Diagnostics.PerformanceCounter/ref/Configurations.props index 287d8878035d7..e4dc4a7f6a5ce 100644 --- a/src/libraries/System.Diagnostics.PerformanceCounter/ref/Configurations.props +++ b/src/libraries/System.Diagnostics.PerformanceCounter/ref/Configurations.props @@ -2,7 +2,7 @@ net461; - netfx; + $(NetFrameworkCurrent); netstandard2.0; diff --git a/src/libraries/System.Diagnostics.PerformanceCounter/ref/System.Diagnostics.PerformanceCounter.csproj b/src/libraries/System.Diagnostics.PerformanceCounter/ref/System.Diagnostics.PerformanceCounter.csproj index 6318ac23fbc9e..39fd5565a679a 100644 --- a/src/libraries/System.Diagnostics.PerformanceCounter/ref/System.Diagnostics.PerformanceCounter.csproj +++ b/src/libraries/System.Diagnostics.PerformanceCounter/ref/System.Diagnostics.PerformanceCounter.csproj @@ -1,7 +1,7 @@ true - net461-Debug;net461-Release;netfx-Debug;netfx-Release;netstandard2.0-Debug;netstandard2.0-Release + net461-Debug;net461-Release;$(NetFrameworkCurrent)-Debug;$(NetFrameworkCurrent)-Release;netstandard2.0-Debug;netstandard2.0-Release true diff --git a/src/libraries/System.Diagnostics.PerformanceCounter/src/Configurations.props b/src/libraries/System.Diagnostics.PerformanceCounter/src/Configurations.props index 9edd3c2070baf..36a32270c125a 100644 --- a/src/libraries/System.Diagnostics.PerformanceCounter/src/Configurations.props +++ b/src/libraries/System.Diagnostics.PerformanceCounter/src/Configurations.props @@ -7,8 +7,8 @@ $(PackageConfigurations) - netcoreapp-Windows_NT; - netfx; + $(NetCoreAppCurrent)-Windows_NT; + $(NetFrameworkCurrent); diff --git a/src/libraries/System.Diagnostics.PerformanceCounter/src/System.Diagnostics.PerformanceCounter.csproj b/src/libraries/System.Diagnostics.PerformanceCounter/src/System.Diagnostics.PerformanceCounter.csproj index ee663ddf27ba8..d66daa212926d 100644 --- a/src/libraries/System.Diagnostics.PerformanceCounter/src/System.Diagnostics.PerformanceCounter.csproj +++ b/src/libraries/System.Diagnostics.PerformanceCounter/src/System.Diagnostics.PerformanceCounter.csproj @@ -4,7 +4,7 @@ true true SR.PlatformNotSupported_PerfCounters - net461-Debug;net461-Release;netcoreapp-Windows_NT-Debug;netcoreapp-Windows_NT-Release;netcoreapp2.0-Windows_NT-Debug;netcoreapp2.0-Windows_NT-Release;netfx-Debug;netfx-Release;netstandard2.0-Debug;netstandard2.0-Release + net461-Debug;net461-Release;$(NetCoreAppCurrent)-Windows_NT-Debug;$(NetCoreAppCurrent)-Windows_NT-Release;netcoreapp2.0-Windows_NT-Debug;netcoreapp2.0-Windows_NT-Release;$(NetFrameworkCurrent)-Debug;$(NetFrameworkCurrent)-Release;netstandard2.0-Debug;netstandard2.0-Release diff --git a/src/libraries/System.Diagnostics.PerformanceCounter/tests/Configurations.props b/src/libraries/System.Diagnostics.PerformanceCounter/tests/Configurations.props index 258f866af54df..60317cf430311 100644 --- a/src/libraries/System.Diagnostics.PerformanceCounter/tests/Configurations.props +++ b/src/libraries/System.Diagnostics.PerformanceCounter/tests/Configurations.props @@ -1,8 +1,8 @@ - netcoreapp-Windows_NT; - netfx; + $(NetCoreAppCurrent)-Windows_NT; + $(NetFrameworkCurrent); diff --git a/src/libraries/System.Diagnostics.PerformanceCounter/tests/System.Diagnostics.PerformanceCounter.Tests.csproj b/src/libraries/System.Diagnostics.PerformanceCounter/tests/System.Diagnostics.PerformanceCounter.Tests.csproj index 97c3cbf37801a..86e0cef4533be 100644 --- a/src/libraries/System.Diagnostics.PerformanceCounter/tests/System.Diagnostics.PerformanceCounter.Tests.csproj +++ b/src/libraries/System.Diagnostics.PerformanceCounter/tests/System.Diagnostics.PerformanceCounter.Tests.csproj @@ -2,7 +2,7 @@ provider.res true - netcoreapp-Windows_NT-Debug;netcoreapp-Windows_NT-Release;netfx-Debug;netfx-Release + $(NetCoreAppCurrent)-Windows_NT-Debug;$(NetCoreAppCurrent)-Windows_NT-Release;$(NetFrameworkCurrent)-Debug;$(NetFrameworkCurrent)-Release diff --git a/src/libraries/System.Diagnostics.Process/System.Diagnostics.Process.sln b/src/libraries/System.Diagnostics.Process/System.Diagnostics.Process.sln index 7941428f967fd..7dbb7299805a2 100644 --- a/src/libraries/System.Diagnostics.Process/System.Diagnostics.Process.sln +++ b/src/libraries/System.Diagnostics.Process/System.Diagnostics.Process.sln @@ -26,18 +26,18 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {E1114510-844C-4BB2-BBAD-8595BD16E24B}.Debug|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Debug|Any CPU - {E1114510-844C-4BB2-BBAD-8595BD16E24B}.Debug|Any CPU.Build.0 = netcoreapp-Windows_NT-Debug|Any CPU - {E1114510-844C-4BB2-BBAD-8595BD16E24B}.Release|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Release|Any CPU - {E1114510-844C-4BB2-BBAD-8595BD16E24B}.Release|Any CPU.Build.0 = netcoreapp-Windows_NT-Release|Any CPU - {F55047F8-E47B-46E3-B221-C23595AFE168}.Debug|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Debug|Any CPU - {F55047F8-E47B-46E3-B221-C23595AFE168}.Debug|Any CPU.Build.0 = netcoreapp-Windows_NT-Debug|Any CPU - {F55047F8-E47B-46E3-B221-C23595AFE168}.Release|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Release|Any CPU - {F55047F8-E47B-46E3-B221-C23595AFE168}.Release|Any CPU.Build.0 = netcoreapp-Windows_NT-Release|Any CPU - {98B33275-39D8-4997-867D-04C69C69885E}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {98B33275-39D8-4997-867D-04C69C69885E}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {98B33275-39D8-4997-867D-04C69C69885E}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {98B33275-39D8-4997-867D-04C69C69885E}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU + {E1114510-844C-4BB2-BBAD-8595BD16E24B}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Debug|Any CPU + {E1114510-844C-4BB2-BBAD-8595BD16E24B}.Debug|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Debug|Any CPU + {E1114510-844C-4BB2-BBAD-8595BD16E24B}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Release|Any CPU + {E1114510-844C-4BB2-BBAD-8595BD16E24B}.Release|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Release|Any CPU + {F55047F8-E47B-46E3-B221-C23595AFE168}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Debug|Any CPU + {F55047F8-E47B-46E3-B221-C23595AFE168}.Debug|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Debug|Any CPU + {F55047F8-E47B-46E3-B221-C23595AFE168}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Release|Any CPU + {F55047F8-E47B-46E3-B221-C23595AFE168}.Release|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Release|Any CPU + {98B33275-39D8-4997-867D-04C69C69885E}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {98B33275-39D8-4997-867D-04C69C69885E}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {98B33275-39D8-4997-867D-04C69C69885E}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {98B33275-39D8-4997-867D-04C69C69885E}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/src/libraries/System.Diagnostics.Process/ref/Configurations.props b/src/libraries/System.Diagnostics.Process/ref/Configurations.props index 55d2de1d23f8d..7ac45c966c456 100644 --- a/src/libraries/System.Diagnostics.Process/ref/Configurations.props +++ b/src/libraries/System.Diagnostics.Process/ref/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Diagnostics.Process/ref/System.Diagnostics.Process.csproj b/src/libraries/System.Diagnostics.Process/ref/System.Diagnostics.Process.csproj index 2bbcaeaa78c30..77943e319ad53 100644 --- a/src/libraries/System.Diagnostics.Process/ref/System.Diagnostics.Process.csproj +++ b/src/libraries/System.Diagnostics.Process/ref/System.Diagnostics.Process.csproj @@ -1,6 +1,6 @@ - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release diff --git a/src/libraries/System.Diagnostics.Process/src/Configurations.props b/src/libraries/System.Diagnostics.Process/src/Configurations.props index 72f17e5ebaab4..212340da5b8da 100644 --- a/src/libraries/System.Diagnostics.Process/src/Configurations.props +++ b/src/libraries/System.Diagnostics.Process/src/Configurations.props @@ -1,10 +1,10 @@  - netcoreapp-FreeBSD; - netcoreapp-Linux; - netcoreapp-OSX; - netcoreapp-Windows_NT; + $(NetCoreAppCurrent)-FreeBSD; + $(NetCoreAppCurrent)-Linux; + $(NetCoreAppCurrent)-OSX; + $(NetCoreAppCurrent)-Windows_NT; diff --git a/src/libraries/System.Diagnostics.Process/src/System.Diagnostics.Process.csproj b/src/libraries/System.Diagnostics.Process/src/System.Diagnostics.Process.csproj index e277789012f81..989642c7b4c34 100644 --- a/src/libraries/System.Diagnostics.Process/src/System.Diagnostics.Process.csproj +++ b/src/libraries/System.Diagnostics.Process/src/System.Diagnostics.Process.csproj @@ -5,7 +5,7 @@ $(DefineConstants);FEATURE_REGISTRY true $(NoWarn);CS1573 - netcoreapp-FreeBSD-Debug;netcoreapp-FreeBSD-Release;netcoreapp-Linux-Debug;netcoreapp-Linux-Release;netcoreapp-OSX-Debug;netcoreapp-OSX-Release;netcoreapp-Windows_NT-Debug;netcoreapp-Windows_NT-Release + $(NetCoreAppCurrent)-FreeBSD-Debug;$(NetCoreAppCurrent)-FreeBSD-Release;$(NetCoreAppCurrent)-Linux-Debug;$(NetCoreAppCurrent)-Linux-Release;$(NetCoreAppCurrent)-OSX-Debug;$(NetCoreAppCurrent)-OSX-Release;$(NetCoreAppCurrent)-Windows_NT-Debug;$(NetCoreAppCurrent)-Windows_NT-Release @@ -405,7 +405,7 @@ Common\Interop\OSX\Interop.Libraries.cs - + Common\Interop\Windows\Shell32\Interop.ShellExecuteExW.cs diff --git a/src/libraries/System.Diagnostics.Process/tests/Configurations.props b/src/libraries/System.Diagnostics.Process/tests/Configurations.props index dd006cdc1e7d0..75eaac02dc208 100644 --- a/src/libraries/System.Diagnostics.Process/tests/Configurations.props +++ b/src/libraries/System.Diagnostics.Process/tests/Configurations.props @@ -1,8 +1,8 @@  - netcoreapp-Windows_NT; - netcoreapp-Unix; + $(NetCoreAppCurrent)-Windows_NT; + $(NetCoreAppCurrent)-Unix; \ No newline at end of file diff --git a/src/libraries/System.Diagnostics.Process/tests/System.Diagnostics.Process.Tests.csproj b/src/libraries/System.Diagnostics.Process/tests/System.Diagnostics.Process.Tests.csproj index c567a01f904a4..bcae59c3bce29 100644 --- a/src/libraries/System.Diagnostics.Process/tests/System.Diagnostics.Process.Tests.csproj +++ b/src/libraries/System.Diagnostics.Process/tests/System.Diagnostics.Process.Tests.csproj @@ -3,7 +3,7 @@ true $(DefineConstants);TargetsWindows true - netcoreapp-Unix-Debug;netcoreapp-Unix-Release;netcoreapp-Windows_NT-Debug;netcoreapp-Windows_NT-Release + $(NetCoreAppCurrent)-Unix-Debug;$(NetCoreAppCurrent)-Unix-Release;$(NetCoreAppCurrent)-Windows_NT-Debug;$(NetCoreAppCurrent)-Windows_NT-Release diff --git a/src/libraries/System.Diagnostics.StackTrace/System.Diagnostics.StackTrace.sln b/src/libraries/System.Diagnostics.StackTrace/System.Diagnostics.StackTrace.sln index 13ef7b7e777bf..01c24912af006 100644 --- a/src/libraries/System.Diagnostics.StackTrace/System.Diagnostics.StackTrace.sln +++ b/src/libraries/System.Diagnostics.StackTrace/System.Diagnostics.StackTrace.sln @@ -26,18 +26,18 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {297A9116-1005-499D-A895-2063D03E4C94}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {297A9116-1005-499D-A895-2063D03E4C94}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {297A9116-1005-499D-A895-2063D03E4C94}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {297A9116-1005-499D-A895-2063D03E4C94}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU - {02304469-722E-4723-92A1-820B9A37D275}.Debug|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Debug|Any CPU - {02304469-722E-4723-92A1-820B9A37D275}.Debug|Any CPU.Build.0 = netcoreapp-Windows_NT-Debug|Any CPU - {02304469-722E-4723-92A1-820B9A37D275}.Release|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Release|Any CPU - {02304469-722E-4723-92A1-820B9A37D275}.Release|Any CPU.Build.0 = netcoreapp-Windows_NT-Release|Any CPU - {C38217EF-88F4-4D56-9F58-780BE1DDAFF6}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {C38217EF-88F4-4D56-9F58-780BE1DDAFF6}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {C38217EF-88F4-4D56-9F58-780BE1DDAFF6}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {C38217EF-88F4-4D56-9F58-780BE1DDAFF6}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU + {297A9116-1005-499D-A895-2063D03E4C94}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {297A9116-1005-499D-A895-2063D03E4C94}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {297A9116-1005-499D-A895-2063D03E4C94}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {297A9116-1005-499D-A895-2063D03E4C94}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU + {02304469-722E-4723-92A1-820B9A37D275}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Debug|Any CPU + {02304469-722E-4723-92A1-820B9A37D275}.Debug|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Debug|Any CPU + {02304469-722E-4723-92A1-820B9A37D275}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Release|Any CPU + {02304469-722E-4723-92A1-820B9A37D275}.Release|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Release|Any CPU + {C38217EF-88F4-4D56-9F58-780BE1DDAFF6}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {C38217EF-88F4-4D56-9F58-780BE1DDAFF6}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {C38217EF-88F4-4D56-9F58-780BE1DDAFF6}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {C38217EF-88F4-4D56-9F58-780BE1DDAFF6}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/src/libraries/System.Diagnostics.StackTrace/ref/Configurations.props b/src/libraries/System.Diagnostics.StackTrace/ref/Configurations.props index 55d2de1d23f8d..7ac45c966c456 100644 --- a/src/libraries/System.Diagnostics.StackTrace/ref/Configurations.props +++ b/src/libraries/System.Diagnostics.StackTrace/ref/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Diagnostics.StackTrace/ref/System.Diagnostics.StackTrace.csproj b/src/libraries/System.Diagnostics.StackTrace/ref/System.Diagnostics.StackTrace.csproj index bcb4d719cb34b..6f7cab9a89c89 100644 --- a/src/libraries/System.Diagnostics.StackTrace/ref/System.Diagnostics.StackTrace.csproj +++ b/src/libraries/System.Diagnostics.StackTrace/ref/System.Diagnostics.StackTrace.csproj @@ -1,6 +1,6 @@ - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release enable diff --git a/src/libraries/System.Diagnostics.StackTrace/src/Configurations.props b/src/libraries/System.Diagnostics.StackTrace/src/Configurations.props index db389259c06b1..f3922475141ae 100644 --- a/src/libraries/System.Diagnostics.StackTrace/src/Configurations.props +++ b/src/libraries/System.Diagnostics.StackTrace/src/Configurations.props @@ -1,8 +1,8 @@  - netcoreapp-Windows_NT; - netcoreapp-Unix; + $(NetCoreAppCurrent)-Windows_NT; + $(NetCoreAppCurrent)-Unix; diff --git a/src/libraries/System.Diagnostics.StackTrace/src/System.Diagnostics.StackTrace.csproj b/src/libraries/System.Diagnostics.StackTrace/src/System.Diagnostics.StackTrace.csproj index be32c6ceba87e..ae31779244949 100644 --- a/src/libraries/System.Diagnostics.StackTrace/src/System.Diagnostics.StackTrace.csproj +++ b/src/libraries/System.Diagnostics.StackTrace/src/System.Diagnostics.StackTrace.csproj @@ -6,7 +6,7 @@ enable $(NoWarn);1685 - netcoreapp-Unix-Debug;netcoreapp-Unix-Release;netcoreapp-Windows_NT-Debug;netcoreapp-Windows_NT-Release + $(NetCoreAppCurrent)-Unix-Debug;$(NetCoreAppCurrent)-Unix-Release;$(NetCoreAppCurrent)-Windows_NT-Debug;$(NetCoreAppCurrent)-Windows_NT-Release diff --git a/src/libraries/System.Diagnostics.StackTrace/tests/Configurations.props b/src/libraries/System.Diagnostics.StackTrace/tests/Configurations.props index 19236e72c58fb..b79c1d7c3d9a0 100644 --- a/src/libraries/System.Diagnostics.StackTrace/tests/Configurations.props +++ b/src/libraries/System.Diagnostics.StackTrace/tests/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); diff --git a/src/libraries/System.Diagnostics.StackTrace/tests/System.Diagnostics.StackTrace.Tests.csproj b/src/libraries/System.Diagnostics.StackTrace/tests/System.Diagnostics.StackTrace.Tests.csproj index 221ea6db3e2ee..65473080cb8d6 100644 --- a/src/libraries/System.Diagnostics.StackTrace/tests/System.Diagnostics.StackTrace.Tests.csproj +++ b/src/libraries/System.Diagnostics.StackTrace/tests/System.Diagnostics.StackTrace.Tests.csproj @@ -1,6 +1,6 @@  - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release true @@ -12,7 +12,7 @@ - + \ No newline at end of file diff --git a/src/libraries/System.Diagnostics.TextWriterTraceListener/System.Diagnostics.TextWriterTraceListener.sln b/src/libraries/System.Diagnostics.TextWriterTraceListener/System.Diagnostics.TextWriterTraceListener.sln index a31a62161c9c7..5fd0a7a6b4282 100644 --- a/src/libraries/System.Diagnostics.TextWriterTraceListener/System.Diagnostics.TextWriterTraceListener.sln +++ b/src/libraries/System.Diagnostics.TextWriterTraceListener/System.Diagnostics.TextWriterTraceListener.sln @@ -26,18 +26,18 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {92A9467A-9F7E-4294-A7D5-7B59F2E54ABE}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {92A9467A-9F7E-4294-A7D5-7B59F2E54ABE}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {92A9467A-9F7E-4294-A7D5-7B59F2E54ABE}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {92A9467A-9F7E-4294-A7D5-7B59F2E54ABE}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU - {315929D9-D76E-47E9-BE82-C787FB3A7876}.Debug|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Debug|Any CPU - {315929D9-D76E-47E9-BE82-C787FB3A7876}.Debug|Any CPU.Build.0 = netcoreapp-Windows_NT-Debug|Any CPU - {315929D9-D76E-47E9-BE82-C787FB3A7876}.Release|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Release|Any CPU - {315929D9-D76E-47E9-BE82-C787FB3A7876}.Release|Any CPU.Build.0 = netcoreapp-Windows_NT-Release|Any CPU - {3E10948B-1753-4CD2-ABB7-7A753EEEC023}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {3E10948B-1753-4CD2-ABB7-7A753EEEC023}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {3E10948B-1753-4CD2-ABB7-7A753EEEC023}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {3E10948B-1753-4CD2-ABB7-7A753EEEC023}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU + {92A9467A-9F7E-4294-A7D5-7B59F2E54ABE}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {92A9467A-9F7E-4294-A7D5-7B59F2E54ABE}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {92A9467A-9F7E-4294-A7D5-7B59F2E54ABE}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {92A9467A-9F7E-4294-A7D5-7B59F2E54ABE}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU + {315929D9-D76E-47E9-BE82-C787FB3A7876}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Debug|Any CPU + {315929D9-D76E-47E9-BE82-C787FB3A7876}.Debug|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Debug|Any CPU + {315929D9-D76E-47E9-BE82-C787FB3A7876}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Release|Any CPU + {315929D9-D76E-47E9-BE82-C787FB3A7876}.Release|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Release|Any CPU + {3E10948B-1753-4CD2-ABB7-7A753EEEC023}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {3E10948B-1753-4CD2-ABB7-7A753EEEC023}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {3E10948B-1753-4CD2-ABB7-7A753EEEC023}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {3E10948B-1753-4CD2-ABB7-7A753EEEC023}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/src/libraries/System.Diagnostics.TextWriterTraceListener/ref/Configurations.props b/src/libraries/System.Diagnostics.TextWriterTraceListener/ref/Configurations.props index 55d2de1d23f8d..7ac45c966c456 100644 --- a/src/libraries/System.Diagnostics.TextWriterTraceListener/ref/Configurations.props +++ b/src/libraries/System.Diagnostics.TextWriterTraceListener/ref/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Diagnostics.TextWriterTraceListener/ref/System.Diagnostics.TextWriterTraceListener.csproj b/src/libraries/System.Diagnostics.TextWriterTraceListener/ref/System.Diagnostics.TextWriterTraceListener.csproj index 3751d80051dad..3688332e508fb 100644 --- a/src/libraries/System.Diagnostics.TextWriterTraceListener/ref/System.Diagnostics.TextWriterTraceListener.csproj +++ b/src/libraries/System.Diagnostics.TextWriterTraceListener/ref/System.Diagnostics.TextWriterTraceListener.csproj @@ -1,6 +1,6 @@ - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release diff --git a/src/libraries/System.Diagnostics.TextWriterTraceListener/src/Configurations.props b/src/libraries/System.Diagnostics.TextWriterTraceListener/src/Configurations.props index dd006cdc1e7d0..75eaac02dc208 100644 --- a/src/libraries/System.Diagnostics.TextWriterTraceListener/src/Configurations.props +++ b/src/libraries/System.Diagnostics.TextWriterTraceListener/src/Configurations.props @@ -1,8 +1,8 @@  - netcoreapp-Windows_NT; - netcoreapp-Unix; + $(NetCoreAppCurrent)-Windows_NT; + $(NetCoreAppCurrent)-Unix; \ No newline at end of file diff --git a/src/libraries/System.Diagnostics.TextWriterTraceListener/src/System.Diagnostics.TextWriterTraceListener.csproj b/src/libraries/System.Diagnostics.TextWriterTraceListener/src/System.Diagnostics.TextWriterTraceListener.csproj index 80d4fadfc8974..7d865f9b60a4c 100644 --- a/src/libraries/System.Diagnostics.TextWriterTraceListener/src/System.Diagnostics.TextWriterTraceListener.csproj +++ b/src/libraries/System.Diagnostics.TextWriterTraceListener/src/System.Diagnostics.TextWriterTraceListener.csproj @@ -2,7 +2,7 @@ System.Diagnostics.TextWriterTraceListener System.Diagnostics.TextWriterTraceListener - netcoreapp-Unix-Debug;netcoreapp-Unix-Release;netcoreapp-Windows_NT-Debug;netcoreapp-Windows_NT-Release + $(NetCoreAppCurrent)-Unix-Debug;$(NetCoreAppCurrent)-Unix-Release;$(NetCoreAppCurrent)-Windows_NT-Debug;$(NetCoreAppCurrent)-Windows_NT-Release diff --git a/src/libraries/System.Diagnostics.TextWriterTraceListener/tests/Configurations.props b/src/libraries/System.Diagnostics.TextWriterTraceListener/tests/Configurations.props index 55d2de1d23f8d..7ac45c966c456 100644 --- a/src/libraries/System.Diagnostics.TextWriterTraceListener/tests/Configurations.props +++ b/src/libraries/System.Diagnostics.TextWriterTraceListener/tests/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Diagnostics.TextWriterTraceListener/tests/System.Diagnostics.TextWriterTraceListener.Tests.csproj b/src/libraries/System.Diagnostics.TextWriterTraceListener/tests/System.Diagnostics.TextWriterTraceListener.Tests.csproj index 6a8d48f9c4639..48d48b58df2ff 100644 --- a/src/libraries/System.Diagnostics.TextWriterTraceListener/tests/System.Diagnostics.TextWriterTraceListener.Tests.csproj +++ b/src/libraries/System.Diagnostics.TextWriterTraceListener/tests/System.Diagnostics.TextWriterTraceListener.Tests.csproj @@ -1,7 +1,7 @@  true - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release diff --git a/src/libraries/System.Diagnostics.Tools/System.Diagnostics.Tools.sln b/src/libraries/System.Diagnostics.Tools/System.Diagnostics.Tools.sln index 4347a4eb4debb..d39ef4fc91e0d 100644 --- a/src/libraries/System.Diagnostics.Tools/System.Diagnostics.Tools.sln +++ b/src/libraries/System.Diagnostics.Tools/System.Diagnostics.Tools.sln @@ -26,18 +26,18 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {41BF89E4-8C67-45A6-8044-13009E363220}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {41BF89E4-8C67-45A6-8044-13009E363220}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {41BF89E4-8C67-45A6-8044-13009E363220}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {41BF89E4-8C67-45A6-8044-13009E363220}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU - {0B68298B-4672-4CA0-AD25-2F9ABEA1FF95}.Debug|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Debug|Any CPU - {0B68298B-4672-4CA0-AD25-2F9ABEA1FF95}.Debug|Any CPU.Build.0 = netcoreapp-Windows_NT-Debug|Any CPU - {0B68298B-4672-4CA0-AD25-2F9ABEA1FF95}.Release|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Release|Any CPU - {0B68298B-4672-4CA0-AD25-2F9ABEA1FF95}.Release|Any CPU.Build.0 = netcoreapp-Windows_NT-Release|Any CPU - {F3970F2E-C118-42A8-8C37-C3B99961A9F6}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {F3970F2E-C118-42A8-8C37-C3B99961A9F6}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {F3970F2E-C118-42A8-8C37-C3B99961A9F6}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {F3970F2E-C118-42A8-8C37-C3B99961A9F6}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU + {41BF89E4-8C67-45A6-8044-13009E363220}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {41BF89E4-8C67-45A6-8044-13009E363220}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {41BF89E4-8C67-45A6-8044-13009E363220}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {41BF89E4-8C67-45A6-8044-13009E363220}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU + {0B68298B-4672-4CA0-AD25-2F9ABEA1FF95}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Debug|Any CPU + {0B68298B-4672-4CA0-AD25-2F9ABEA1FF95}.Debug|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Debug|Any CPU + {0B68298B-4672-4CA0-AD25-2F9ABEA1FF95}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Release|Any CPU + {0B68298B-4672-4CA0-AD25-2F9ABEA1FF95}.Release|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Release|Any CPU + {F3970F2E-C118-42A8-8C37-C3B99961A9F6}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {F3970F2E-C118-42A8-8C37-C3B99961A9F6}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {F3970F2E-C118-42A8-8C37-C3B99961A9F6}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {F3970F2E-C118-42A8-8C37-C3B99961A9F6}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/src/libraries/System.Diagnostics.Tools/ref/Configurations.props b/src/libraries/System.Diagnostics.Tools/ref/Configurations.props index 55d2de1d23f8d..7ac45c966c456 100644 --- a/src/libraries/System.Diagnostics.Tools/ref/Configurations.props +++ b/src/libraries/System.Diagnostics.Tools/ref/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Diagnostics.Tools/ref/System.Diagnostics.Tools.csproj b/src/libraries/System.Diagnostics.Tools/ref/System.Diagnostics.Tools.csproj index 205ab25f13067..9a3e1468c2ba8 100644 --- a/src/libraries/System.Diagnostics.Tools/ref/System.Diagnostics.Tools.csproj +++ b/src/libraries/System.Diagnostics.Tools/ref/System.Diagnostics.Tools.csproj @@ -1,6 +1,6 @@ - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release enable diff --git a/src/libraries/System.Diagnostics.Tools/src/Configurations.props b/src/libraries/System.Diagnostics.Tools/src/Configurations.props index db389259c06b1..f3922475141ae 100644 --- a/src/libraries/System.Diagnostics.Tools/src/Configurations.props +++ b/src/libraries/System.Diagnostics.Tools/src/Configurations.props @@ -1,8 +1,8 @@  - netcoreapp-Windows_NT; - netcoreapp-Unix; + $(NetCoreAppCurrent)-Windows_NT; + $(NetCoreAppCurrent)-Unix; diff --git a/src/libraries/System.Diagnostics.Tools/src/System.Diagnostics.Tools.csproj b/src/libraries/System.Diagnostics.Tools/src/System.Diagnostics.Tools.csproj index 953480119b94a..2921c06370581 100644 --- a/src/libraries/System.Diagnostics.Tools/src/System.Diagnostics.Tools.csproj +++ b/src/libraries/System.Diagnostics.Tools/src/System.Diagnostics.Tools.csproj @@ -4,7 +4,7 @@ true $(DefineConstants);SYSTEM_DIAGNOSTICS_TOOLS enable - netcoreapp-Unix-Debug;netcoreapp-Unix-Release;netcoreapp-Windows_NT-Debug;netcoreapp-Windows_NT-Release + $(NetCoreAppCurrent)-Unix-Debug;$(NetCoreAppCurrent)-Unix-Release;$(NetCoreAppCurrent)-Windows_NT-Debug;$(NetCoreAppCurrent)-Windows_NT-Release diff --git a/src/libraries/System.Diagnostics.Tools/tests/Configurations.props b/src/libraries/System.Diagnostics.Tools/tests/Configurations.props index 55d2de1d23f8d..7ac45c966c456 100644 --- a/src/libraries/System.Diagnostics.Tools/tests/Configurations.props +++ b/src/libraries/System.Diagnostics.Tools/tests/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Diagnostics.Tools/tests/System.Diagnostics.Tools.Tests.csproj b/src/libraries/System.Diagnostics.Tools/tests/System.Diagnostics.Tools.Tests.csproj index 1fa531552172c..fb9eaa4ba4d8f 100644 --- a/src/libraries/System.Diagnostics.Tools/tests/System.Diagnostics.Tools.Tests.csproj +++ b/src/libraries/System.Diagnostics.Tools/tests/System.Diagnostics.Tools.Tests.csproj @@ -2,7 +2,7 @@ System System.Diagnostics.Tools.Tests - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release true diff --git a/src/libraries/System.Diagnostics.TraceSource/System.Diagnostics.TraceSource.sln b/src/libraries/System.Diagnostics.TraceSource/System.Diagnostics.TraceSource.sln index 855ca0e012d96..043906dde7e95 100644 --- a/src/libraries/System.Diagnostics.TraceSource/System.Diagnostics.TraceSource.sln +++ b/src/libraries/System.Diagnostics.TraceSource/System.Diagnostics.TraceSource.sln @@ -26,18 +26,18 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {7B32D24D-969A-4F7F-8461-B43E15E5D553}.Debug|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Debug|Any CPU - {7B32D24D-969A-4F7F-8461-B43E15E5D553}.Debug|Any CPU.Build.0 = netcoreapp-Windows_NT-Debug|Any CPU - {7B32D24D-969A-4F7F-8461-B43E15E5D553}.Release|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Release|Any CPU - {7B32D24D-969A-4F7F-8461-B43E15E5D553}.Release|Any CPU.Build.0 = netcoreapp-Windows_NT-Release|Any CPU - {5380420C-EB1D-4C53-9CFC-916578C18334}.Debug|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Debug|Any CPU - {5380420C-EB1D-4C53-9CFC-916578C18334}.Debug|Any CPU.Build.0 = netcoreapp-Windows_NT-Debug|Any CPU - {5380420C-EB1D-4C53-9CFC-916578C18334}.Release|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Release|Any CPU - {5380420C-EB1D-4C53-9CFC-916578C18334}.Release|Any CPU.Build.0 = netcoreapp-Windows_NT-Release|Any CPU - {6E515D9C-A5C2-4716-96A1-4716F007267D}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {6E515D9C-A5C2-4716-96A1-4716F007267D}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {6E515D9C-A5C2-4716-96A1-4716F007267D}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {6E515D9C-A5C2-4716-96A1-4716F007267D}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU + {7B32D24D-969A-4F7F-8461-B43E15E5D553}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Debug|Any CPU + {7B32D24D-969A-4F7F-8461-B43E15E5D553}.Debug|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Debug|Any CPU + {7B32D24D-969A-4F7F-8461-B43E15E5D553}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Release|Any CPU + {7B32D24D-969A-4F7F-8461-B43E15E5D553}.Release|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Release|Any CPU + {5380420C-EB1D-4C53-9CFC-916578C18334}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Debug|Any CPU + {5380420C-EB1D-4C53-9CFC-916578C18334}.Debug|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Debug|Any CPU + {5380420C-EB1D-4C53-9CFC-916578C18334}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Release|Any CPU + {5380420C-EB1D-4C53-9CFC-916578C18334}.Release|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Release|Any CPU + {6E515D9C-A5C2-4716-96A1-4716F007267D}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {6E515D9C-A5C2-4716-96A1-4716F007267D}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {6E515D9C-A5C2-4716-96A1-4716F007267D}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {6E515D9C-A5C2-4716-96A1-4716F007267D}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/src/libraries/System.Diagnostics.TraceSource/ref/Configurations.props b/src/libraries/System.Diagnostics.TraceSource/ref/Configurations.props index 55d2de1d23f8d..7ac45c966c456 100644 --- a/src/libraries/System.Diagnostics.TraceSource/ref/Configurations.props +++ b/src/libraries/System.Diagnostics.TraceSource/ref/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Diagnostics.TraceSource/ref/System.Diagnostics.TraceSource.csproj b/src/libraries/System.Diagnostics.TraceSource/ref/System.Diagnostics.TraceSource.csproj index 45a1b5d071ab2..0cbc54e9a46de 100644 --- a/src/libraries/System.Diagnostics.TraceSource/ref/System.Diagnostics.TraceSource.csproj +++ b/src/libraries/System.Diagnostics.TraceSource/ref/System.Diagnostics.TraceSource.csproj @@ -1,6 +1,6 @@ - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release diff --git a/src/libraries/System.Diagnostics.TraceSource/src/Configurations.props b/src/libraries/System.Diagnostics.TraceSource/src/Configurations.props index 72f17e5ebaab4..212340da5b8da 100644 --- a/src/libraries/System.Diagnostics.TraceSource/src/Configurations.props +++ b/src/libraries/System.Diagnostics.TraceSource/src/Configurations.props @@ -1,10 +1,10 @@  - netcoreapp-FreeBSD; - netcoreapp-Linux; - netcoreapp-OSX; - netcoreapp-Windows_NT; + $(NetCoreAppCurrent)-FreeBSD; + $(NetCoreAppCurrent)-Linux; + $(NetCoreAppCurrent)-OSX; + $(NetCoreAppCurrent)-Windows_NT; diff --git a/src/libraries/System.Diagnostics.TraceSource/src/System.Diagnostics.TraceSource.csproj b/src/libraries/System.Diagnostics.TraceSource/src/System.Diagnostics.TraceSource.csproj index 3e08189e46151..92695aaef26fd 100644 --- a/src/libraries/System.Diagnostics.TraceSource/src/System.Diagnostics.TraceSource.csproj +++ b/src/libraries/System.Diagnostics.TraceSource/src/System.Diagnostics.TraceSource.csproj @@ -3,7 +3,7 @@ System.Diagnostics.TraceSource System.Diagnostics.TraceSource $(DefineConstants);TRACE - netcoreapp-FreeBSD-Debug;netcoreapp-FreeBSD-Release;netcoreapp-Linux-Debug;netcoreapp-Linux-Release;netcoreapp-OSX-Debug;netcoreapp-OSX-Release;netcoreapp-Windows_NT-Debug;netcoreapp-Windows_NT-Release + $(NetCoreAppCurrent)-FreeBSD-Debug;$(NetCoreAppCurrent)-FreeBSD-Release;$(NetCoreAppCurrent)-Linux-Debug;$(NetCoreAppCurrent)-Linux-Release;$(NetCoreAppCurrent)-OSX-Debug;$(NetCoreAppCurrent)-OSX-Release;$(NetCoreAppCurrent)-Windows_NT-Debug;$(NetCoreAppCurrent)-Windows_NT-Release diff --git a/src/libraries/System.Diagnostics.TraceSource/tests/Configurations.props b/src/libraries/System.Diagnostics.TraceSource/tests/Configurations.props index db389259c06b1..f3922475141ae 100644 --- a/src/libraries/System.Diagnostics.TraceSource/tests/Configurations.props +++ b/src/libraries/System.Diagnostics.TraceSource/tests/Configurations.props @@ -1,8 +1,8 @@  - netcoreapp-Windows_NT; - netcoreapp-Unix; + $(NetCoreAppCurrent)-Windows_NT; + $(NetCoreAppCurrent)-Unix; diff --git a/src/libraries/System.Diagnostics.TraceSource/tests/System.Diagnostics.TraceSource.Tests.csproj b/src/libraries/System.Diagnostics.TraceSource/tests/System.Diagnostics.TraceSource.Tests.csproj index e044346872a0c..eaceb29c1691e 100644 --- a/src/libraries/System.Diagnostics.TraceSource/tests/System.Diagnostics.TraceSource.Tests.csproj +++ b/src/libraries/System.Diagnostics.TraceSource/tests/System.Diagnostics.TraceSource.Tests.csproj @@ -1,7 +1,7 @@ true - netcoreapp-Unix-Debug;netcoreapp-Unix-Release;netcoreapp-Windows_NT-Debug;netcoreapp-Windows_NT-Release + $(NetCoreAppCurrent)-Unix-Debug;$(NetCoreAppCurrent)-Unix-Release;$(NetCoreAppCurrent)-Windows_NT-Debug;$(NetCoreAppCurrent)-Windows_NT-Release diff --git a/src/libraries/System.Diagnostics.Tracing/System.Diagnostics.Tracing.sln b/src/libraries/System.Diagnostics.Tracing/System.Diagnostics.Tracing.sln index 264d2b5b052d9..f8c06dcf9d458 100644 --- a/src/libraries/System.Diagnostics.Tracing/System.Diagnostics.Tracing.sln +++ b/src/libraries/System.Diagnostics.Tracing/System.Diagnostics.Tracing.sln @@ -26,18 +26,18 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {7E0E1B11-FF70-461E-99F7-C0AF252C0C60}.Debug|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Debug|Any CPU - {7E0E1B11-FF70-461E-99F7-C0AF252C0C60}.Debug|Any CPU.Build.0 = netcoreapp-Windows_NT-Debug|Any CPU - {7E0E1B11-FF70-461E-99F7-C0AF252C0C60}.Release|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Release|Any CPU - {7E0E1B11-FF70-461E-99F7-C0AF252C0C60}.Release|Any CPU.Build.0 = netcoreapp-Windows_NT-Release|Any CPU - {EB880FDC-326D-42B3-A3FD-0CD3BA29A7F4}.Debug|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Debug|Any CPU - {EB880FDC-326D-42B3-A3FD-0CD3BA29A7F4}.Debug|Any CPU.Build.0 = netcoreapp-Windows_NT-Debug|Any CPU - {EB880FDC-326D-42B3-A3FD-0CD3BA29A7F4}.Release|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Release|Any CPU - {EB880FDC-326D-42B3-A3FD-0CD3BA29A7F4}.Release|Any CPU.Build.0 = netcoreapp-Windows_NT-Release|Any CPU - {0D8C8BAE-E5A5-4E9F-B101-3D18BD81D261}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {0D8C8BAE-E5A5-4E9F-B101-3D18BD81D261}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {0D8C8BAE-E5A5-4E9F-B101-3D18BD81D261}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {0D8C8BAE-E5A5-4E9F-B101-3D18BD81D261}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU + {7E0E1B11-FF70-461E-99F7-C0AF252C0C60}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Debug|Any CPU + {7E0E1B11-FF70-461E-99F7-C0AF252C0C60}.Debug|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Debug|Any CPU + {7E0E1B11-FF70-461E-99F7-C0AF252C0C60}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Release|Any CPU + {7E0E1B11-FF70-461E-99F7-C0AF252C0C60}.Release|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Release|Any CPU + {EB880FDC-326D-42B3-A3FD-0CD3BA29A7F4}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Debug|Any CPU + {EB880FDC-326D-42B3-A3FD-0CD3BA29A7F4}.Debug|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Debug|Any CPU + {EB880FDC-326D-42B3-A3FD-0CD3BA29A7F4}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Release|Any CPU + {EB880FDC-326D-42B3-A3FD-0CD3BA29A7F4}.Release|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Release|Any CPU + {0D8C8BAE-E5A5-4E9F-B101-3D18BD81D261}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {0D8C8BAE-E5A5-4E9F-B101-3D18BD81D261}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {0D8C8BAE-E5A5-4E9F-B101-3D18BD81D261}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {0D8C8BAE-E5A5-4E9F-B101-3D18BD81D261}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/src/libraries/System.Diagnostics.Tracing/ref/Configurations.props b/src/libraries/System.Diagnostics.Tracing/ref/Configurations.props index 55d2de1d23f8d..7ac45c966c456 100644 --- a/src/libraries/System.Diagnostics.Tracing/ref/Configurations.props +++ b/src/libraries/System.Diagnostics.Tracing/ref/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Diagnostics.Tracing/ref/System.Diagnostics.Tracing.csproj b/src/libraries/System.Diagnostics.Tracing/ref/System.Diagnostics.Tracing.csproj index 5bf5eac7f1270..e5fdf84929bb2 100644 --- a/src/libraries/System.Diagnostics.Tracing/ref/System.Diagnostics.Tracing.csproj +++ b/src/libraries/System.Diagnostics.Tracing/ref/System.Diagnostics.Tracing.csproj @@ -3,7 +3,7 @@ true $(NoWarn);0067 - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release enable diff --git a/src/libraries/System.Diagnostics.Tracing/src/Configurations.props b/src/libraries/System.Diagnostics.Tracing/src/Configurations.props index db389259c06b1..f3922475141ae 100644 --- a/src/libraries/System.Diagnostics.Tracing/src/Configurations.props +++ b/src/libraries/System.Diagnostics.Tracing/src/Configurations.props @@ -1,8 +1,8 @@  - netcoreapp-Windows_NT; - netcoreapp-Unix; + $(NetCoreAppCurrent)-Windows_NT; + $(NetCoreAppCurrent)-Unix; diff --git a/src/libraries/System.Diagnostics.Tracing/src/System.Diagnostics.Tracing.csproj b/src/libraries/System.Diagnostics.Tracing/src/System.Diagnostics.Tracing.csproj index 1b5a587f77b2d..d5378c345f77a 100644 --- a/src/libraries/System.Diagnostics.Tracing/src/System.Diagnostics.Tracing.csproj +++ b/src/libraries/System.Diagnostics.Tracing/src/System.Diagnostics.Tracing.csproj @@ -2,7 +2,7 @@ System.Diagnostics.Tracing true - netcoreapp-Unix-Debug;netcoreapp-Unix-Release;netcoreapp-Windows_NT-Debug;netcoreapp-Windows_NT-Release + $(NetCoreAppCurrent)-Unix-Debug;$(NetCoreAppCurrent)-Unix-Release;$(NetCoreAppCurrent)-Windows_NT-Debug;$(NetCoreAppCurrent)-Windows_NT-Release diff --git a/src/libraries/System.Diagnostics.Tracing/tests/Configurations.props b/src/libraries/System.Diagnostics.Tracing/tests/Configurations.props index dd006cdc1e7d0..75eaac02dc208 100644 --- a/src/libraries/System.Diagnostics.Tracing/tests/Configurations.props +++ b/src/libraries/System.Diagnostics.Tracing/tests/Configurations.props @@ -1,8 +1,8 @@  - netcoreapp-Windows_NT; - netcoreapp-Unix; + $(NetCoreAppCurrent)-Windows_NT; + $(NetCoreAppCurrent)-Unix; \ 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 7b713566d1f9c..ff9cc2082d40f 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 @@ -1,7 +1,7 @@ true - netcoreapp-Unix-Debug;netcoreapp-Unix-Release;netcoreapp-Windows_NT-Debug;netcoreapp-Windows_NT-Release + $(NetCoreAppCurrent)-Unix-Debug;$(NetCoreAppCurrent)-Unix-Release;$(NetCoreAppCurrent)-Windows_NT-Debug;$(NetCoreAppCurrent)-Windows_NT-Release true diff --git a/src/libraries/System.DirectoryServices.AccountManagement/System.DirectoryServices.AccountManagement.sln b/src/libraries/System.DirectoryServices.AccountManagement/System.DirectoryServices.AccountManagement.sln index 98ba0525478f3..4eedb21b7632b 100644 --- a/src/libraries/System.DirectoryServices.AccountManagement/System.DirectoryServices.AccountManagement.sln +++ b/src/libraries/System.DirectoryServices.AccountManagement/System.DirectoryServices.AccountManagement.sln @@ -26,14 +26,14 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {B0EE498E-4BD8-4A39-89EB-7F2FC880B61F}.Debug|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Debug|Any CPU - {B0EE498E-4BD8-4A39-89EB-7F2FC880B61F}.Debug|Any CPU.Build.0 = netcoreapp-Windows_NT-Debug|Any CPU - {B0EE498E-4BD8-4A39-89EB-7F2FC880B61F}.Release|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Release|Any CPU - {B0EE498E-4BD8-4A39-89EB-7F2FC880B61F}.Release|Any CPU.Build.0 = netcoreapp-Windows_NT-Release|Any CPU - {879C23DC-D828-4DFB-8E92-ABBC11B71035}.Debug|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Debug|Any CPU - {879C23DC-D828-4DFB-8E92-ABBC11B71035}.Debug|Any CPU.Build.0 = netcoreapp-Windows_NT-Debug|Any CPU - {879C23DC-D828-4DFB-8E92-ABBC11B71035}.Release|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Release|Any CPU - {879C23DC-D828-4DFB-8E92-ABBC11B71035}.Release|Any CPU.Build.0 = netcoreapp-Windows_NT-Release|Any CPU + {B0EE498E-4BD8-4A39-89EB-7F2FC880B61F}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Debug|Any CPU + {B0EE498E-4BD8-4A39-89EB-7F2FC880B61F}.Debug|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Debug|Any CPU + {B0EE498E-4BD8-4A39-89EB-7F2FC880B61F}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Release|Any CPU + {B0EE498E-4BD8-4A39-89EB-7F2FC880B61F}.Release|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Release|Any CPU + {879C23DC-D828-4DFB-8E92-ABBC11B71035}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Debug|Any CPU + {879C23DC-D828-4DFB-8E92-ABBC11B71035}.Debug|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Debug|Any CPU + {879C23DC-D828-4DFB-8E92-ABBC11B71035}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Release|Any CPU + {879C23DC-D828-4DFB-8E92-ABBC11B71035}.Release|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Release|Any CPU {404455B6-466C-4F78-9DCC-C37DCC0B75DA}.Debug|Any CPU.ActiveCfg = netstandard2.0-Debug|Any CPU {404455B6-466C-4F78-9DCC-C37DCC0B75DA}.Debug|Any CPU.Build.0 = netstandard2.0-Debug|Any CPU {404455B6-466C-4F78-9DCC-C37DCC0B75DA}.Release|Any CPU.ActiveCfg = netstandard2.0-Release|Any CPU diff --git a/src/libraries/System.DirectoryServices.AccountManagement/src/Configurations.props b/src/libraries/System.DirectoryServices.AccountManagement/src/Configurations.props index c4215eaf10fcd..aefe09f7efa0b 100644 --- a/src/libraries/System.DirectoryServices.AccountManagement/src/Configurations.props +++ b/src/libraries/System.DirectoryServices.AccountManagement/src/Configurations.props @@ -6,8 +6,8 @@ $(PackageConfigurations); - netcoreapp-Windows_NT; - _netfx; + $(NetCoreAppCurrent)-Windows_NT; + _$(NetFrameworkCurrent); diff --git a/src/libraries/System.DirectoryServices.AccountManagement/src/System.DirectoryServices.AccountManagement.csproj b/src/libraries/System.DirectoryServices.AccountManagement/src/System.DirectoryServices.AccountManagement.csproj index c935c28c96425..f876cf0635fb8 100644 --- a/src/libraries/System.DirectoryServices.AccountManagement/src/System.DirectoryServices.AccountManagement.csproj +++ b/src/libraries/System.DirectoryServices.AccountManagement/src/System.DirectoryServices.AccountManagement.csproj @@ -6,7 +6,7 @@ $(NoWarn);8073;CA1810 true SR.DirectoryServicesAccountManagement_PlatformNotSupported - netcoreapp-Windows_NT-Debug;netcoreapp-Windows_NT-Release;netcoreapp2.0-Windows_NT-Debug;netcoreapp2.0-Windows_NT-Release;netstandard2.0-Debug;netstandard2.0-Release + $(NetCoreAppCurrent)-Windows_NT-Debug;$(NetCoreAppCurrent)-Windows_NT-Release;netcoreapp2.0-Windows_NT-Debug;netcoreapp2.0-Windows_NT-Release;netstandard2.0-Debug;netstandard2.0-Release diff --git a/src/libraries/System.DirectoryServices.AccountManagement/tests/Configurations.props b/src/libraries/System.DirectoryServices.AccountManagement/tests/Configurations.props index 258f866af54df..60317cf430311 100644 --- a/src/libraries/System.DirectoryServices.AccountManagement/tests/Configurations.props +++ b/src/libraries/System.DirectoryServices.AccountManagement/tests/Configurations.props @@ -1,8 +1,8 @@ - netcoreapp-Windows_NT; - netfx; + $(NetCoreAppCurrent)-Windows_NT; + $(NetFrameworkCurrent); diff --git a/src/libraries/System.DirectoryServices.AccountManagement/tests/System.DirectoryServices.AccountManagement.Tests.csproj b/src/libraries/System.DirectoryServices.AccountManagement/tests/System.DirectoryServices.AccountManagement.Tests.csproj index 44b207b4dcb84..de5eca2f89053 100644 --- a/src/libraries/System.DirectoryServices.AccountManagement/tests/System.DirectoryServices.AccountManagement.Tests.csproj +++ b/src/libraries/System.DirectoryServices.AccountManagement/tests/System.DirectoryServices.AccountManagement.Tests.csproj @@ -1,6 +1,6 @@ - netcoreapp-Windows_NT-Debug;netcoreapp-Windows_NT-Release;netfx-Debug;netfx-Release + $(NetCoreAppCurrent)-Windows_NT-Debug;$(NetCoreAppCurrent)-Windows_NT-Release;$(NetFrameworkCurrent)-Debug;$(NetFrameworkCurrent)-Release diff --git a/src/libraries/System.DirectoryServices.Protocols/System.DirectoryServices.Protocols.sln b/src/libraries/System.DirectoryServices.Protocols/System.DirectoryServices.Protocols.sln index d3573efd37e5b..e1ea5a483c5d1 100644 --- a/src/libraries/System.DirectoryServices.Protocols/System.DirectoryServices.Protocols.sln +++ b/src/libraries/System.DirectoryServices.Protocols/System.DirectoryServices.Protocols.sln @@ -26,14 +26,14 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {6638C675-CD62-408F-AB3B-AAFD8A906A96}.Debug|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Debug|Any CPU - {6638C675-CD62-408F-AB3B-AAFD8A906A96}.Debug|Any CPU.Build.0 = netcoreapp-Windows_NT-Debug|Any CPU - {6638C675-CD62-408F-AB3B-AAFD8A906A96}.Release|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Release|Any CPU - {6638C675-CD62-408F-AB3B-AAFD8A906A96}.Release|Any CPU.Build.0 = netcoreapp-Windows_NT-Release|Any CPU - {135980AC-4583-44EC-894E-CB3B1A481920}.Debug|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Debug|Any CPU - {135980AC-4583-44EC-894E-CB3B1A481920}.Debug|Any CPU.Build.0 = netcoreapp-Windows_NT-Debug|Any CPU - {135980AC-4583-44EC-894E-CB3B1A481920}.Release|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Release|Any CPU - {135980AC-4583-44EC-894E-CB3B1A481920}.Release|Any CPU.Build.0 = netcoreapp-Windows_NT-Release|Any CPU + {6638C675-CD62-408F-AB3B-AAFD8A906A96}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Debug|Any CPU + {6638C675-CD62-408F-AB3B-AAFD8A906A96}.Debug|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Debug|Any CPU + {6638C675-CD62-408F-AB3B-AAFD8A906A96}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Release|Any CPU + {6638C675-CD62-408F-AB3B-AAFD8A906A96}.Release|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Release|Any CPU + {135980AC-4583-44EC-894E-CB3B1A481920}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Debug|Any CPU + {135980AC-4583-44EC-894E-CB3B1A481920}.Debug|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Debug|Any CPU + {135980AC-4583-44EC-894E-CB3B1A481920}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Release|Any CPU + {135980AC-4583-44EC-894E-CB3B1A481920}.Release|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Release|Any CPU {7DEA4539-9A0D-4801-B229-3824710EBCEE}.Debug|Any CPU.ActiveCfg = netstandard2.0-Debug|Any CPU {7DEA4539-9A0D-4801-B229-3824710EBCEE}.Debug|Any CPU.Build.0 = netstandard2.0-Debug|Any CPU {7DEA4539-9A0D-4801-B229-3824710EBCEE}.Release|Any CPU.ActiveCfg = netstandard2.0-Release|Any CPU diff --git a/src/libraries/System.DirectoryServices.Protocols/src/Configurations.props b/src/libraries/System.DirectoryServices.Protocols/src/Configurations.props index c4215eaf10fcd..aefe09f7efa0b 100644 --- a/src/libraries/System.DirectoryServices.Protocols/src/Configurations.props +++ b/src/libraries/System.DirectoryServices.Protocols/src/Configurations.props @@ -6,8 +6,8 @@ $(PackageConfigurations); - netcoreapp-Windows_NT; - _netfx; + $(NetCoreAppCurrent)-Windows_NT; + _$(NetFrameworkCurrent); diff --git a/src/libraries/System.DirectoryServices.Protocols/src/System.DirectoryServices.Protocols.csproj b/src/libraries/System.DirectoryServices.Protocols/src/System.DirectoryServices.Protocols.csproj index 702fd0e7f9d35..4554072edebb4 100644 --- a/src/libraries/System.DirectoryServices.Protocols/src/System.DirectoryServices.Protocols.csproj +++ b/src/libraries/System.DirectoryServices.Protocols/src/System.DirectoryServices.Protocols.csproj @@ -5,7 +5,7 @@ $(NoWarn);0649;CA1810 true SR.DirectoryServicesProtocols_PlatformNotSupported - netcoreapp-Windows_NT-Debug;netcoreapp-Windows_NT-Release;netcoreapp2.0-Windows_NT-Debug;netcoreapp2.0-Windows_NT-Release;netstandard2.0-Debug;netstandard2.0-Release + $(NetCoreAppCurrent)-Windows_NT-Debug;$(NetCoreAppCurrent)-Windows_NT-Release;netcoreapp2.0-Windows_NT-Debug;netcoreapp2.0-Windows_NT-Release;netstandard2.0-Debug;netstandard2.0-Release @@ -56,7 +56,7 @@ - + diff --git a/src/libraries/System.DirectoryServices.Protocols/tests/Configurations.props b/src/libraries/System.DirectoryServices.Protocols/tests/Configurations.props index 9b3928d692a39..6b39e749e2808 100644 --- a/src/libraries/System.DirectoryServices.Protocols/tests/Configurations.props +++ b/src/libraries/System.DirectoryServices.Protocols/tests/Configurations.props @@ -1,8 +1,8 @@  - netcoreapp-Windows_NT; - netfx; + $(NetCoreAppCurrent)-Windows_NT; + $(NetFrameworkCurrent); diff --git a/src/libraries/System.DirectoryServices.Protocols/tests/System.DirectoryServices.Protocols.Tests.csproj b/src/libraries/System.DirectoryServices.Protocols/tests/System.DirectoryServices.Protocols.Tests.csproj index fb11a1239e024..e7504f822a7d7 100644 --- a/src/libraries/System.DirectoryServices.Protocols/tests/System.DirectoryServices.Protocols.Tests.csproj +++ b/src/libraries/System.DirectoryServices.Protocols/tests/System.DirectoryServices.Protocols.Tests.csproj @@ -1,6 +1,6 @@ - netcoreapp-Windows_NT-Debug;netcoreapp-Windows_NT-Release;netfx-Debug;netfx-Release + $(NetCoreAppCurrent)-Windows_NT-Debug;$(NetCoreAppCurrent)-Windows_NT-Release;$(NetFrameworkCurrent)-Debug;$(NetFrameworkCurrent)-Release diff --git a/src/libraries/System.DirectoryServices/System.DirectoryServices.sln b/src/libraries/System.DirectoryServices/System.DirectoryServices.sln index a7e028fd36b93..6e7c3a94f0272 100644 --- a/src/libraries/System.DirectoryServices/System.DirectoryServices.sln +++ b/src/libraries/System.DirectoryServices/System.DirectoryServices.sln @@ -26,14 +26,14 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {DDE3838B-0EEA-4D9A-A120-9D72CB33F250}.Debug|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Debug|Any CPU - {DDE3838B-0EEA-4D9A-A120-9D72CB33F250}.Debug|Any CPU.Build.0 = netcoreapp-Windows_NT-Debug|Any CPU - {DDE3838B-0EEA-4D9A-A120-9D72CB33F250}.Release|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Release|Any CPU - {DDE3838B-0EEA-4D9A-A120-9D72CB33F250}.Release|Any CPU.Build.0 = netcoreapp-Windows_NT-Release|Any CPU - {EC9B0FBC-C3A2-44E6-BFC6-51E565061C28}.Debug|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Debug|Any CPU - {EC9B0FBC-C3A2-44E6-BFC6-51E565061C28}.Debug|Any CPU.Build.0 = netcoreapp-Windows_NT-Debug|Any CPU - {EC9B0FBC-C3A2-44E6-BFC6-51E565061C28}.Release|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Release|Any CPU - {EC9B0FBC-C3A2-44E6-BFC6-51E565061C28}.Release|Any CPU.Build.0 = netcoreapp-Windows_NT-Release|Any CPU + {DDE3838B-0EEA-4D9A-A120-9D72CB33F250}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Debug|Any CPU + {DDE3838B-0EEA-4D9A-A120-9D72CB33F250}.Debug|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Debug|Any CPU + {DDE3838B-0EEA-4D9A-A120-9D72CB33F250}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Release|Any CPU + {DDE3838B-0EEA-4D9A-A120-9D72CB33F250}.Release|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Release|Any CPU + {EC9B0FBC-C3A2-44E6-BFC6-51E565061C28}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Debug|Any CPU + {EC9B0FBC-C3A2-44E6-BFC6-51E565061C28}.Debug|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Debug|Any CPU + {EC9B0FBC-C3A2-44E6-BFC6-51E565061C28}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Release|Any CPU + {EC9B0FBC-C3A2-44E6-BFC6-51E565061C28}.Release|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Release|Any CPU {CBCDA53B-4C01-4267-B08C-413205FE4D8D}.Debug|Any CPU.ActiveCfg = netstandard2.0-Debug|Any CPU {CBCDA53B-4C01-4267-B08C-413205FE4D8D}.Debug|Any CPU.Build.0 = netstandard2.0-Debug|Any CPU {CBCDA53B-4C01-4267-B08C-413205FE4D8D}.Release|Any CPU.ActiveCfg = netstandard2.0-Release|Any CPU diff --git a/src/libraries/System.DirectoryServices/ref/Configurations.props b/src/libraries/System.DirectoryServices/ref/Configurations.props index a5f5bb4d3352b..781348267d404 100644 --- a/src/libraries/System.DirectoryServices/ref/Configurations.props +++ b/src/libraries/System.DirectoryServices/ref/Configurations.props @@ -2,7 +2,7 @@ netstandard2.0; - _netfx; + _$(NetFrameworkCurrent); \ No newline at end of file diff --git a/src/libraries/System.DirectoryServices/src/Configurations.props b/src/libraries/System.DirectoryServices/src/Configurations.props index c4215eaf10fcd..aefe09f7efa0b 100644 --- a/src/libraries/System.DirectoryServices/src/Configurations.props +++ b/src/libraries/System.DirectoryServices/src/Configurations.props @@ -6,8 +6,8 @@ $(PackageConfigurations); - netcoreapp-Windows_NT; - _netfx; + $(NetCoreAppCurrent)-Windows_NT; + _$(NetFrameworkCurrent); diff --git a/src/libraries/System.DirectoryServices/src/System.DirectoryServices.csproj b/src/libraries/System.DirectoryServices/src/System.DirectoryServices.csproj index a74062ddbf5b2..e03a0e9245161 100644 --- a/src/libraries/System.DirectoryServices/src/System.DirectoryServices.csproj +++ b/src/libraries/System.DirectoryServices/src/System.DirectoryServices.csproj @@ -4,7 +4,7 @@ true $(NoWarn);0649 SR.DirectoryServices_PlatformNotSupported - netcoreapp-Windows_NT-Debug;netcoreapp-Windows_NT-Release;netcoreapp2.0-Windows_NT-Debug;netcoreapp2.0-Windows_NT-Release;netstandard2.0-Debug;netstandard2.0-Release + $(NetCoreAppCurrent)-Windows_NT-Debug;$(NetCoreAppCurrent)-Windows_NT-Release;netcoreapp2.0-Windows_NT-Debug;netcoreapp2.0-Windows_NT-Release;netstandard2.0-Debug;netstandard2.0-Release diff --git a/src/libraries/System.DirectoryServices/tests/Configurations.props b/src/libraries/System.DirectoryServices/tests/Configurations.props index c03a496a43b80..cc3d67b6a31ed 100644 --- a/src/libraries/System.DirectoryServices/tests/Configurations.props +++ b/src/libraries/System.DirectoryServices/tests/Configurations.props @@ -1,8 +1,8 @@  - netcoreapp-Windows_NT; - netfx; + $(NetCoreAppCurrent)-Windows_NT; + $(NetFrameworkCurrent); diff --git a/src/libraries/System.DirectoryServices/tests/System.DirectoryServices.Tests.csproj b/src/libraries/System.DirectoryServices/tests/System.DirectoryServices.Tests.csproj index 531d5ce6aab2c..e3d130d43d065 100644 --- a/src/libraries/System.DirectoryServices/tests/System.DirectoryServices.Tests.csproj +++ b/src/libraries/System.DirectoryServices/tests/System.DirectoryServices.Tests.csproj @@ -1,7 +1,7 @@ $(NoWarn);CS0618 - netcoreapp-Windows_NT-Debug;netcoreapp-Windows_NT-Release;netfx-Debug;netfx-Release + $(NetCoreAppCurrent)-Windows_NT-Debug;$(NetCoreAppCurrent)-Windows_NT-Release;$(NetFrameworkCurrent)-Debug;$(NetFrameworkCurrent)-Release diff --git a/src/libraries/System.Drawing.Common/System.Drawing.Common.sln b/src/libraries/System.Drawing.Common/System.Drawing.Common.sln index a3d9e63efc330..85712d68c4949 100644 --- a/src/libraries/System.Drawing.Common/System.Drawing.Common.sln +++ b/src/libraries/System.Drawing.Common/System.Drawing.Common.sln @@ -26,18 +26,18 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {4B93E684-0630-45F4-8F63-6C7788C9892F}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {4B93E684-0630-45F4-8F63-6C7788C9892F}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {4B93E684-0630-45F4-8F63-6C7788C9892F}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {4B93E684-0630-45F4-8F63-6C7788C9892F}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU - {191B3618-FECD-4ABD-9D6B-5AC90DC33621}.Debug|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Debug|Any CPU - {191B3618-FECD-4ABD-9D6B-5AC90DC33621}.Debug|Any CPU.Build.0 = netcoreapp-Windows_NT-Debug|Any CPU - {191B3618-FECD-4ABD-9D6B-5AC90DC33621}.Release|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Release|Any CPU - {191B3618-FECD-4ABD-9D6B-5AC90DC33621}.Release|Any CPU.Build.0 = netcoreapp-Windows_NT-Release|Any CPU - {D7AEA698-275D-441F-B7A7-8491D1F0EFF0}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {D7AEA698-275D-441F-B7A7-8491D1F0EFF0}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {D7AEA698-275D-441F-B7A7-8491D1F0EFF0}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {D7AEA698-275D-441F-B7A7-8491D1F0EFF0}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU + {4B93E684-0630-45F4-8F63-6C7788C9892F}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {4B93E684-0630-45F4-8F63-6C7788C9892F}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {4B93E684-0630-45F4-8F63-6C7788C9892F}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {4B93E684-0630-45F4-8F63-6C7788C9892F}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU + {191B3618-FECD-4ABD-9D6B-5AC90DC33621}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Debug|Any CPU + {191B3618-FECD-4ABD-9D6B-5AC90DC33621}.Debug|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Debug|Any CPU + {191B3618-FECD-4ABD-9D6B-5AC90DC33621}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Release|Any CPU + {191B3618-FECD-4ABD-9D6B-5AC90DC33621}.Release|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Release|Any CPU + {D7AEA698-275D-441F-B7A7-8491D1F0EFF0}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {D7AEA698-275D-441F-B7A7-8491D1F0EFF0}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {D7AEA698-275D-441F-B7A7-8491D1F0EFF0}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {D7AEA698-275D-441F-B7A7-8491D1F0EFF0}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/src/libraries/System.Drawing.Common/ref/Configurations.props b/src/libraries/System.Drawing.Common/ref/Configurations.props index f6425e5fd6d54..a03a3155c1b72 100644 --- a/src/libraries/System.Drawing.Common/ref/Configurations.props +++ b/src/libraries/System.Drawing.Common/ref/Configurations.props @@ -5,7 +5,7 @@ $(PackageConfigurations); - netcoreapp; + $(NetCoreAppCurrent); diff --git a/src/libraries/System.Drawing.Common/ref/System.Drawing.Common.csproj b/src/libraries/System.Drawing.Common/ref/System.Drawing.Common.csproj index 4ea035df1690e..1e6fa9b0b7d25 100644 --- a/src/libraries/System.Drawing.Common/ref/System.Drawing.Common.csproj +++ b/src/libraries/System.Drawing.Common/ref/System.Drawing.Common.csproj @@ -1,6 +1,6 @@  - netcoreapp-Debug;netcoreapp-Release;netcoreapp3.0-Debug;netcoreapp3.0-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release;netcoreapp3.0-Debug;netcoreapp3.0-Release diff --git a/src/libraries/System.Drawing.Common/src/Configurations.props b/src/libraries/System.Drawing.Common/src/Configurations.props index 765b7fe84cf81..452e3cd7e260a 100644 --- a/src/libraries/System.Drawing.Common/src/Configurations.props +++ b/src/libraries/System.Drawing.Common/src/Configurations.props @@ -6,8 +6,8 @@ $(PackageConfigurations); - netcoreapp-Windows_NT; - netcoreapp-Unix; + $(NetCoreAppCurrent)-Windows_NT; + $(NetCoreAppCurrent)-Unix; diff --git a/src/libraries/System.Drawing.Common/src/System.Drawing.Common.csproj b/src/libraries/System.Drawing.Common/src/System.Drawing.Common.csproj index 847c2b95abfed..fb6e5c1aefec8 100644 --- a/src/libraries/System.Drawing.Common/src/System.Drawing.Common.csproj +++ b/src/libraries/System.Drawing.Common/src/System.Drawing.Common.csproj @@ -5,7 +5,7 @@ CS0618 $(DefineConstants);FEATURE_WINDOWS_SYSTEM_COLORS;FEATURE_SYSTEM_EVENTS true - netcoreapp-Unix-Debug;netcoreapp-Unix-Release;netcoreapp-Windows_NT-Debug;netcoreapp-Windows_NT-Release;netcoreapp3.0-Unix-Debug;netcoreapp3.0-Unix-Release;netcoreapp3.0-Windows_NT-Debug;netcoreapp3.0-Windows_NT-Release + $(NetCoreAppCurrent)-Unix-Debug;$(NetCoreAppCurrent)-Unix-Release;$(NetCoreAppCurrent)-Windows_NT-Debug;$(NetCoreAppCurrent)-Windows_NT-Release;netcoreapp3.0-Unix-Debug;netcoreapp3.0-Unix-Release;netcoreapp3.0-Windows_NT-Debug;netcoreapp3.0-Windows_NT-Release diff --git a/src/libraries/System.Drawing.Common/tests/Configurations.props b/src/libraries/System.Drawing.Common/tests/Configurations.props index 7538cfb5a8686..4d7a02a5508f2 100644 --- a/src/libraries/System.Drawing.Common/tests/Configurations.props +++ b/src/libraries/System.Drawing.Common/tests/Configurations.props @@ -1,8 +1,8 @@  - netcoreapp; - netfx; + $(NetCoreAppCurrent); + $(NetFrameworkCurrent); 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 215f610e3d9b2..25cf882c9cec2 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 @@ -2,7 +2,7 @@ true true - netcoreapp-Debug;netcoreapp-Release;netfx-Debug;netfx-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release;$(NetFrameworkCurrent)-Debug;$(NetFrameworkCurrent)-Release diff --git a/src/libraries/System.Drawing.Primitives/System.Drawing.Primitives.sln b/src/libraries/System.Drawing.Primitives/System.Drawing.Primitives.sln index 51970ae096808..7142a43fe1ddc 100644 --- a/src/libraries/System.Drawing.Primitives/System.Drawing.Primitives.sln +++ b/src/libraries/System.Drawing.Primitives/System.Drawing.Primitives.sln @@ -26,18 +26,18 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {CF54638C-A382-4A78-9AD6-2304CEEFEB01}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {CF54638C-A382-4A78-9AD6-2304CEEFEB01}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {CF54638C-A382-4A78-9AD6-2304CEEFEB01}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {CF54638C-A382-4A78-9AD6-2304CEEFEB01}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU - {8F472B93-574C-4AEC-9D28-6C2360A55BBF}.Debug|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Debug|Any CPU - {8F472B93-574C-4AEC-9D28-6C2360A55BBF}.Debug|Any CPU.Build.0 = netcoreapp-Windows_NT-Debug|Any CPU - {8F472B93-574C-4AEC-9D28-6C2360A55BBF}.Release|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Release|Any CPU - {8F472B93-574C-4AEC-9D28-6C2360A55BBF}.Release|Any CPU.Build.0 = netcoreapp-Windows_NT-Release|Any CPU - {10F74537-6423-48F5-A7F3-4DE94E42AF8F}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {10F74537-6423-48F5-A7F3-4DE94E42AF8F}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {10F74537-6423-48F5-A7F3-4DE94E42AF8F}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {10F74537-6423-48F5-A7F3-4DE94E42AF8F}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU + {CF54638C-A382-4A78-9AD6-2304CEEFEB01}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {CF54638C-A382-4A78-9AD6-2304CEEFEB01}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {CF54638C-A382-4A78-9AD6-2304CEEFEB01}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {CF54638C-A382-4A78-9AD6-2304CEEFEB01}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU + {8F472B93-574C-4AEC-9D28-6C2360A55BBF}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Debug|Any CPU + {8F472B93-574C-4AEC-9D28-6C2360A55BBF}.Debug|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Debug|Any CPU + {8F472B93-574C-4AEC-9D28-6C2360A55BBF}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Release|Any CPU + {8F472B93-574C-4AEC-9D28-6C2360A55BBF}.Release|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Release|Any CPU + {10F74537-6423-48F5-A7F3-4DE94E42AF8F}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {10F74537-6423-48F5-A7F3-4DE94E42AF8F}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {10F74537-6423-48F5-A7F3-4DE94E42AF8F}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {10F74537-6423-48F5-A7F3-4DE94E42AF8F}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/src/libraries/System.Drawing.Primitives/ref/Configurations.props b/src/libraries/System.Drawing.Primitives/ref/Configurations.props index 55d2de1d23f8d..7ac45c966c456 100644 --- a/src/libraries/System.Drawing.Primitives/ref/Configurations.props +++ b/src/libraries/System.Drawing.Primitives/ref/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Drawing.Primitives/ref/System.Drawing.Primitives.csproj b/src/libraries/System.Drawing.Primitives/ref/System.Drawing.Primitives.csproj index d0f1c8d728718..e1dc8f8e7c3f5 100644 --- a/src/libraries/System.Drawing.Primitives/ref/System.Drawing.Primitives.csproj +++ b/src/libraries/System.Drawing.Primitives/ref/System.Drawing.Primitives.csproj @@ -1,6 +1,6 @@  - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release enable diff --git a/src/libraries/System.Drawing.Primitives/src/Configurations.props b/src/libraries/System.Drawing.Primitives/src/Configurations.props index dd006cdc1e7d0..75eaac02dc208 100644 --- a/src/libraries/System.Drawing.Primitives/src/Configurations.props +++ b/src/libraries/System.Drawing.Primitives/src/Configurations.props @@ -1,8 +1,8 @@  - netcoreapp-Windows_NT; - netcoreapp-Unix; + $(NetCoreAppCurrent)-Windows_NT; + $(NetCoreAppCurrent)-Unix; \ No newline at end of file diff --git a/src/libraries/System.Drawing.Primitives/src/System.Drawing.Primitives.csproj b/src/libraries/System.Drawing.Primitives/src/System.Drawing.Primitives.csproj index 972fd07b3219b..b7c8ebcbc812d 100644 --- a/src/libraries/System.Drawing.Primitives/src/System.Drawing.Primitives.csproj +++ b/src/libraries/System.Drawing.Primitives/src/System.Drawing.Primitives.csproj @@ -4,7 +4,7 @@ System.Drawing System.Drawing.Primitives $(DefineConstants);FEATURE_WINDOWS_SYSTEM_COLORS - netcoreapp-Unix-Debug;netcoreapp-Unix-Release;netcoreapp-Windows_NT-Debug;netcoreapp-Windows_NT-Release + $(NetCoreAppCurrent)-Unix-Debug;$(NetCoreAppCurrent)-Unix-Release;$(NetCoreAppCurrent)-Windows_NT-Debug;$(NetCoreAppCurrent)-Windows_NT-Release enable diff --git a/src/libraries/System.Drawing.Primitives/tests/Configurations.props b/src/libraries/System.Drawing.Primitives/tests/Configurations.props index 19236e72c58fb..b79c1d7c3d9a0 100644 --- a/src/libraries/System.Drawing.Primitives/tests/Configurations.props +++ b/src/libraries/System.Drawing.Primitives/tests/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); diff --git a/src/libraries/System.Drawing.Primitives/tests/System.Drawing.Primitives.Tests.csproj b/src/libraries/System.Drawing.Primitives/tests/System.Drawing.Primitives.Tests.csproj index 0850a88233534..9e3af0b91eb5d 100644 --- a/src/libraries/System.Drawing.Primitives/tests/System.Drawing.Primitives.Tests.csproj +++ b/src/libraries/System.Drawing.Primitives/tests/System.Drawing.Primitives.Tests.csproj @@ -1,6 +1,6 @@  - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release diff --git a/src/libraries/System.Dynamic.Runtime/System.Dynamic.Runtime.sln b/src/libraries/System.Dynamic.Runtime/System.Dynamic.Runtime.sln index 85ee376e43768..3cac828053d1f 100644 --- a/src/libraries/System.Dynamic.Runtime/System.Dynamic.Runtime.sln +++ b/src/libraries/System.Dynamic.Runtime/System.Dynamic.Runtime.sln @@ -26,18 +26,18 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {0BFD6D9F-DF9E-4B17-8ED4-29437AE5B04A}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {0BFD6D9F-DF9E-4B17-8ED4-29437AE5B04A}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {0BFD6D9F-DF9E-4B17-8ED4-29437AE5B04A}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {0BFD6D9F-DF9E-4B17-8ED4-29437AE5B04A}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU - {C4E89B8C-07DB-40CA-8C99-82A23E8F5F39}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {C4E89B8C-07DB-40CA-8C99-82A23E8F5F39}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {C4E89B8C-07DB-40CA-8C99-82A23E8F5F39}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {C4E89B8C-07DB-40CA-8C99-82A23E8F5F39}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU - {4E604291-4118-4CD6-B790-BA5F4F8C1A18}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {4E604291-4118-4CD6-B790-BA5F4F8C1A18}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {4E604291-4118-4CD6-B790-BA5F4F8C1A18}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {4E604291-4118-4CD6-B790-BA5F4F8C1A18}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU + {0BFD6D9F-DF9E-4B17-8ED4-29437AE5B04A}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {0BFD6D9F-DF9E-4B17-8ED4-29437AE5B04A}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {0BFD6D9F-DF9E-4B17-8ED4-29437AE5B04A}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {0BFD6D9F-DF9E-4B17-8ED4-29437AE5B04A}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU + {C4E89B8C-07DB-40CA-8C99-82A23E8F5F39}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {C4E89B8C-07DB-40CA-8C99-82A23E8F5F39}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {C4E89B8C-07DB-40CA-8C99-82A23E8F5F39}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {C4E89B8C-07DB-40CA-8C99-82A23E8F5F39}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU + {4E604291-4118-4CD6-B790-BA5F4F8C1A18}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {4E604291-4118-4CD6-B790-BA5F4F8C1A18}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {4E604291-4118-4CD6-B790-BA5F4F8C1A18}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {4E604291-4118-4CD6-B790-BA5F4F8C1A18}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/src/libraries/System.Dynamic.Runtime/ref/Configurations.props b/src/libraries/System.Dynamic.Runtime/ref/Configurations.props index 55d2de1d23f8d..7ac45c966c456 100644 --- a/src/libraries/System.Dynamic.Runtime/ref/Configurations.props +++ b/src/libraries/System.Dynamic.Runtime/ref/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Dynamic.Runtime/ref/System.Dynamic.Runtime.csproj b/src/libraries/System.Dynamic.Runtime/ref/System.Dynamic.Runtime.csproj index 00d55a5a4f1af..c70b4e12f03ff 100644 --- a/src/libraries/System.Dynamic.Runtime/ref/System.Dynamic.Runtime.csproj +++ b/src/libraries/System.Dynamic.Runtime/ref/System.Dynamic.Runtime.csproj @@ -1,6 +1,6 @@ - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release diff --git a/src/libraries/System.Dynamic.Runtime/src/Configurations.props b/src/libraries/System.Dynamic.Runtime/src/Configurations.props index 55d2de1d23f8d..7ac45c966c456 100644 --- a/src/libraries/System.Dynamic.Runtime/src/Configurations.props +++ b/src/libraries/System.Dynamic.Runtime/src/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Dynamic.Runtime/src/System.Dynamic.Runtime.csproj b/src/libraries/System.Dynamic.Runtime/src/System.Dynamic.Runtime.csproj index c5d30609b62f4..689fd0bf9f690 100644 --- a/src/libraries/System.Dynamic.Runtime/src/System.Dynamic.Runtime.csproj +++ b/src/libraries/System.Dynamic.Runtime/src/System.Dynamic.Runtime.csproj @@ -3,7 +3,7 @@ System.Dynamic.Runtime System.Dynamic.Runtime true - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release diff --git a/src/libraries/System.Dynamic.Runtime/tests/Configurations.props b/src/libraries/System.Dynamic.Runtime/tests/Configurations.props index 55d2de1d23f8d..7ac45c966c456 100644 --- a/src/libraries/System.Dynamic.Runtime/tests/Configurations.props +++ b/src/libraries/System.Dynamic.Runtime/tests/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Dynamic.Runtime/tests/System.Dynamic.Runtime.Tests.csproj b/src/libraries/System.Dynamic.Runtime/tests/System.Dynamic.Runtime.Tests.csproj index 976ea31130304..636b5aba47f23 100644 --- a/src/libraries/System.Dynamic.Runtime/tests/System.Dynamic.Runtime.Tests.csproj +++ b/src/libraries/System.Dynamic.Runtime/tests/System.Dynamic.Runtime.Tests.csproj @@ -2,7 +2,7 @@ true 67,168,219,414,162,184,458,464,78,169,114,693,108,1981,649,109,1066,3021,3026,3002,3014,3022,660,661,429;xUnit1013 - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release diff --git a/src/libraries/System.Globalization.Calendars/System.Globalization.Calendars.sln b/src/libraries/System.Globalization.Calendars/System.Globalization.Calendars.sln index 1072c6dd44a70..ed1bcbc6ceff5 100644 --- a/src/libraries/System.Globalization.Calendars/System.Globalization.Calendars.sln +++ b/src/libraries/System.Globalization.Calendars/System.Globalization.Calendars.sln @@ -31,22 +31,22 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {66BE33BB-790D-4D0C-9336-E073001CBD15}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {66BE33BB-790D-4D0C-9336-E073001CBD15}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {66BE33BB-790D-4D0C-9336-E073001CBD15}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {66BE33BB-790D-4D0C-9336-E073001CBD15}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU - {77BE33BB-790D-4D0C-9336-E073001CBD15}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {77BE33BB-790D-4D0C-9336-E073001CBD15}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {77BE33BB-790D-4D0C-9336-E073001CBD15}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {77BE33BB-790D-4D0C-9336-E073001CBD15}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU - {7126BEDB-0903-454A-8A2B-8BE1CBDF8F2E}.Debug|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Debug|Any CPU - {7126BEDB-0903-454A-8A2B-8BE1CBDF8F2E}.Debug|Any CPU.Build.0 = netcoreapp-Windows_NT-Debug|Any CPU - {7126BEDB-0903-454A-8A2B-8BE1CBDF8F2E}.Release|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Release|Any CPU - {7126BEDB-0903-454A-8A2B-8BE1CBDF8F2E}.Release|Any CPU.Build.0 = netcoreapp-Windows_NT-Release|Any CPU - {2BD6A51E-A2FE-4024-A21F-E1D7A24E7647}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {2BD6A51E-A2FE-4024-A21F-E1D7A24E7647}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {2BD6A51E-A2FE-4024-A21F-E1D7A24E7647}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {2BD6A51E-A2FE-4024-A21F-E1D7A24E7647}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU + {66BE33BB-790D-4D0C-9336-E073001CBD15}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {66BE33BB-790D-4D0C-9336-E073001CBD15}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {66BE33BB-790D-4D0C-9336-E073001CBD15}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {66BE33BB-790D-4D0C-9336-E073001CBD15}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU + {77BE33BB-790D-4D0C-9336-E073001CBD15}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {77BE33BB-790D-4D0C-9336-E073001CBD15}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {77BE33BB-790D-4D0C-9336-E073001CBD15}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {77BE33BB-790D-4D0C-9336-E073001CBD15}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU + {7126BEDB-0903-454A-8A2B-8BE1CBDF8F2E}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Debug|Any CPU + {7126BEDB-0903-454A-8A2B-8BE1CBDF8F2E}.Debug|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Debug|Any CPU + {7126BEDB-0903-454A-8A2B-8BE1CBDF8F2E}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Release|Any CPU + {7126BEDB-0903-454A-8A2B-8BE1CBDF8F2E}.Release|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Release|Any CPU + {2BD6A51E-A2FE-4024-A21F-E1D7A24E7647}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {2BD6A51E-A2FE-4024-A21F-E1D7A24E7647}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {2BD6A51E-A2FE-4024-A21F-E1D7A24E7647}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {2BD6A51E-A2FE-4024-A21F-E1D7A24E7647}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/src/libraries/System.Globalization.Calendars/ref/Configurations.props b/src/libraries/System.Globalization.Calendars/ref/Configurations.props index 55d2de1d23f8d..7ac45c966c456 100644 --- a/src/libraries/System.Globalization.Calendars/ref/Configurations.props +++ b/src/libraries/System.Globalization.Calendars/ref/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Globalization.Calendars/ref/System.Globalization.Calendars.csproj b/src/libraries/System.Globalization.Calendars/ref/System.Globalization.Calendars.csproj index b0ad5e4ad9026..683934b543e5a 100644 --- a/src/libraries/System.Globalization.Calendars/ref/System.Globalization.Calendars.csproj +++ b/src/libraries/System.Globalization.Calendars/ref/System.Globalization.Calendars.csproj @@ -1,6 +1,6 @@ - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release diff --git a/src/libraries/System.Globalization.Calendars/src/Configurations.props b/src/libraries/System.Globalization.Calendars/src/Configurations.props index db389259c06b1..f3922475141ae 100644 --- a/src/libraries/System.Globalization.Calendars/src/Configurations.props +++ b/src/libraries/System.Globalization.Calendars/src/Configurations.props @@ -1,8 +1,8 @@  - netcoreapp-Windows_NT; - netcoreapp-Unix; + $(NetCoreAppCurrent)-Windows_NT; + $(NetCoreAppCurrent)-Unix; diff --git a/src/libraries/System.Globalization.Calendars/src/System.Globalization.Calendars.csproj b/src/libraries/System.Globalization.Calendars/src/System.Globalization.Calendars.csproj index 09aaac9ffd978..f6eae82cda86d 100644 --- a/src/libraries/System.Globalization.Calendars/src/System.Globalization.Calendars.csproj +++ b/src/libraries/System.Globalization.Calendars/src/System.Globalization.Calendars.csproj @@ -2,7 +2,7 @@ System.Globalization.Calendars true - netcoreapp-Unix-Debug;netcoreapp-Unix-Release;netcoreapp-Windows_NT-Debug;netcoreapp-Windows_NT-Release + $(NetCoreAppCurrent)-Unix-Debug;$(NetCoreAppCurrent)-Unix-Release;$(NetCoreAppCurrent)-Windows_NT-Debug;$(NetCoreAppCurrent)-Windows_NT-Release diff --git a/src/libraries/System.Globalization.Calendars/tests/CalendarTestWithConfigSwitch/Configurations.props b/src/libraries/System.Globalization.Calendars/tests/CalendarTestWithConfigSwitch/Configurations.props index 89d6ac0f025b9..b6e0d3ce6383b 100644 --- a/src/libraries/System.Globalization.Calendars/tests/CalendarTestWithConfigSwitch/Configurations.props +++ b/src/libraries/System.Globalization.Calendars/tests/CalendarTestWithConfigSwitch/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Globalization.Calendars/tests/CalendarTestWithConfigSwitch/System.Globalization.CalendarsWithConfigSwitch.Tests.csproj b/src/libraries/System.Globalization.Calendars/tests/CalendarTestWithConfigSwitch/System.Globalization.CalendarsWithConfigSwitch.Tests.csproj index e458662774e8a..dc7ecb8d891f9 100644 --- a/src/libraries/System.Globalization.Calendars/tests/CalendarTestWithConfigSwitch/System.Globalization.CalendarsWithConfigSwitch.Tests.csproj +++ b/src/libraries/System.Globalization.Calendars/tests/CalendarTestWithConfigSwitch/System.Globalization.CalendarsWithConfigSwitch.Tests.csproj @@ -1,6 +1,6 @@  - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release true diff --git a/src/libraries/System.Globalization.Calendars/tests/Configurations.props b/src/libraries/System.Globalization.Calendars/tests/Configurations.props index beb53a974e680..c50114dc4221a 100644 --- a/src/libraries/System.Globalization.Calendars/tests/Configurations.props +++ b/src/libraries/System.Globalization.Calendars/tests/Configurations.props @@ -1,7 +1,7 @@ - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Globalization.Calendars/tests/System.Globalization.Calendars.Tests.csproj b/src/libraries/System.Globalization.Calendars/tests/System.Globalization.Calendars.Tests.csproj index e7cf25b1d5f38..82656cdacf750 100644 --- a/src/libraries/System.Globalization.Calendars/tests/System.Globalization.Calendars.Tests.csproj +++ b/src/libraries/System.Globalization.Calendars/tests/System.Globalization.Calendars.Tests.csproj @@ -1,6 +1,6 @@ - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release true diff --git a/src/libraries/System.Globalization.Extensions/System.Globalization.Extensions.sln b/src/libraries/System.Globalization.Extensions/System.Globalization.Extensions.sln index 58ee1246c0938..861a47920ca7d 100644 --- a/src/libraries/System.Globalization.Extensions/System.Globalization.Extensions.sln +++ b/src/libraries/System.Globalization.Extensions/System.Globalization.Extensions.sln @@ -26,18 +26,18 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {BC439554-4AB4-4C94-8E28-C00EDE4FD1C7}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {BC439554-4AB4-4C94-8E28-C00EDE4FD1C7}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {BC439554-4AB4-4C94-8E28-C00EDE4FD1C7}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {BC439554-4AB4-4C94-8E28-C00EDE4FD1C7}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU - {2B96AA10-84C0-4927-8611-8D2474B990E8}.Debug|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Debug|Any CPU - {2B96AA10-84C0-4927-8611-8D2474B990E8}.Debug|Any CPU.Build.0 = netcoreapp-Windows_NT-Debug|Any CPU - {2B96AA10-84C0-4927-8611-8D2474B990E8}.Release|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Release|Any CPU - {2B96AA10-84C0-4927-8611-8D2474B990E8}.Release|Any CPU.Build.0 = netcoreapp-Windows_NT-Release|Any CPU - {3634FAA3-A33E-406A-94EE-5611C6CC2810}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {3634FAA3-A33E-406A-94EE-5611C6CC2810}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {3634FAA3-A33E-406A-94EE-5611C6CC2810}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {3634FAA3-A33E-406A-94EE-5611C6CC2810}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU + {BC439554-4AB4-4C94-8E28-C00EDE4FD1C7}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {BC439554-4AB4-4C94-8E28-C00EDE4FD1C7}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {BC439554-4AB4-4C94-8E28-C00EDE4FD1C7}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {BC439554-4AB4-4C94-8E28-C00EDE4FD1C7}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU + {2B96AA10-84C0-4927-8611-8D2474B990E8}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Debug|Any CPU + {2B96AA10-84C0-4927-8611-8D2474B990E8}.Debug|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Debug|Any CPU + {2B96AA10-84C0-4927-8611-8D2474B990E8}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Release|Any CPU + {2B96AA10-84C0-4927-8611-8D2474B990E8}.Release|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Release|Any CPU + {3634FAA3-A33E-406A-94EE-5611C6CC2810}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {3634FAA3-A33E-406A-94EE-5611C6CC2810}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {3634FAA3-A33E-406A-94EE-5611C6CC2810}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {3634FAA3-A33E-406A-94EE-5611C6CC2810}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/src/libraries/System.Globalization.Extensions/ref/Configurations.props b/src/libraries/System.Globalization.Extensions/ref/Configurations.props index 55d2de1d23f8d..7ac45c966c456 100644 --- a/src/libraries/System.Globalization.Extensions/ref/Configurations.props +++ b/src/libraries/System.Globalization.Extensions/ref/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Globalization.Extensions/ref/System.Globalization.Extensions.csproj b/src/libraries/System.Globalization.Extensions/ref/System.Globalization.Extensions.csproj index 7fcfaed642b76..9132aa822903a 100644 --- a/src/libraries/System.Globalization.Extensions/ref/System.Globalization.Extensions.csproj +++ b/src/libraries/System.Globalization.Extensions/ref/System.Globalization.Extensions.csproj @@ -1,6 +1,6 @@ - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release diff --git a/src/libraries/System.Globalization.Extensions/src/Configurations.props b/src/libraries/System.Globalization.Extensions/src/Configurations.props index 1c0ceb0002ac4..f8d083e8f7a72 100644 --- a/src/libraries/System.Globalization.Extensions/src/Configurations.props +++ b/src/libraries/System.Globalization.Extensions/src/Configurations.props @@ -1,8 +1,8 @@  - netcoreapp-Unix; - netcoreapp-Windows_NT; + $(NetCoreAppCurrent)-Unix; + $(NetCoreAppCurrent)-Windows_NT; \ No newline at end of file diff --git a/src/libraries/System.Globalization.Extensions/src/System.Globalization.Extensions.csproj b/src/libraries/System.Globalization.Extensions/src/System.Globalization.Extensions.csproj index 03fb60f3ef7d2..722461d326b7a 100644 --- a/src/libraries/System.Globalization.Extensions/src/System.Globalization.Extensions.csproj +++ b/src/libraries/System.Globalization.Extensions/src/System.Globalization.Extensions.csproj @@ -6,7 +6,7 @@ System.Globalization.Extensions true true - netcoreapp-Unix-Debug;netcoreapp-Unix-Release;netcoreapp-Windows_NT-Debug;netcoreapp-Windows_NT-Release + $(NetCoreAppCurrent)-Unix-Debug;$(NetCoreAppCurrent)-Unix-Release;$(NetCoreAppCurrent)-Windows_NT-Debug;$(NetCoreAppCurrent)-Windows_NT-Release diff --git a/src/libraries/System.Globalization.Extensions/tests/Configurations.props b/src/libraries/System.Globalization.Extensions/tests/Configurations.props index 55d2de1d23f8d..7ac45c966c456 100644 --- a/src/libraries/System.Globalization.Extensions/tests/Configurations.props +++ b/src/libraries/System.Globalization.Extensions/tests/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Globalization.Extensions/tests/System.Globalization.Extensions.Tests.csproj b/src/libraries/System.Globalization.Extensions/tests/System.Globalization.Extensions.Tests.csproj index 2c326b8fd44c7..14e35b610ac81 100644 --- a/src/libraries/System.Globalization.Extensions/tests/System.Globalization.Extensions.Tests.csproj +++ b/src/libraries/System.Globalization.Extensions/tests/System.Globalization.Extensions.Tests.csproj @@ -1,6 +1,6 @@ - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release true diff --git a/src/libraries/System.Globalization/System.Globalization.sln b/src/libraries/System.Globalization/System.Globalization.sln index fa0df39c5b5df..084a2f7361eb1 100644 --- a/src/libraries/System.Globalization/System.Globalization.sln +++ b/src/libraries/System.Globalization/System.Globalization.sln @@ -31,22 +31,22 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {484C92C6-6D2C-45BC-A5E2-4A12BA228E1E}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {484C92C6-6D2C-45BC-A5E2-4A12BA228E1E}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {484C92C6-6D2C-45BC-A5E2-4A12BA228E1E}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {484C92C6-6D2C-45BC-A5E2-4A12BA228E1E}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU - {9A8926D9-1D4C-4069-8965-A626F6CA8C29}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {9A8926D9-1D4C-4069-8965-A626F6CA8C29}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {9A8926D9-1D4C-4069-8965-A626F6CA8C29}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {9A8926D9-1D4C-4069-8965-A626F6CA8C29}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU - {2395E8CA-73CB-40DF-BE40-A60BC189B737}.Debug|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Debug|Any CPU - {2395E8CA-73CB-40DF-BE40-A60BC189B737}.Debug|Any CPU.Build.0 = netcoreapp-Windows_NT-Debug|Any CPU - {2395E8CA-73CB-40DF-BE40-A60BC189B737}.Release|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Release|Any CPU - {2395E8CA-73CB-40DF-BE40-A60BC189B737}.Release|Any CPU.Build.0 = netcoreapp-Windows_NT-Release|Any CPU - {E1E58C98-808F-4065-9C1D-E6411166AF6F}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {E1E58C98-808F-4065-9C1D-E6411166AF6F}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {E1E58C98-808F-4065-9C1D-E6411166AF6F}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {E1E58C98-808F-4065-9C1D-E6411166AF6F}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU + {484C92C6-6D2C-45BC-A5E2-4A12BA228E1E}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {484C92C6-6D2C-45BC-A5E2-4A12BA228E1E}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {484C92C6-6D2C-45BC-A5E2-4A12BA228E1E}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {484C92C6-6D2C-45BC-A5E2-4A12BA228E1E}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU + {9A8926D9-1D4C-4069-8965-A626F6CA8C29}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {9A8926D9-1D4C-4069-8965-A626F6CA8C29}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {9A8926D9-1D4C-4069-8965-A626F6CA8C29}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {9A8926D9-1D4C-4069-8965-A626F6CA8C29}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU + {2395E8CA-73CB-40DF-BE40-A60BC189B737}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Debug|Any CPU + {2395E8CA-73CB-40DF-BE40-A60BC189B737}.Debug|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Debug|Any CPU + {2395E8CA-73CB-40DF-BE40-A60BC189B737}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Release|Any CPU + {2395E8CA-73CB-40DF-BE40-A60BC189B737}.Release|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Release|Any CPU + {E1E58C98-808F-4065-9C1D-E6411166AF6F}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {E1E58C98-808F-4065-9C1D-E6411166AF6F}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {E1E58C98-808F-4065-9C1D-E6411166AF6F}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {E1E58C98-808F-4065-9C1D-E6411166AF6F}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/src/libraries/System.Globalization/ref/Configurations.props b/src/libraries/System.Globalization/ref/Configurations.props index 55d2de1d23f8d..7ac45c966c456 100644 --- a/src/libraries/System.Globalization/ref/Configurations.props +++ b/src/libraries/System.Globalization/ref/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Globalization/ref/System.Globalization.csproj b/src/libraries/System.Globalization/ref/System.Globalization.csproj index a9f6d99640703..8a816920a7f26 100644 --- a/src/libraries/System.Globalization/ref/System.Globalization.csproj +++ b/src/libraries/System.Globalization/ref/System.Globalization.csproj @@ -1,6 +1,6 @@ - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release diff --git a/src/libraries/System.Globalization/src/Configurations.props b/src/libraries/System.Globalization/src/Configurations.props index db389259c06b1..f3922475141ae 100644 --- a/src/libraries/System.Globalization/src/Configurations.props +++ b/src/libraries/System.Globalization/src/Configurations.props @@ -1,8 +1,8 @@  - netcoreapp-Windows_NT; - netcoreapp-Unix; + $(NetCoreAppCurrent)-Windows_NT; + $(NetCoreAppCurrent)-Unix; diff --git a/src/libraries/System.Globalization/src/System.Globalization.csproj b/src/libraries/System.Globalization/src/System.Globalization.csproj index d29735d22c0d3..cb7009c707094 100644 --- a/src/libraries/System.Globalization/src/System.Globalization.csproj +++ b/src/libraries/System.Globalization/src/System.Globalization.csproj @@ -2,7 +2,7 @@ System.Globalization true - netcoreapp-Unix-Debug;netcoreapp-Unix-Release;netcoreapp-Windows_NT-Debug;netcoreapp-Windows_NT-Release + $(NetCoreAppCurrent)-Unix-Debug;$(NetCoreAppCurrent)-Unix-Release;$(NetCoreAppCurrent)-Windows_NT-Debug;$(NetCoreAppCurrent)-Windows_NT-Release diff --git a/src/libraries/System.Globalization/tests/Configurations.props b/src/libraries/System.Globalization/tests/Configurations.props index 55d2de1d23f8d..7ac45c966c456 100644 --- a/src/libraries/System.Globalization/tests/Configurations.props +++ b/src/libraries/System.Globalization/tests/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Globalization/tests/Invariant/Configurations.props b/src/libraries/System.Globalization/tests/Invariant/Configurations.props index 89d6ac0f025b9..b6e0d3ce6383b 100644 --- a/src/libraries/System.Globalization/tests/Invariant/Configurations.props +++ b/src/libraries/System.Globalization/tests/Invariant/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Globalization/tests/Invariant/Invariant.Tests.csproj b/src/libraries/System.Globalization/tests/Invariant/Invariant.Tests.csproj index 00292d26b2c88..4cc696c953e1d 100644 --- a/src/libraries/System.Globalization/tests/Invariant/Invariant.Tests.csproj +++ b/src/libraries/System.Globalization/tests/Invariant/Invariant.Tests.csproj @@ -1,6 +1,6 @@  - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release true diff --git a/src/libraries/System.Globalization/tests/System.Globalization.Tests.csproj b/src/libraries/System.Globalization/tests/System.Globalization.Tests.csproj index 9d36854f192a6..d5dcfcdcffeb9 100644 --- a/src/libraries/System.Globalization/tests/System.Globalization.Tests.csproj +++ b/src/libraries/System.Globalization/tests/System.Globalization.Tests.csproj @@ -3,7 +3,7 @@ true true true - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release diff --git a/src/libraries/System.IO.Compression.Brotli/System.IO.Compression.Brotli.sln b/src/libraries/System.IO.Compression.Brotli/System.IO.Compression.Brotli.sln index 92298d174de0e..bd33a9468d285 100644 --- a/src/libraries/System.IO.Compression.Brotli/System.IO.Compression.Brotli.sln +++ b/src/libraries/System.IO.Compression.Brotli/System.IO.Compression.Brotli.sln @@ -26,18 +26,18 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {BC2E1649-291D-412E-9529-EDDA94FA7AD6}.Debug|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Debug|Any CPU - {BC2E1649-291D-412E-9529-EDDA94FA7AD6}.Debug|Any CPU.Build.0 = netcoreapp-Windows_NT-Debug|Any CPU - {BC2E1649-291D-412E-9529-EDDA94FA7AD6}.Release|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Release|Any CPU - {BC2E1649-291D-412E-9529-EDDA94FA7AD6}.Release|Any CPU.Build.0 = netcoreapp-Windows_NT-Release|Any CPU - {5471BFE8-8071-466F-838E-5ADAA779E742}.Debug|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Debug|Any CPU - {5471BFE8-8071-466F-838E-5ADAA779E742}.Debug|Any CPU.Build.0 = netcoreapp-Windows_NT-Debug|Any CPU - {5471BFE8-8071-466F-838E-5ADAA779E742}.Release|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Release|Any CPU - {5471BFE8-8071-466F-838E-5ADAA779E742}.Release|Any CPU.Build.0 = netcoreapp-Windows_NT-Release|Any CPU - {4ADD9456-A929-4254-B8A2-16FC628ABFDA}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {4ADD9456-A929-4254-B8A2-16FC628ABFDA}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {4ADD9456-A929-4254-B8A2-16FC628ABFDA}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {4ADD9456-A929-4254-B8A2-16FC628ABFDA}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU + {BC2E1649-291D-412E-9529-EDDA94FA7AD6}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Debug|Any CPU + {BC2E1649-291D-412E-9529-EDDA94FA7AD6}.Debug|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Debug|Any CPU + {BC2E1649-291D-412E-9529-EDDA94FA7AD6}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Release|Any CPU + {BC2E1649-291D-412E-9529-EDDA94FA7AD6}.Release|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Release|Any CPU + {5471BFE8-8071-466F-838E-5ADAA779E742}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Debug|Any CPU + {5471BFE8-8071-466F-838E-5ADAA779E742}.Debug|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Debug|Any CPU + {5471BFE8-8071-466F-838E-5ADAA779E742}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Release|Any CPU + {5471BFE8-8071-466F-838E-5ADAA779E742}.Release|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Release|Any CPU + {4ADD9456-A929-4254-B8A2-16FC628ABFDA}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {4ADD9456-A929-4254-B8A2-16FC628ABFDA}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {4ADD9456-A929-4254-B8A2-16FC628ABFDA}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {4ADD9456-A929-4254-B8A2-16FC628ABFDA}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/src/libraries/System.IO.Compression.Brotli/ref/Configurations.props b/src/libraries/System.IO.Compression.Brotli/ref/Configurations.props index 55d2de1d23f8d..7ac45c966c456 100644 --- a/src/libraries/System.IO.Compression.Brotli/ref/Configurations.props +++ b/src/libraries/System.IO.Compression.Brotli/ref/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.IO.Compression.Brotli/ref/System.IO.Compression.Brotli.csproj b/src/libraries/System.IO.Compression.Brotli/ref/System.IO.Compression.Brotli.csproj index 5dd840193e61d..b241a21b6d2ad 100644 --- a/src/libraries/System.IO.Compression.Brotli/ref/System.IO.Compression.Brotli.csproj +++ b/src/libraries/System.IO.Compression.Brotli/ref/System.IO.Compression.Brotli.csproj @@ -1,7 +1,7 @@ enable - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release diff --git a/src/libraries/System.IO.Compression.Brotli/src/Configurations.props b/src/libraries/System.IO.Compression.Brotli/src/Configurations.props index 1c0ceb0002ac4..f8d083e8f7a72 100644 --- a/src/libraries/System.IO.Compression.Brotli/src/Configurations.props +++ b/src/libraries/System.IO.Compression.Brotli/src/Configurations.props @@ -1,8 +1,8 @@  - netcoreapp-Unix; - netcoreapp-Windows_NT; + $(NetCoreAppCurrent)-Unix; + $(NetCoreAppCurrent)-Windows_NT; \ No newline at end of file diff --git a/src/libraries/System.IO.Compression.Brotli/src/System.IO.Compression.Brotli.csproj b/src/libraries/System.IO.Compression.Brotli/src/System.IO.Compression.Brotli.csproj index a13db20faf634..72f83901f0141 100644 --- a/src/libraries/System.IO.Compression.Brotli/src/System.IO.Compression.Brotli.csproj +++ b/src/libraries/System.IO.Compression.Brotli/src/System.IO.Compression.Brotli.csproj @@ -4,7 +4,7 @@ Library true enable - netcoreapp-Unix-Debug;netcoreapp-Unix-Release;netcoreapp-Windows_NT-Debug;netcoreapp-Windows_NT-Release + $(NetCoreAppCurrent)-Unix-Debug;$(NetCoreAppCurrent)-Unix-Release;$(NetCoreAppCurrent)-Windows_NT-Debug;$(NetCoreAppCurrent)-Windows_NT-Release diff --git a/src/libraries/System.IO.Compression.Brotli/tests/Configurations.props b/src/libraries/System.IO.Compression.Brotli/tests/Configurations.props index 1c0ceb0002ac4..f8d083e8f7a72 100644 --- a/src/libraries/System.IO.Compression.Brotli/tests/Configurations.props +++ b/src/libraries/System.IO.Compression.Brotli/tests/Configurations.props @@ -1,8 +1,8 @@  - netcoreapp-Unix; - netcoreapp-Windows_NT; + $(NetCoreAppCurrent)-Unix; + $(NetCoreAppCurrent)-Windows_NT; \ No newline at end of file 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 59838b7440d2c..699eef5047c3d 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 @@ -1,7 +1,7 @@ $(DefineConstants);STREAM_MEMORY_OVERLOADS_AVAILABLE - netcoreapp-Unix-Debug;netcoreapp-Unix-Release;netcoreapp-Windows_NT-Debug;netcoreapp-Windows_NT-Release + $(NetCoreAppCurrent)-Unix-Debug;$(NetCoreAppCurrent)-Unix-Release;$(NetCoreAppCurrent)-Windows_NT-Debug;$(NetCoreAppCurrent)-Windows_NT-Release diff --git a/src/libraries/System.IO.Compression.ZipFile/System.IO.Compression.ZipFile.sln b/src/libraries/System.IO.Compression.ZipFile/System.IO.Compression.ZipFile.sln index 365cee4a24231..25dfde9e207ec 100644 --- a/src/libraries/System.IO.Compression.ZipFile/System.IO.Compression.ZipFile.sln +++ b/src/libraries/System.IO.Compression.ZipFile/System.IO.Compression.ZipFile.sln @@ -26,18 +26,18 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {775727A6-DF41-4160-A7FD-180279A653C7}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {775727A6-DF41-4160-A7FD-180279A653C7}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {775727A6-DF41-4160-A7FD-180279A653C7}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {775727A6-DF41-4160-A7FD-180279A653C7}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU - {ACF967ED-7FC9-435C-B2C9-306626B7B6C6}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {ACF967ED-7FC9-435C-B2C9-306626B7B6C6}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {ACF967ED-7FC9-435C-B2C9-306626B7B6C6}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {ACF967ED-7FC9-435C-B2C9-306626B7B6C6}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU - {5208B51C-53E1-425A-A6A7-D3BB6BCCCF29}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {5208B51C-53E1-425A-A6A7-D3BB6BCCCF29}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {5208B51C-53E1-425A-A6A7-D3BB6BCCCF29}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {5208B51C-53E1-425A-A6A7-D3BB6BCCCF29}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU + {775727A6-DF41-4160-A7FD-180279A653C7}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {775727A6-DF41-4160-A7FD-180279A653C7}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {775727A6-DF41-4160-A7FD-180279A653C7}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {775727A6-DF41-4160-A7FD-180279A653C7}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU + {ACF967ED-7FC9-435C-B2C9-306626B7B6C6}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {ACF967ED-7FC9-435C-B2C9-306626B7B6C6}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {ACF967ED-7FC9-435C-B2C9-306626B7B6C6}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {ACF967ED-7FC9-435C-B2C9-306626B7B6C6}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU + {5208B51C-53E1-425A-A6A7-D3BB6BCCCF29}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {5208B51C-53E1-425A-A6A7-D3BB6BCCCF29}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {5208B51C-53E1-425A-A6A7-D3BB6BCCCF29}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {5208B51C-53E1-425A-A6A7-D3BB6BCCCF29}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/src/libraries/System.IO.Compression.ZipFile/ref/Configurations.props b/src/libraries/System.IO.Compression.ZipFile/ref/Configurations.props index 55d2de1d23f8d..7ac45c966c456 100644 --- a/src/libraries/System.IO.Compression.ZipFile/ref/Configurations.props +++ b/src/libraries/System.IO.Compression.ZipFile/ref/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.IO.Compression.ZipFile/ref/System.IO.Compression.ZipFile.csproj b/src/libraries/System.IO.Compression.ZipFile/ref/System.IO.Compression.ZipFile.csproj index dff22c476bd7d..6eb131605a822 100644 --- a/src/libraries/System.IO.Compression.ZipFile/ref/System.IO.Compression.ZipFile.csproj +++ b/src/libraries/System.IO.Compression.ZipFile/ref/System.IO.Compression.ZipFile.csproj @@ -1,6 +1,6 @@ - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release diff --git a/src/libraries/System.IO.Compression.ZipFile/src/Configurations.props b/src/libraries/System.IO.Compression.ZipFile/src/Configurations.props index 55d2de1d23f8d..7ac45c966c456 100644 --- a/src/libraries/System.IO.Compression.ZipFile/src/Configurations.props +++ b/src/libraries/System.IO.Compression.ZipFile/src/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.IO.Compression.ZipFile/src/System.IO.Compression.ZipFile.csproj b/src/libraries/System.IO.Compression.ZipFile/src/System.IO.Compression.ZipFile.csproj index e4e0c5aeb9a81..09c9f31600a1d 100644 --- a/src/libraries/System.IO.Compression.ZipFile/src/System.IO.Compression.ZipFile.csproj +++ b/src/libraries/System.IO.Compression.ZipFile/src/System.IO.Compression.ZipFile.csproj @@ -3,7 +3,7 @@ System.IO.Compression.ZipFile true $(NoWarn);CS1573 - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release diff --git a/src/libraries/System.IO.Compression.ZipFile/tests/Configurations.props b/src/libraries/System.IO.Compression.ZipFile/tests/Configurations.props index 55d2de1d23f8d..7ac45c966c456 100644 --- a/src/libraries/System.IO.Compression.ZipFile/tests/Configurations.props +++ b/src/libraries/System.IO.Compression.ZipFile/tests/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ 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 41c18389c57cb..be319c4daf834 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 @@ -1,6 +1,6 @@ - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release diff --git a/src/libraries/System.IO.Compression/System.IO.Compression.sln b/src/libraries/System.IO.Compression/System.IO.Compression.sln index 56dddb143ffb8..c12272ebe453b 100644 --- a/src/libraries/System.IO.Compression/System.IO.Compression.sln +++ b/src/libraries/System.IO.Compression/System.IO.Compression.sln @@ -26,18 +26,18 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {17DA7FB5-4370-4385-9A02-FFEF9F482903}.Debug|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Debug|Any CPU - {17DA7FB5-4370-4385-9A02-FFEF9F482903}.Debug|Any CPU.Build.0 = netcoreapp-Windows_NT-Debug|Any CPU - {17DA7FB5-4370-4385-9A02-FFEF9F482903}.Release|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Release|Any CPU - {17DA7FB5-4370-4385-9A02-FFEF9F482903}.Release|Any CPU.Build.0 = netcoreapp-Windows_NT-Release|Any CPU - {E9ED0A04-23A8-4F8B-82C1-2B18AF74C870}.Debug|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Debug|Any CPU - {E9ED0A04-23A8-4F8B-82C1-2B18AF74C870}.Debug|Any CPU.Build.0 = netcoreapp-Windows_NT-Debug|Any CPU - {E9ED0A04-23A8-4F8B-82C1-2B18AF74C870}.Release|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Release|Any CPU - {E9ED0A04-23A8-4F8B-82C1-2B18AF74C870}.Release|Any CPU.Build.0 = netcoreapp-Windows_NT-Release|Any CPU - {7CBACE0E-E07C-4ADB-A413-ADEC0CACBD43}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {7CBACE0E-E07C-4ADB-A413-ADEC0CACBD43}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {7CBACE0E-E07C-4ADB-A413-ADEC0CACBD43}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {7CBACE0E-E07C-4ADB-A413-ADEC0CACBD43}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU + {17DA7FB5-4370-4385-9A02-FFEF9F482903}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Debug|Any CPU + {17DA7FB5-4370-4385-9A02-FFEF9F482903}.Debug|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Debug|Any CPU + {17DA7FB5-4370-4385-9A02-FFEF9F482903}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Release|Any CPU + {17DA7FB5-4370-4385-9A02-FFEF9F482903}.Release|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Release|Any CPU + {E9ED0A04-23A8-4F8B-82C1-2B18AF74C870}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Debug|Any CPU + {E9ED0A04-23A8-4F8B-82C1-2B18AF74C870}.Debug|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Debug|Any CPU + {E9ED0A04-23A8-4F8B-82C1-2B18AF74C870}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Release|Any CPU + {E9ED0A04-23A8-4F8B-82C1-2B18AF74C870}.Release|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Release|Any CPU + {7CBACE0E-E07C-4ADB-A413-ADEC0CACBD43}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {7CBACE0E-E07C-4ADB-A413-ADEC0CACBD43}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {7CBACE0E-E07C-4ADB-A413-ADEC0CACBD43}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {7CBACE0E-E07C-4ADB-A413-ADEC0CACBD43}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/src/libraries/System.IO.Compression/ref/Configurations.props b/src/libraries/System.IO.Compression/ref/Configurations.props index 55d2de1d23f8d..7ac45c966c456 100644 --- a/src/libraries/System.IO.Compression/ref/Configurations.props +++ b/src/libraries/System.IO.Compression/ref/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.IO.Compression/ref/System.IO.Compression.csproj b/src/libraries/System.IO.Compression/ref/System.IO.Compression.csproj index 40de8f591572c..7f549dc0350db 100644 --- a/src/libraries/System.IO.Compression/ref/System.IO.Compression.csproj +++ b/src/libraries/System.IO.Compression/ref/System.IO.Compression.csproj @@ -1,6 +1,6 @@ - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release enable diff --git a/src/libraries/System.IO.Compression/src/Configurations.props b/src/libraries/System.IO.Compression/src/Configurations.props index 1c0ceb0002ac4..f8d083e8f7a72 100644 --- a/src/libraries/System.IO.Compression/src/Configurations.props +++ b/src/libraries/System.IO.Compression/src/Configurations.props @@ -1,8 +1,8 @@  - netcoreapp-Unix; - netcoreapp-Windows_NT; + $(NetCoreAppCurrent)-Unix; + $(NetCoreAppCurrent)-Windows_NT; \ No newline at end of file diff --git a/src/libraries/System.IO.Compression/src/System.IO.Compression.csproj b/src/libraries/System.IO.Compression/src/System.IO.Compression.csproj index b98f947a201bb..c3443265ebc1d 100644 --- a/src/libraries/System.IO.Compression/src/System.IO.Compression.csproj +++ b/src/libraries/System.IO.Compression/src/System.IO.Compression.csproj @@ -3,7 +3,7 @@ System.IO.Compression Library true - netcoreapp-Unix-Debug;netcoreapp-Unix-Release;netcoreapp-Windows_NT-Debug;netcoreapp-Windows_NT-Release + $(NetCoreAppCurrent)-Unix-Debug;$(NetCoreAppCurrent)-Unix-Release;$(NetCoreAppCurrent)-Windows_NT-Debug;$(NetCoreAppCurrent)-Windows_NT-Release enable diff --git a/src/libraries/System.IO.Compression/tests/Configurations.props b/src/libraries/System.IO.Compression/tests/Configurations.props index 1c0ceb0002ac4..f8d083e8f7a72 100644 --- a/src/libraries/System.IO.Compression/tests/Configurations.props +++ b/src/libraries/System.IO.Compression/tests/Configurations.props @@ -1,8 +1,8 @@  - netcoreapp-Unix; - netcoreapp-Windows_NT; + $(NetCoreAppCurrent)-Unix; + $(NetCoreAppCurrent)-Windows_NT; \ 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 908bad838fe81..bc96746dfc62c 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 @@ -2,7 +2,7 @@ $(DefineConstants);STREAM_MEMORY_OVERLOADS_AVAILABLE - netcoreapp-Unix-Debug;netcoreapp-Unix-Release;netcoreapp-Windows_NT-Debug;netcoreapp-Windows_NT-Release + $(NetCoreAppCurrent)-Unix-Debug;$(NetCoreAppCurrent)-Unix-Release;$(NetCoreAppCurrent)-Windows_NT-Debug;$(NetCoreAppCurrent)-Windows_NT-Release diff --git a/src/libraries/System.IO.FileSystem.AccessControl/System.IO.FileSystem.AccessControl.sln b/src/libraries/System.IO.FileSystem.AccessControl/System.IO.FileSystem.AccessControl.sln index e4e3294c54650..18ee411344275 100644 --- a/src/libraries/System.IO.FileSystem.AccessControl/System.IO.FileSystem.AccessControl.sln +++ b/src/libraries/System.IO.FileSystem.AccessControl/System.IO.FileSystem.AccessControl.sln @@ -26,14 +26,14 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {5915DD11-5D57-45A9-BFB0-56FEB7741E1F}.Debug|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Debug|Any CPU - {5915DD11-5D57-45A9-BFB0-56FEB7741E1F}.Debug|Any CPU.Build.0 = netcoreapp-Windows_NT-Debug|Any CPU - {5915DD11-5D57-45A9-BFB0-56FEB7741E1F}.Release|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Release|Any CPU - {5915DD11-5D57-45A9-BFB0-56FEB7741E1F}.Release|Any CPU.Build.0 = netcoreapp-Windows_NT-Release|Any CPU - {D77FBA6C-1AA6-45A4-93E2-97A370672C53}.Debug|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Debug|Any CPU - {D77FBA6C-1AA6-45A4-93E2-97A370672C53}.Debug|Any CPU.Build.0 = netcoreapp-Windows_NT-Debug|Any CPU - {D77FBA6C-1AA6-45A4-93E2-97A370672C53}.Release|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Release|Any CPU - {D77FBA6C-1AA6-45A4-93E2-97A370672C53}.Release|Any CPU.Build.0 = netcoreapp-Windows_NT-Release|Any CPU + {5915DD11-5D57-45A9-BFB0-56FEB7741E1F}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Debug|Any CPU + {5915DD11-5D57-45A9-BFB0-56FEB7741E1F}.Debug|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Debug|Any CPU + {5915DD11-5D57-45A9-BFB0-56FEB7741E1F}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Release|Any CPU + {5915DD11-5D57-45A9-BFB0-56FEB7741E1F}.Release|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Release|Any CPU + {D77FBA6C-1AA6-45A4-93E2-97A370672C53}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Debug|Any CPU + {D77FBA6C-1AA6-45A4-93E2-97A370672C53}.Debug|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Debug|Any CPU + {D77FBA6C-1AA6-45A4-93E2-97A370672C53}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Release|Any CPU + {D77FBA6C-1AA6-45A4-93E2-97A370672C53}.Release|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Release|Any CPU {88A04AB0-F61E-4DD2-9E12-928DCA261263}.Debug|Any CPU.ActiveCfg = netstandard2.0-Debug|Any CPU {88A04AB0-F61E-4DD2-9E12-928DCA261263}.Debug|Any CPU.Build.0 = netstandard2.0-Debug|Any CPU {88A04AB0-F61E-4DD2-9E12-928DCA261263}.Release|Any CPU.ActiveCfg = netstandard2.0-Release|Any CPU diff --git a/src/libraries/System.IO.FileSystem.AccessControl/ref/Configurations.props b/src/libraries/System.IO.FileSystem.AccessControl/ref/Configurations.props index d45a867033f59..3f9144e6b2648 100644 --- a/src/libraries/System.IO.FileSystem.AccessControl/ref/Configurations.props +++ b/src/libraries/System.IO.FileSystem.AccessControl/ref/Configurations.props @@ -6,7 +6,7 @@ $(PackageConfigurations) - netfx; + $(NetFrameworkCurrent); net461; diff --git a/src/libraries/System.IO.FileSystem.AccessControl/ref/System.IO.FileSystem.AccessControl.csproj b/src/libraries/System.IO.FileSystem.AccessControl/ref/System.IO.FileSystem.AccessControl.csproj index ac05089124d79..dbc2ca8c72681 100644 --- a/src/libraries/System.IO.FileSystem.AccessControl/ref/System.IO.FileSystem.AccessControl.csproj +++ b/src/libraries/System.IO.FileSystem.AccessControl/ref/System.IO.FileSystem.AccessControl.csproj @@ -1,7 +1,7 @@ true - net461-Debug;net461-Debug;net461-Release;net461-Release;netfx-Debug;netfx-Release;netstandard2.0-Debug;netstandard2.0-Release + net461-Debug;net461-Debug;net461-Release;net461-Release;$(NetFrameworkCurrent)-Debug;$(NetFrameworkCurrent)-Release;netstandard2.0-Debug;netstandard2.0-Release diff --git a/src/libraries/System.IO.FileSystem.AccessControl/src/Configurations.props b/src/libraries/System.IO.FileSystem.AccessControl/src/Configurations.props index 1592bf1cc561c..9bfc9e62e1a03 100644 --- a/src/libraries/System.IO.FileSystem.AccessControl/src/Configurations.props +++ b/src/libraries/System.IO.FileSystem.AccessControl/src/Configurations.props @@ -7,8 +7,8 @@ $(PackageConfigurations); - netcoreapp-Windows_NT; - netfx-Windows_NT; + $(NetCoreAppCurrent)-Windows_NT; + $(NetFrameworkCurrent)-Windows_NT; \ No newline at end of file diff --git a/src/libraries/System.IO.FileSystem.AccessControl/src/System.IO.FileSystem.AccessControl.csproj b/src/libraries/System.IO.FileSystem.AccessControl/src/System.IO.FileSystem.AccessControl.csproj index 8361029299889..65f2e7635294e 100644 --- a/src/libraries/System.IO.FileSystem.AccessControl/src/System.IO.FileSystem.AccessControl.csproj +++ b/src/libraries/System.IO.FileSystem.AccessControl/src/System.IO.FileSystem.AccessControl.csproj @@ -3,7 +3,7 @@ true true SR.PlatformNotSupported_AccessControl - net461-Windows_NT-Debug;net461-Windows_NT-Release;netcoreapp-Windows_NT-Debug;netcoreapp-Windows_NT-Release;netfx-Windows_NT-Debug;netfx-Windows_NT-Release;netstandard2.0-Debug;netstandard2.0-Release;netstandard2.0-Windows_NT-Debug;netstandard2.0-Windows_NT-Release + net461-Windows_NT-Debug;net461-Windows_NT-Release;$(NetCoreAppCurrent)-Windows_NT-Debug;$(NetCoreAppCurrent)-Windows_NT-Release;$(NetFrameworkCurrent)-Windows_NT-Debug;$(NetFrameworkCurrent)-Windows_NT-Release;netstandard2.0-Debug;netstandard2.0-Release;netstandard2.0-Windows_NT-Debug;netstandard2.0-Windows_NT-Release annotations diff --git a/src/libraries/System.IO.FileSystem.AccessControl/tests/Configurations.props b/src/libraries/System.IO.FileSystem.AccessControl/tests/Configurations.props index c84dc3ce914ad..372831019a146 100644 --- a/src/libraries/System.IO.FileSystem.AccessControl/tests/Configurations.props +++ b/src/libraries/System.IO.FileSystem.AccessControl/tests/Configurations.props @@ -1,8 +1,8 @@  - netcoreapp-Windows_NT; - netfx-Windows_NT; + $(NetCoreAppCurrent)-Windows_NT; + $(NetFrameworkCurrent)-Windows_NT; \ No newline at end of file diff --git a/src/libraries/System.IO.FileSystem.AccessControl/tests/System.IO.FileSystem.AccessControl.Tests.csproj b/src/libraries/System.IO.FileSystem.AccessControl/tests/System.IO.FileSystem.AccessControl.Tests.csproj index 99ab7939cfb71..17e9d5c601fda 100644 --- a/src/libraries/System.IO.FileSystem.AccessControl/tests/System.IO.FileSystem.AccessControl.Tests.csproj +++ b/src/libraries/System.IO.FileSystem.AccessControl/tests/System.IO.FileSystem.AccessControl.Tests.csproj @@ -1,6 +1,6 @@ - netcoreapp-Windows_NT-Debug;netcoreapp-Windows_NT-Release;netfx-Windows_NT-Debug;netfx-Windows_NT-Release + $(NetCoreAppCurrent)-Windows_NT-Debug;$(NetCoreAppCurrent)-Windows_NT-Release;$(NetFrameworkCurrent)-Windows_NT-Debug;$(NetFrameworkCurrent)-Windows_NT-Release diff --git a/src/libraries/System.IO.FileSystem.DriveInfo/System.IO.FileSystem.DriveInfo.sln b/src/libraries/System.IO.FileSystem.DriveInfo/System.IO.FileSystem.DriveInfo.sln index 199df552c84c2..de096fdc5effe 100644 --- a/src/libraries/System.IO.FileSystem.DriveInfo/System.IO.FileSystem.DriveInfo.sln +++ b/src/libraries/System.IO.FileSystem.DriveInfo/System.IO.FileSystem.DriveInfo.sln @@ -26,18 +26,18 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {7D9E5F2F-5677-40FC-AD04-FA7D603E4806}.Debug|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Debug|Any CPU - {7D9E5F2F-5677-40FC-AD04-FA7D603E4806}.Debug|Any CPU.Build.0 = netcoreapp-Windows_NT-Debug|Any CPU - {7D9E5F2F-5677-40FC-AD04-FA7D603E4806}.Release|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Release|Any CPU - {7D9E5F2F-5677-40FC-AD04-FA7D603E4806}.Release|Any CPU.Build.0 = netcoreapp-Windows_NT-Release|Any CPU - {29C14AD7-DC03-45DC-897D-8DACC762707E}.Debug|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Debug|Any CPU - {29C14AD7-DC03-45DC-897D-8DACC762707E}.Debug|Any CPU.Build.0 = netcoreapp-Windows_NT-Debug|Any CPU - {29C14AD7-DC03-45DC-897D-8DACC762707E}.Release|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Release|Any CPU - {29C14AD7-DC03-45DC-897D-8DACC762707E}.Release|Any CPU.Build.0 = netcoreapp-Windows_NT-Release|Any CPU - {48CD5889-4CB2-42C2-A61C-8ECA3B267584}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {48CD5889-4CB2-42C2-A61C-8ECA3B267584}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {48CD5889-4CB2-42C2-A61C-8ECA3B267584}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {48CD5889-4CB2-42C2-A61C-8ECA3B267584}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU + {7D9E5F2F-5677-40FC-AD04-FA7D603E4806}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Debug|Any CPU + {7D9E5F2F-5677-40FC-AD04-FA7D603E4806}.Debug|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Debug|Any CPU + {7D9E5F2F-5677-40FC-AD04-FA7D603E4806}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Release|Any CPU + {7D9E5F2F-5677-40FC-AD04-FA7D603E4806}.Release|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Release|Any CPU + {29C14AD7-DC03-45DC-897D-8DACC762707E}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Debug|Any CPU + {29C14AD7-DC03-45DC-897D-8DACC762707E}.Debug|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Debug|Any CPU + {29C14AD7-DC03-45DC-897D-8DACC762707E}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Release|Any CPU + {29C14AD7-DC03-45DC-897D-8DACC762707E}.Release|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Release|Any CPU + {48CD5889-4CB2-42C2-A61C-8ECA3B267584}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {48CD5889-4CB2-42C2-A61C-8ECA3B267584}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {48CD5889-4CB2-42C2-A61C-8ECA3B267584}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {48CD5889-4CB2-42C2-A61C-8ECA3B267584}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/src/libraries/System.IO.FileSystem.DriveInfo/ref/Configurations.props b/src/libraries/System.IO.FileSystem.DriveInfo/ref/Configurations.props index 55d2de1d23f8d..7ac45c966c456 100644 --- a/src/libraries/System.IO.FileSystem.DriveInfo/ref/Configurations.props +++ b/src/libraries/System.IO.FileSystem.DriveInfo/ref/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.IO.FileSystem.DriveInfo/ref/System.IO.FileSystem.DriveInfo.csproj b/src/libraries/System.IO.FileSystem.DriveInfo/ref/System.IO.FileSystem.DriveInfo.csproj index 2027e8706f541..caa35345297c9 100644 --- a/src/libraries/System.IO.FileSystem.DriveInfo/ref/System.IO.FileSystem.DriveInfo.csproj +++ b/src/libraries/System.IO.FileSystem.DriveInfo/ref/System.IO.FileSystem.DriveInfo.csproj @@ -1,7 +1,7 @@ + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release enable - netcoreapp-Debug;netcoreapp-Release diff --git a/src/libraries/System.IO.FileSystem.DriveInfo/src/Configurations.props b/src/libraries/System.IO.FileSystem.DriveInfo/src/Configurations.props index 1c0ceb0002ac4..f8d083e8f7a72 100644 --- a/src/libraries/System.IO.FileSystem.DriveInfo/src/Configurations.props +++ b/src/libraries/System.IO.FileSystem.DriveInfo/src/Configurations.props @@ -1,8 +1,8 @@  - netcoreapp-Unix; - netcoreapp-Windows_NT; + $(NetCoreAppCurrent)-Unix; + $(NetCoreAppCurrent)-Windows_NT; \ No newline at end of file diff --git a/src/libraries/System.IO.FileSystem.DriveInfo/src/System.IO.FileSystem.DriveInfo.csproj b/src/libraries/System.IO.FileSystem.DriveInfo/src/System.IO.FileSystem.DriveInfo.csproj index cd18c3fb3a7fc..3d20d06d7acd3 100644 --- a/src/libraries/System.IO.FileSystem.DriveInfo/src/System.IO.FileSystem.DriveInfo.csproj +++ b/src/libraries/System.IO.FileSystem.DriveInfo/src/System.IO.FileSystem.DriveInfo.csproj @@ -3,8 +3,8 @@ System.IO.FileSystem.DriveInfo System.IO.FileSystem.DriveInfo true + $(NetCoreAppCurrent)-Unix-Debug;$(NetCoreAppCurrent)-Unix-Release;$(NetCoreAppCurrent)-Windows_NT-Debug;$(NetCoreAppCurrent)-Windows_NT-Release enable - netcoreapp-Unix-Debug;netcoreapp-Unix-Release;netcoreapp-Windows_NT-Debug;netcoreapp-Windows_NT-Release @@ -69,7 +69,7 @@ Common\System\IO\PathInternal.Windows.cs - + Common\Interop\Unix\Interop.Libraries.cs diff --git a/src/libraries/System.IO.FileSystem.DriveInfo/tests/Configurations.props b/src/libraries/System.IO.FileSystem.DriveInfo/tests/Configurations.props index 7e12b46ca40c5..c31cf2a4495cf 100644 --- a/src/libraries/System.IO.FileSystem.DriveInfo/tests/Configurations.props +++ b/src/libraries/System.IO.FileSystem.DriveInfo/tests/Configurations.props @@ -1,8 +1,8 @@  - netcoreapp-Unix; - netcoreapp-Windows_NT; + $(NetCoreAppCurrent)-Unix; + $(NetCoreAppCurrent)-Windows_NT; diff --git a/src/libraries/System.IO.FileSystem.DriveInfo/tests/System.IO.FileSystem.DriveInfo.Tests.csproj b/src/libraries/System.IO.FileSystem.DriveInfo/tests/System.IO.FileSystem.DriveInfo.Tests.csproj index 8a1f2f3b9b866..cccf5f413fba3 100644 --- a/src/libraries/System.IO.FileSystem.DriveInfo/tests/System.IO.FileSystem.DriveInfo.Tests.csproj +++ b/src/libraries/System.IO.FileSystem.DriveInfo/tests/System.IO.FileSystem.DriveInfo.Tests.csproj @@ -1,6 +1,6 @@ - netcoreapp-Unix-Debug;netcoreapp-Unix-Release;netcoreapp-Windows_NT-Debug;netcoreapp-Windows_NT-Release + $(NetCoreAppCurrent)-Unix-Debug;$(NetCoreAppCurrent)-Unix-Release;$(NetCoreAppCurrent)-Windows_NT-Debug;$(NetCoreAppCurrent)-Windows_NT-Release diff --git a/src/libraries/System.IO.FileSystem.Primitives/System.IO.FileSystem.Primitives.sln b/src/libraries/System.IO.FileSystem.Primitives/System.IO.FileSystem.Primitives.sln index 1ba575b8d7a44..dac0cbc03dba8 100644 --- a/src/libraries/System.IO.FileSystem.Primitives/System.IO.FileSystem.Primitives.sln +++ b/src/libraries/System.IO.FileSystem.Primitives/System.IO.FileSystem.Primitives.sln @@ -26,18 +26,18 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {2EF7EFA5-F171-4CAB-8A29-32833949FD87}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {2EF7EFA5-F171-4CAB-8A29-32833949FD87}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {2EF7EFA5-F171-4CAB-8A29-32833949FD87}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {2EF7EFA5-F171-4CAB-8A29-32833949FD87}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU - {6C05678E-394C-4CFF-B453-A18E28C8F2C3}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {6C05678E-394C-4CFF-B453-A18E28C8F2C3}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {6C05678E-394C-4CFF-B453-A18E28C8F2C3}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {6C05678E-394C-4CFF-B453-A18E28C8F2C3}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU - {45201E24-47CD-47AE-9350-B48C3FBE74EC}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {45201E24-47CD-47AE-9350-B48C3FBE74EC}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {45201E24-47CD-47AE-9350-B48C3FBE74EC}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {45201E24-47CD-47AE-9350-B48C3FBE74EC}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU + {2EF7EFA5-F171-4CAB-8A29-32833949FD87}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {2EF7EFA5-F171-4CAB-8A29-32833949FD87}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {2EF7EFA5-F171-4CAB-8A29-32833949FD87}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {2EF7EFA5-F171-4CAB-8A29-32833949FD87}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU + {6C05678E-394C-4CFF-B453-A18E28C8F2C3}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {6C05678E-394C-4CFF-B453-A18E28C8F2C3}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {6C05678E-394C-4CFF-B453-A18E28C8F2C3}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {6C05678E-394C-4CFF-B453-A18E28C8F2C3}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU + {45201E24-47CD-47AE-9350-B48C3FBE74EC}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {45201E24-47CD-47AE-9350-B48C3FBE74EC}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {45201E24-47CD-47AE-9350-B48C3FBE74EC}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {45201E24-47CD-47AE-9350-B48C3FBE74EC}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/src/libraries/System.IO.FileSystem.Primitives/ref/Configurations.props b/src/libraries/System.IO.FileSystem.Primitives/ref/Configurations.props index 55d2de1d23f8d..7ac45c966c456 100644 --- a/src/libraries/System.IO.FileSystem.Primitives/ref/Configurations.props +++ b/src/libraries/System.IO.FileSystem.Primitives/ref/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.IO.FileSystem.Primitives/ref/System.IO.FileSystem.Primitives.csproj b/src/libraries/System.IO.FileSystem.Primitives/ref/System.IO.FileSystem.Primitives.csproj index 30b24f2e4f730..51522ce3b7d24 100644 --- a/src/libraries/System.IO.FileSystem.Primitives/ref/System.IO.FileSystem.Primitives.csproj +++ b/src/libraries/System.IO.FileSystem.Primitives/ref/System.IO.FileSystem.Primitives.csproj @@ -1,6 +1,6 @@ - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release diff --git a/src/libraries/System.IO.FileSystem.Primitives/src/Configurations.props b/src/libraries/System.IO.FileSystem.Primitives/src/Configurations.props index 55d2de1d23f8d..7ac45c966c456 100644 --- a/src/libraries/System.IO.FileSystem.Primitives/src/Configurations.props +++ b/src/libraries/System.IO.FileSystem.Primitives/src/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.IO.FileSystem.Primitives/src/System.IO.FileSystem.Primitives.csproj b/src/libraries/System.IO.FileSystem.Primitives/src/System.IO.FileSystem.Primitives.csproj index 9987d32142e48..bbf4124e96c62 100644 --- a/src/libraries/System.IO.FileSystem.Primitives/src/System.IO.FileSystem.Primitives.csproj +++ b/src/libraries/System.IO.FileSystem.Primitives/src/System.IO.FileSystem.Primitives.csproj @@ -2,7 +2,7 @@ System.IO.FileSystem.Primitives true - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release diff --git a/src/libraries/System.IO.FileSystem.Primitives/tests/Configurations.props b/src/libraries/System.IO.FileSystem.Primitives/tests/Configurations.props index 55d2de1d23f8d..7ac45c966c456 100644 --- a/src/libraries/System.IO.FileSystem.Primitives/tests/Configurations.props +++ b/src/libraries/System.IO.FileSystem.Primitives/tests/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.IO.FileSystem.Primitives/tests/System.IO.FileSystem.Primitives.Tests.csproj b/src/libraries/System.IO.FileSystem.Primitives/tests/System.IO.FileSystem.Primitives.Tests.csproj index 53b7df55f62e6..2859a2f9eda6e 100644 --- a/src/libraries/System.IO.FileSystem.Primitives/tests/System.IO.FileSystem.Primitives.Tests.csproj +++ b/src/libraries/System.IO.FileSystem.Primitives/tests/System.IO.FileSystem.Primitives.Tests.csproj @@ -1,6 +1,6 @@ - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release true diff --git a/src/libraries/System.IO.FileSystem.Watcher/System.IO.FileSystem.Watcher.sln b/src/libraries/System.IO.FileSystem.Watcher/System.IO.FileSystem.Watcher.sln index 72fec8e04afb9..e682415d49703 100644 --- a/src/libraries/System.IO.FileSystem.Watcher/System.IO.FileSystem.Watcher.sln +++ b/src/libraries/System.IO.FileSystem.Watcher/System.IO.FileSystem.Watcher.sln @@ -26,18 +26,18 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {20411A66-C7A4-4941-8FA2-66308365FD22}.Debug|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Debug|Any CPU - {20411A66-C7A4-4941-8FA2-66308365FD22}.Debug|Any CPU.Build.0 = netcoreapp-Windows_NT-Debug|Any CPU - {20411A66-C7A4-4941-8FA2-66308365FD22}.Release|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Release|Any CPU - {20411A66-C7A4-4941-8FA2-66308365FD22}.Release|Any CPU.Build.0 = netcoreapp-Windows_NT-Release|Any CPU - {77E702D9-C6D8-4CE4-9941-D3056C3CCBED}.Debug|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Debug|Any CPU - {77E702D9-C6D8-4CE4-9941-D3056C3CCBED}.Debug|Any CPU.Build.0 = netcoreapp-Windows_NT-Debug|Any CPU - {77E702D9-C6D8-4CE4-9941-D3056C3CCBED}.Release|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Release|Any CPU - {77E702D9-C6D8-4CE4-9941-D3056C3CCBED}.Release|Any CPU.Build.0 = netcoreapp-Windows_NT-Release|Any CPU - {34E2C0E2-6C09-427D-BB75-702B3388CFC5}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {34E2C0E2-6C09-427D-BB75-702B3388CFC5}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {34E2C0E2-6C09-427D-BB75-702B3388CFC5}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {34E2C0E2-6C09-427D-BB75-702B3388CFC5}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU + {20411A66-C7A4-4941-8FA2-66308365FD22}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Debug|Any CPU + {20411A66-C7A4-4941-8FA2-66308365FD22}.Debug|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Debug|Any CPU + {20411A66-C7A4-4941-8FA2-66308365FD22}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Release|Any CPU + {20411A66-C7A4-4941-8FA2-66308365FD22}.Release|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Release|Any CPU + {77E702D9-C6D8-4CE4-9941-D3056C3CCBED}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Debug|Any CPU + {77E702D9-C6D8-4CE4-9941-D3056C3CCBED}.Debug|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Debug|Any CPU + {77E702D9-C6D8-4CE4-9941-D3056C3CCBED}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Release|Any CPU + {77E702D9-C6D8-4CE4-9941-D3056C3CCBED}.Release|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Release|Any CPU + {34E2C0E2-6C09-427D-BB75-702B3388CFC5}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {34E2C0E2-6C09-427D-BB75-702B3388CFC5}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {34E2C0E2-6C09-427D-BB75-702B3388CFC5}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {34E2C0E2-6C09-427D-BB75-702B3388CFC5}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/src/libraries/System.IO.FileSystem.Watcher/ref/Configurations.props b/src/libraries/System.IO.FileSystem.Watcher/ref/Configurations.props index 55d2de1d23f8d..7ac45c966c456 100644 --- a/src/libraries/System.IO.FileSystem.Watcher/ref/Configurations.props +++ b/src/libraries/System.IO.FileSystem.Watcher/ref/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.IO.FileSystem.Watcher/ref/System.IO.FileSystem.Watcher.csproj b/src/libraries/System.IO.FileSystem.Watcher/ref/System.IO.FileSystem.Watcher.csproj index c0ad246b21ab3..e14d3f4eae998 100644 --- a/src/libraries/System.IO.FileSystem.Watcher/ref/System.IO.FileSystem.Watcher.csproj +++ b/src/libraries/System.IO.FileSystem.Watcher/ref/System.IO.FileSystem.Watcher.csproj @@ -1,7 +1,7 @@ + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release enable - netcoreapp-Debug;netcoreapp-Release diff --git a/src/libraries/System.IO.FileSystem.Watcher/src/Configurations.props b/src/libraries/System.IO.FileSystem.Watcher/src/Configurations.props index d23e9c1537197..d785c0b896f63 100644 --- a/src/libraries/System.IO.FileSystem.Watcher/src/Configurations.props +++ b/src/libraries/System.IO.FileSystem.Watcher/src/Configurations.props @@ -1,10 +1,10 @@  - netcoreapp-Linux; - netcoreapp-OSX; - netcoreapp-FreeBSD; - netcoreapp-Windows_NT; + $(NetCoreAppCurrent)-Linux; + $(NetCoreAppCurrent)-OSX; + $(NetCoreAppCurrent)-FreeBSD; + $(NetCoreAppCurrent)-Windows_NT; diff --git a/src/libraries/System.IO.FileSystem.Watcher/src/System.IO.FileSystem.Watcher.csproj b/src/libraries/System.IO.FileSystem.Watcher/src/System.IO.FileSystem.Watcher.csproj index 154aea675ba58..28dc72ed5398f 100644 --- a/src/libraries/System.IO.FileSystem.Watcher/src/System.IO.FileSystem.Watcher.csproj +++ b/src/libraries/System.IO.FileSystem.Watcher/src/System.IO.FileSystem.Watcher.csproj @@ -1,8 +1,8 @@ true + $(NetCoreAppCurrent)-FreeBSD-Debug;$(NetCoreAppCurrent)-FreeBSD-Release;$(NetCoreAppCurrent)-Linux-Debug;$(NetCoreAppCurrent)-Linux-Release;$(NetCoreAppCurrent)-OSX-Debug;$(NetCoreAppCurrent)-OSX-Release;$(NetCoreAppCurrent)-Windows_NT-Debug;$(NetCoreAppCurrent)-Windows_NT-Release enable - netcoreapp-FreeBSD-Debug;netcoreapp-FreeBSD-Release;netcoreapp-Linux-Debug;netcoreapp-Linux-Release;netcoreapp-OSX-Debug;netcoreapp-OSX-Release;netcoreapp-Windows_NT-Debug;netcoreapp-Windows_NT-Release diff --git a/src/libraries/System.IO.FileSystem.Watcher/tests/Configurations.props b/src/libraries/System.IO.FileSystem.Watcher/tests/Configurations.props index d23e9c1537197..d785c0b896f63 100644 --- a/src/libraries/System.IO.FileSystem.Watcher/tests/Configurations.props +++ b/src/libraries/System.IO.FileSystem.Watcher/tests/Configurations.props @@ -1,10 +1,10 @@  - netcoreapp-Linux; - netcoreapp-OSX; - netcoreapp-FreeBSD; - netcoreapp-Windows_NT; + $(NetCoreAppCurrent)-Linux; + $(NetCoreAppCurrent)-OSX; + $(NetCoreAppCurrent)-FreeBSD; + $(NetCoreAppCurrent)-Windows_NT; diff --git a/src/libraries/System.IO.FileSystem.Watcher/tests/System.IO.FileSystem.Watcher.Tests.csproj b/src/libraries/System.IO.FileSystem.Watcher/tests/System.IO.FileSystem.Watcher.Tests.csproj index 102bf2aefc8ad..fb0c8dea47a6d 100644 --- a/src/libraries/System.IO.FileSystem.Watcher/tests/System.IO.FileSystem.Watcher.Tests.csproj +++ b/src/libraries/System.IO.FileSystem.Watcher/tests/System.IO.FileSystem.Watcher.Tests.csproj @@ -1,6 +1,6 @@ - netcoreapp-Linux-Debug;netcoreapp-Linux-Release;netcoreapp-OSX-Debug;netcoreapp-OSX-Release;netcoreapp-Windows_NT-Debug;netcoreapp-Windows_NT-Release;netcore-FreeBSD-Debug;netcore-FreeBSD-Release + $(NetCoreAppCurrent)-Linux-Debug;$(NetCoreAppCurrent)-Linux-Release;$(NetCoreAppCurrent)-OSX-Debug;$(NetCoreAppCurrent)-OSX-Release;$(NetCoreAppCurrent)-Windows_NT-Debug;$(NetCoreAppCurrent)-Windows_NT-Release;netcore-FreeBSD-Debug;netcore-FreeBSD-Release diff --git a/src/libraries/System.IO.FileSystem/System.IO.FileSystem.sln b/src/libraries/System.IO.FileSystem/System.IO.FileSystem.sln index 42726a58fee0b..53887915be34e 100644 --- a/src/libraries/System.IO.FileSystem/System.IO.FileSystem.sln +++ b/src/libraries/System.IO.FileSystem/System.IO.FileSystem.sln @@ -26,18 +26,18 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {F0D49126-6A1C-42D5-9428-4374C868BAF8}.Debug|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Debug|Any CPU - {F0D49126-6A1C-42D5-9428-4374C868BAF8}.Debug|Any CPU.Build.0 = netcoreapp-Windows_NT-Debug|Any CPU - {F0D49126-6A1C-42D5-9428-4374C868BAF8}.Release|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Release|Any CPU - {F0D49126-6A1C-42D5-9428-4374C868BAF8}.Release|Any CPU.Build.0 = netcoreapp-Windows_NT-Release|Any CPU - {1B528B61-14F9-4BFC-A79A-F0BDB3339150}.Debug|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Debug|Any CPU - {1B528B61-14F9-4BFC-A79A-F0BDB3339150}.Debug|Any CPU.Build.0 = netcoreapp-Windows_NT-Debug|Any CPU - {1B528B61-14F9-4BFC-A79A-F0BDB3339150}.Release|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Release|Any CPU - {1B528B61-14F9-4BFC-A79A-F0BDB3339150}.Release|Any CPU.Build.0 = netcoreapp-Windows_NT-Release|Any CPU - {4B15C12E-B6AB-4B05-8ECA-C2E2AEA67482}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {4B15C12E-B6AB-4B05-8ECA-C2E2AEA67482}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {4B15C12E-B6AB-4B05-8ECA-C2E2AEA67482}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {4B15C12E-B6AB-4B05-8ECA-C2E2AEA67482}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU + {F0D49126-6A1C-42D5-9428-4374C868BAF8}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Debug|Any CPU + {F0D49126-6A1C-42D5-9428-4374C868BAF8}.Debug|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Debug|Any CPU + {F0D49126-6A1C-42D5-9428-4374C868BAF8}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Release|Any CPU + {F0D49126-6A1C-42D5-9428-4374C868BAF8}.Release|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Release|Any CPU + {1B528B61-14F9-4BFC-A79A-F0BDB3339150}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Debug|Any CPU + {1B528B61-14F9-4BFC-A79A-F0BDB3339150}.Debug|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Debug|Any CPU + {1B528B61-14F9-4BFC-A79A-F0BDB3339150}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Release|Any CPU + {1B528B61-14F9-4BFC-A79A-F0BDB3339150}.Release|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Release|Any CPU + {4B15C12E-B6AB-4B05-8ECA-C2E2AEA67482}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {4B15C12E-B6AB-4B05-8ECA-C2E2AEA67482}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {4B15C12E-B6AB-4B05-8ECA-C2E2AEA67482}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {4B15C12E-B6AB-4B05-8ECA-C2E2AEA67482}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/src/libraries/System.IO.FileSystem/ref/Configurations.props b/src/libraries/System.IO.FileSystem/ref/Configurations.props index 55d2de1d23f8d..7ac45c966c456 100644 --- a/src/libraries/System.IO.FileSystem/ref/Configurations.props +++ b/src/libraries/System.IO.FileSystem/ref/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.IO.FileSystem/ref/System.IO.FileSystem.csproj b/src/libraries/System.IO.FileSystem/ref/System.IO.FileSystem.csproj index 58940b1181b8a..12019c6dae0fc 100644 --- a/src/libraries/System.IO.FileSystem/ref/System.IO.FileSystem.csproj +++ b/src/libraries/System.IO.FileSystem/ref/System.IO.FileSystem.csproj @@ -1,6 +1,6 @@ - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release enable diff --git a/src/libraries/System.IO.FileSystem/src/Configurations.props b/src/libraries/System.IO.FileSystem/src/Configurations.props index 1c0ceb0002ac4..f8d083e8f7a72 100644 --- a/src/libraries/System.IO.FileSystem/src/Configurations.props +++ b/src/libraries/System.IO.FileSystem/src/Configurations.props @@ -1,8 +1,8 @@  - netcoreapp-Unix; - netcoreapp-Windows_NT; + $(NetCoreAppCurrent)-Unix; + $(NetCoreAppCurrent)-Windows_NT; \ No newline at end of file diff --git a/src/libraries/System.IO.FileSystem/src/System.IO.FileSystem.csproj b/src/libraries/System.IO.FileSystem/src/System.IO.FileSystem.csproj index 5941d5e42d1eb..1ac2b82361816 100644 --- a/src/libraries/System.IO.FileSystem/src/System.IO.FileSystem.csproj +++ b/src/libraries/System.IO.FileSystem/src/System.IO.FileSystem.csproj @@ -4,7 +4,7 @@ true $(NoWarn);CS1573 true - netcoreapp-Unix-Debug;netcoreapp-Unix-Release;netcoreapp-Windows_NT-Debug;netcoreapp-Windows_NT-Release + $(NetCoreAppCurrent)-Unix-Debug;$(NetCoreAppCurrent)-Unix-Release;$(NetCoreAppCurrent)-Windows_NT-Debug;$(NetCoreAppCurrent)-Windows_NT-Release enable diff --git a/src/libraries/System.IO.FileSystem/tests/Configurations.props b/src/libraries/System.IO.FileSystem/tests/Configurations.props index 1c0ceb0002ac4..f8d083e8f7a72 100644 --- a/src/libraries/System.IO.FileSystem/tests/Configurations.props +++ b/src/libraries/System.IO.FileSystem/tests/Configurations.props @@ -1,8 +1,8 @@  - netcoreapp-Unix; - netcoreapp-Windows_NT; + $(NetCoreAppCurrent)-Unix; + $(NetCoreAppCurrent)-Windows_NT; \ No newline at end of file diff --git a/src/libraries/System.IO.FileSystem/tests/System.IO.FileSystem.Tests.csproj b/src/libraries/System.IO.FileSystem/tests/System.IO.FileSystem.Tests.csproj index abd5c831a66ea..81ce3afcf5fde 100644 --- a/src/libraries/System.IO.FileSystem/tests/System.IO.FileSystem.Tests.csproj +++ b/src/libraries/System.IO.FileSystem/tests/System.IO.FileSystem.Tests.csproj @@ -2,7 +2,7 @@ true true - netcoreapp-Unix-Debug;netcoreapp-Unix-Release;netcoreapp-Windows_NT-Debug;netcoreapp-Windows_NT-Release + $(NetCoreAppCurrent)-Unix-Debug;$(NetCoreAppCurrent)-Unix-Release;$(NetCoreAppCurrent)-Windows_NT-Debug;$(NetCoreAppCurrent)-Windows_NT-Release diff --git a/src/libraries/System.IO.IsolatedStorage/System.IO.IsolatedStorage.sln b/src/libraries/System.IO.IsolatedStorage/System.IO.IsolatedStorage.sln index 8aef26ff11673..592ad4f804ae0 100644 --- a/src/libraries/System.IO.IsolatedStorage/System.IO.IsolatedStorage.sln +++ b/src/libraries/System.IO.IsolatedStorage/System.IO.IsolatedStorage.sln @@ -26,18 +26,18 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {BF4F9507-8FBD-45EA-81C9-3ED89C052C91}.Debug|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Debug|Any CPU - {BF4F9507-8FBD-45EA-81C9-3ED89C052C91}.Debug|Any CPU.Build.0 = netcoreapp-Windows_NT-Debug|Any CPU - {BF4F9507-8FBD-45EA-81C9-3ED89C052C91}.Release|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Release|Any CPU - {BF4F9507-8FBD-45EA-81C9-3ED89C052C91}.Release|Any CPU.Build.0 = netcoreapp-Windows_NT-Release|Any CPU - {FAF5D1E4-BA43-4663-8429-C069066D75CB}.Debug|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Debug|Any CPU - {FAF5D1E4-BA43-4663-8429-C069066D75CB}.Debug|Any CPU.Build.0 = netcoreapp-Windows_NT-Debug|Any CPU - {FAF5D1E4-BA43-4663-8429-C069066D75CB}.Release|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Release|Any CPU - {FAF5D1E4-BA43-4663-8429-C069066D75CB}.Release|Any CPU.Build.0 = netcoreapp-Windows_NT-Release|Any CPU - {750200D5-661A-42AA-9E1F-2A151F5AEE74}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {750200D5-661A-42AA-9E1F-2A151F5AEE74}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {750200D5-661A-42AA-9E1F-2A151F5AEE74}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {750200D5-661A-42AA-9E1F-2A151F5AEE74}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU + {BF4F9507-8FBD-45EA-81C9-3ED89C052C91}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Debug|Any CPU + {BF4F9507-8FBD-45EA-81C9-3ED89C052C91}.Debug|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Debug|Any CPU + {BF4F9507-8FBD-45EA-81C9-3ED89C052C91}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Release|Any CPU + {BF4F9507-8FBD-45EA-81C9-3ED89C052C91}.Release|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Release|Any CPU + {FAF5D1E4-BA43-4663-8429-C069066D75CB}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Debug|Any CPU + {FAF5D1E4-BA43-4663-8429-C069066D75CB}.Debug|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Debug|Any CPU + {FAF5D1E4-BA43-4663-8429-C069066D75CB}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Release|Any CPU + {FAF5D1E4-BA43-4663-8429-C069066D75CB}.Release|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Release|Any CPU + {750200D5-661A-42AA-9E1F-2A151F5AEE74}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {750200D5-661A-42AA-9E1F-2A151F5AEE74}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {750200D5-661A-42AA-9E1F-2A151F5AEE74}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {750200D5-661A-42AA-9E1F-2A151F5AEE74}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/src/libraries/System.IO.IsolatedStorage/ref/Configurations.props b/src/libraries/System.IO.IsolatedStorage/ref/Configurations.props index 55d2de1d23f8d..7ac45c966c456 100644 --- a/src/libraries/System.IO.IsolatedStorage/ref/Configurations.props +++ b/src/libraries/System.IO.IsolatedStorage/ref/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.IO.IsolatedStorage/ref/System.IO.IsolatedStorage.csproj b/src/libraries/System.IO.IsolatedStorage/ref/System.IO.IsolatedStorage.csproj index f4d130c5606d2..4189232d33fc2 100644 --- a/src/libraries/System.IO.IsolatedStorage/ref/System.IO.IsolatedStorage.csproj +++ b/src/libraries/System.IO.IsolatedStorage/ref/System.IO.IsolatedStorage.csproj @@ -1,6 +1,6 @@ - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release diff --git a/src/libraries/System.IO.IsolatedStorage/src/Configurations.props b/src/libraries/System.IO.IsolatedStorage/src/Configurations.props index 6a1e7c24ac8ec..5ddac46609b7f 100644 --- a/src/libraries/System.IO.IsolatedStorage/src/Configurations.props +++ b/src/libraries/System.IO.IsolatedStorage/src/Configurations.props @@ -1,8 +1,8 @@  - netcoreapp-Windows_NT; - netcoreapp-Unix; + $(NetCoreAppCurrent)-Windows_NT; + $(NetCoreAppCurrent)-Unix; \ No newline at end of file diff --git a/src/libraries/System.IO.IsolatedStorage/src/System.IO.IsolatedStorage.csproj b/src/libraries/System.IO.IsolatedStorage/src/System.IO.IsolatedStorage.csproj index 14d1313df2016..3e2ead7a91a98 100644 --- a/src/libraries/System.IO.IsolatedStorage/src/System.IO.IsolatedStorage.csproj +++ b/src/libraries/System.IO.IsolatedStorage/src/System.IO.IsolatedStorage.csproj @@ -1,6 +1,6 @@ - netcoreapp-Unix-Debug;netcoreapp-Unix-Release;netcoreapp-Windows_NT-Debug;netcoreapp-Windows_NT-Release + $(NetCoreAppCurrent)-Unix-Debug;$(NetCoreAppCurrent)-Unix-Release;$(NetCoreAppCurrent)-Windows_NT-Debug;$(NetCoreAppCurrent)-Windows_NT-Release diff --git a/src/libraries/System.IO.IsolatedStorage/tests/Configurations.props b/src/libraries/System.IO.IsolatedStorage/tests/Configurations.props index 1c0ceb0002ac4..f8d083e8f7a72 100644 --- a/src/libraries/System.IO.IsolatedStorage/tests/Configurations.props +++ b/src/libraries/System.IO.IsolatedStorage/tests/Configurations.props @@ -1,8 +1,8 @@  - netcoreapp-Unix; - netcoreapp-Windows_NT; + $(NetCoreAppCurrent)-Unix; + $(NetCoreAppCurrent)-Windows_NT; \ No newline at end of file diff --git a/src/libraries/System.IO.IsolatedStorage/tests/System.IO.IsolatedStorage.Tests.csproj b/src/libraries/System.IO.IsolatedStorage/tests/System.IO.IsolatedStorage.Tests.csproj index be077143f7743..2a5a22010d623 100644 --- a/src/libraries/System.IO.IsolatedStorage/tests/System.IO.IsolatedStorage.Tests.csproj +++ b/src/libraries/System.IO.IsolatedStorage/tests/System.IO.IsolatedStorage.Tests.csproj @@ -1,6 +1,6 @@ - netcoreapp-Unix-Debug;netcoreapp-Unix-Release;netcoreapp-Windows_NT-Debug;netcoreapp-Windows_NT-Release + $(NetCoreAppCurrent)-Unix-Debug;$(NetCoreAppCurrent)-Unix-Release;$(NetCoreAppCurrent)-Windows_NT-Debug;$(NetCoreAppCurrent)-Windows_NT-Release diff --git a/src/libraries/System.IO.MemoryMappedFiles/System.IO.MemoryMappedFiles.sln b/src/libraries/System.IO.MemoryMappedFiles/System.IO.MemoryMappedFiles.sln index 5396e51f41de0..a5c4eba208087 100644 --- a/src/libraries/System.IO.MemoryMappedFiles/System.IO.MemoryMappedFiles.sln +++ b/src/libraries/System.IO.MemoryMappedFiles/System.IO.MemoryMappedFiles.sln @@ -26,18 +26,18 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {9D6F6254-B5A3-40FF-8925-68AA8D1CE933}.Debug|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Debug|Any CPU - {9D6F6254-B5A3-40FF-8925-68AA8D1CE933}.Debug|Any CPU.Build.0 = netcoreapp-Windows_NT-Debug|Any CPU - {9D6F6254-B5A3-40FF-8925-68AA8D1CE933}.Release|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Release|Any CPU - {9D6F6254-B5A3-40FF-8925-68AA8D1CE933}.Release|Any CPU.Build.0 = netcoreapp-Windows_NT-Release|Any CPU - {16EE5522-F387-4C9E-9EF2-B5134B043F37}.Debug|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Debug|Any CPU - {16EE5522-F387-4C9E-9EF2-B5134B043F37}.Debug|Any CPU.Build.0 = netcoreapp-Windows_NT-Debug|Any CPU - {16EE5522-F387-4C9E-9EF2-B5134B043F37}.Release|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Release|Any CPU - {16EE5522-F387-4C9E-9EF2-B5134B043F37}.Release|Any CPU.Build.0 = netcoreapp-Windows_NT-Release|Any CPU - {F2740000-E771-4E54-9287-5A1FDF8872F4}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {F2740000-E771-4E54-9287-5A1FDF8872F4}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {F2740000-E771-4E54-9287-5A1FDF8872F4}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {F2740000-E771-4E54-9287-5A1FDF8872F4}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU + {9D6F6254-B5A3-40FF-8925-68AA8D1CE933}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Debug|Any CPU + {9D6F6254-B5A3-40FF-8925-68AA8D1CE933}.Debug|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Debug|Any CPU + {9D6F6254-B5A3-40FF-8925-68AA8D1CE933}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Release|Any CPU + {9D6F6254-B5A3-40FF-8925-68AA8D1CE933}.Release|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Release|Any CPU + {16EE5522-F387-4C9E-9EF2-B5134B043F37}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Debug|Any CPU + {16EE5522-F387-4C9E-9EF2-B5134B043F37}.Debug|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Debug|Any CPU + {16EE5522-F387-4C9E-9EF2-B5134B043F37}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Release|Any CPU + {16EE5522-F387-4C9E-9EF2-B5134B043F37}.Release|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Release|Any CPU + {F2740000-E771-4E54-9287-5A1FDF8872F4}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {F2740000-E771-4E54-9287-5A1FDF8872F4}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {F2740000-E771-4E54-9287-5A1FDF8872F4}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {F2740000-E771-4E54-9287-5A1FDF8872F4}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/src/libraries/System.IO.MemoryMappedFiles/ref/Configurations.props b/src/libraries/System.IO.MemoryMappedFiles/ref/Configurations.props index 55d2de1d23f8d..7ac45c966c456 100644 --- a/src/libraries/System.IO.MemoryMappedFiles/ref/Configurations.props +++ b/src/libraries/System.IO.MemoryMappedFiles/ref/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.IO.MemoryMappedFiles/ref/System.IO.MemoryMappedFiles.csproj b/src/libraries/System.IO.MemoryMappedFiles/ref/System.IO.MemoryMappedFiles.csproj index 75999332a3734..db040f887c26b 100644 --- a/src/libraries/System.IO.MemoryMappedFiles/ref/System.IO.MemoryMappedFiles.csproj +++ b/src/libraries/System.IO.MemoryMappedFiles/ref/System.IO.MemoryMappedFiles.csproj @@ -1,7 +1,7 @@ enable - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release diff --git a/src/libraries/System.IO.MemoryMappedFiles/src/Configurations.props b/src/libraries/System.IO.MemoryMappedFiles/src/Configurations.props index 1c0ceb0002ac4..f8d083e8f7a72 100644 --- a/src/libraries/System.IO.MemoryMappedFiles/src/Configurations.props +++ b/src/libraries/System.IO.MemoryMappedFiles/src/Configurations.props @@ -1,8 +1,8 @@  - netcoreapp-Unix; - netcoreapp-Windows_NT; + $(NetCoreAppCurrent)-Unix; + $(NetCoreAppCurrent)-Windows_NT; \ No newline at end of file diff --git a/src/libraries/System.IO.MemoryMappedFiles/src/System.IO.MemoryMappedFiles.csproj b/src/libraries/System.IO.MemoryMappedFiles/src/System.IO.MemoryMappedFiles.csproj index 351c95928066b..756d349f4ce2e 100644 --- a/src/libraries/System.IO.MemoryMappedFiles/src/System.IO.MemoryMappedFiles.csproj +++ b/src/libraries/System.IO.MemoryMappedFiles/src/System.IO.MemoryMappedFiles.csproj @@ -3,7 +3,7 @@ System.IO.MemoryMappedFiles true enable - netcoreapp-Unix-Debug;netcoreapp-Unix-Release;netcoreapp-Windows_NT-Debug;netcoreapp-Windows_NT-Release + $(NetCoreAppCurrent)-Unix-Debug;$(NetCoreAppCurrent)-Unix-Release;$(NetCoreAppCurrent)-Windows_NT-Debug;$(NetCoreAppCurrent)-Windows_NT-Release diff --git a/src/libraries/System.IO.MemoryMappedFiles/tests/Configurations.props b/src/libraries/System.IO.MemoryMappedFiles/tests/Configurations.props index 1c0ceb0002ac4..f8d083e8f7a72 100644 --- a/src/libraries/System.IO.MemoryMappedFiles/tests/Configurations.props +++ b/src/libraries/System.IO.MemoryMappedFiles/tests/Configurations.props @@ -1,8 +1,8 @@  - netcoreapp-Unix; - netcoreapp-Windows_NT; + $(NetCoreAppCurrent)-Unix; + $(NetCoreAppCurrent)-Windows_NT; \ No newline at end of file diff --git a/src/libraries/System.IO.MemoryMappedFiles/tests/System.IO.MemoryMappedFiles.Tests.csproj b/src/libraries/System.IO.MemoryMappedFiles/tests/System.IO.MemoryMappedFiles.Tests.csproj index 3643db1774a3c..88b5bbb04e13c 100644 --- a/src/libraries/System.IO.MemoryMappedFiles/tests/System.IO.MemoryMappedFiles.Tests.csproj +++ b/src/libraries/System.IO.MemoryMappedFiles/tests/System.IO.MemoryMappedFiles.Tests.csproj @@ -2,7 +2,7 @@ true true - netcoreapp-Unix-Debug;netcoreapp-Unix-Release;netcoreapp-Windows_NT-Debug;netcoreapp-Windows_NT-Release + $(NetCoreAppCurrent)-Unix-Debug;$(NetCoreAppCurrent)-Unix-Release;$(NetCoreAppCurrent)-Windows_NT-Debug;$(NetCoreAppCurrent)-Windows_NT-Release diff --git a/src/libraries/System.IO.Packaging/System.IO.Packaging.sln b/src/libraries/System.IO.Packaging/System.IO.Packaging.sln index 9c3bafb19d290..b615a0ca3b0b8 100644 --- a/src/libraries/System.IO.Packaging/System.IO.Packaging.sln +++ b/src/libraries/System.IO.Packaging/System.IO.Packaging.sln @@ -26,10 +26,10 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {C92FF1A4-DEA1-4F0F-9AEB-94C9B2561B57}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {C92FF1A4-DEA1-4F0F-9AEB-94C9B2561B57}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {C92FF1A4-DEA1-4F0F-9AEB-94C9B2561B57}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {C92FF1A4-DEA1-4F0F-9AEB-94C9B2561B57}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU + {C92FF1A4-DEA1-4F0F-9AEB-94C9B2561B57}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {C92FF1A4-DEA1-4F0F-9AEB-94C9B2561B57}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {C92FF1A4-DEA1-4F0F-9AEB-94C9B2561B57}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {C92FF1A4-DEA1-4F0F-9AEB-94C9B2561B57}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU {1F827C19-6023-48D3-909F-9F43AB42FAF0}.Debug|Any CPU.ActiveCfg = netstandard2.0-Debug|Any CPU {1F827C19-6023-48D3-909F-9F43AB42FAF0}.Debug|Any CPU.Build.0 = netstandard2.0-Debug|Any CPU {1F827C19-6023-48D3-909F-9F43AB42FAF0}.Release|Any CPU.ActiveCfg = netstandard2.0-Release|Any CPU diff --git a/src/libraries/System.IO.Packaging/ref/Configurations.props b/src/libraries/System.IO.Packaging/ref/Configurations.props index 45236a653405c..0975fa8107ced 100644 --- a/src/libraries/System.IO.Packaging/ref/Configurations.props +++ b/src/libraries/System.IO.Packaging/ref/Configurations.props @@ -7,7 +7,7 @@ $(PackageConfigurations); - netfx; + $(NetFrameworkCurrent); \ No newline at end of file diff --git a/src/libraries/System.IO.Packaging/ref/System.IO.Packaging.csproj b/src/libraries/System.IO.Packaging/ref/System.IO.Packaging.csproj index cecaf0c914d4b..8e0b81923ae7c 100644 --- a/src/libraries/System.IO.Packaging/ref/System.IO.Packaging.csproj +++ b/src/libraries/System.IO.Packaging/ref/System.IO.Packaging.csproj @@ -1,8 +1,8 @@  - true + true $(DefineConstants);netcoreapp - net46-Debug;net46-Release;netfx-Debug;netfx-Release;netstandard2.0-Debug;netstandard2.0-Release;netstandard1.3-Debug;netstandard1.3-Release + net46-Debug;net46-Release;$(NetFrameworkCurrent)-Debug;$(NetFrameworkCurrent)-Release;netstandard2.0-Debug;netstandard2.0-Release;netstandard1.3-Debug;netstandard1.3-Release @@ -11,7 +11,7 @@ - + diff --git a/src/libraries/System.IO.Packaging/src/Configurations.props b/src/libraries/System.IO.Packaging/src/Configurations.props index c8d2568522343..d151f62638d69 100644 --- a/src/libraries/System.IO.Packaging/src/Configurations.props +++ b/src/libraries/System.IO.Packaging/src/Configurations.props @@ -7,7 +7,7 @@ $(PackageConfigurations); - netfx-Windows_NT; + $(NetFrameworkCurrent)-Windows_NT; \ No newline at end of file diff --git a/src/libraries/System.IO.Packaging/src/System.IO.Packaging.csproj b/src/libraries/System.IO.Packaging/src/System.IO.Packaging.csproj index 28f890bf91791..b41ac06a52ccd 100644 --- a/src/libraries/System.IO.Packaging/src/System.IO.Packaging.csproj +++ b/src/libraries/System.IO.Packaging/src/System.IO.Packaging.csproj @@ -3,9 +3,9 @@ System.IO.Packaging System.IO.Packaging true - true + true $(DefineConstants);FEATURE_SERIALIZATION - net46-Debug;net46-Release;netfx-Windows_NT-Debug;netfx-Windows_NT-Release;netstandard2.0-Debug;netstandard2.0-Release;netstandard1.3-Debug;netstandard1.3-Release + net46-Debug;net46-Release;$(NetFrameworkCurrent)-Windows_NT-Debug;$(NetFrameworkCurrent)-Windows_NT-Release;netstandard2.0-Debug;netstandard2.0-Release;netstandard1.3-Debug;netstandard1.3-Release @@ -51,7 +51,7 @@ - + diff --git a/src/libraries/System.IO.Packaging/tests/Configurations.props b/src/libraries/System.IO.Packaging/tests/Configurations.props index 1a037adc3e7c1..f550cb30c4afd 100644 --- a/src/libraries/System.IO.Packaging/tests/Configurations.props +++ b/src/libraries/System.IO.Packaging/tests/Configurations.props @@ -1,8 +1,8 @@  - netcoreapp; - netfx; + $(NetCoreAppCurrent); + $(NetFrameworkCurrent); \ 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 759191c71aaef..37e05c2b44298 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 @@ -1,6 +1,6 @@ - netcoreapp-Debug;netcoreapp-Release;netfx-Debug;netfx-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release;$(NetFrameworkCurrent)-Debug;$(NetFrameworkCurrent)-Release diff --git a/src/libraries/System.IO.Pipelines/System.IO.Pipelines.sln b/src/libraries/System.IO.Pipelines/System.IO.Pipelines.sln index 9123a7d9ac478..00ddd529062ae 100644 --- a/src/libraries/System.IO.Pipelines/System.IO.Pipelines.sln +++ b/src/libraries/System.IO.Pipelines/System.IO.Pipelines.sln @@ -26,14 +26,14 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {9E984EB2-827E-4029-9647-FB5F8B67C553}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {9E984EB2-827E-4029-9647-FB5F8B67C553}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {9E984EB2-827E-4029-9647-FB5F8B67C553}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {9E984EB2-827E-4029-9647-FB5F8B67C553}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU - {1032D5F6-5AE7-4002-A0E4-FEBEADFEA977}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {1032D5F6-5AE7-4002-A0E4-FEBEADFEA977}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {1032D5F6-5AE7-4002-A0E4-FEBEADFEA977}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {1032D5F6-5AE7-4002-A0E4-FEBEADFEA977}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU + {9E984EB2-827E-4029-9647-FB5F8B67C553}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {9E984EB2-827E-4029-9647-FB5F8B67C553}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {9E984EB2-827E-4029-9647-FB5F8B67C553}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {9E984EB2-827E-4029-9647-FB5F8B67C553}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU + {1032D5F6-5AE7-4002-A0E4-FEBEADFEA977}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {1032D5F6-5AE7-4002-A0E4-FEBEADFEA977}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {1032D5F6-5AE7-4002-A0E4-FEBEADFEA977}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {1032D5F6-5AE7-4002-A0E4-FEBEADFEA977}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU {9C524CA0-92FF-437B-B568-BCE8A794A69A}.Debug|Any CPU.ActiveCfg = netstandard2.0-Debug|Any CPU {9C524CA0-92FF-437B-B568-BCE8A794A69A}.Debug|Any CPU.Build.0 = netstandard2.0-Debug|Any CPU {9C524CA0-92FF-437B-B568-BCE8A794A69A}.Release|Any CPU.ActiveCfg = netstandard2.0-Release|Any CPU diff --git a/src/libraries/System.IO.Pipelines/src/Configurations.props b/src/libraries/System.IO.Pipelines/src/Configurations.props index e19e870e9d867..724ad567e735a 100644 --- a/src/libraries/System.IO.Pipelines/src/Configurations.props +++ b/src/libraries/System.IO.Pipelines/src/Configurations.props @@ -6,7 +6,7 @@ $(PackageConfigurations); - netcoreapp; + $(NetCoreAppCurrent); diff --git a/src/libraries/System.IO.Pipelines/src/System.IO.Pipelines.csproj b/src/libraries/System.IO.Pipelines/src/System.IO.Pipelines.csproj index 57da081644d22..84019bd764074 100644 --- a/src/libraries/System.IO.Pipelines/src/System.IO.Pipelines.csproj +++ b/src/libraries/System.IO.Pipelines/src/System.IO.Pipelines.csproj @@ -1,6 +1,6 @@  - netcoreapp-Debug;netcoreapp-Release;netcoreapp3.0-Debug;netcoreapp3.0-Release;netstandard2.0-Debug;netstandard2.0-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release;netcoreapp3.0-Debug;netcoreapp3.0-Release;netstandard2.0-Debug;netstandard2.0-Release enable diff --git a/src/libraries/System.IO.Pipelines/tests/Configurations.props b/src/libraries/System.IO.Pipelines/tests/Configurations.props index 7538cfb5a8686..4d7a02a5508f2 100644 --- a/src/libraries/System.IO.Pipelines/tests/Configurations.props +++ b/src/libraries/System.IO.Pipelines/tests/Configurations.props @@ -1,8 +1,8 @@  - netcoreapp; - netfx; + $(NetCoreAppCurrent); + $(NetFrameworkCurrent); diff --git a/src/libraries/System.IO.Pipelines/tests/System.IO.Pipelines.Tests.csproj b/src/libraries/System.IO.Pipelines/tests/System.IO.Pipelines.Tests.csproj index 76efb2dab5ce1..e526bbfdd6eb9 100644 --- a/src/libraries/System.IO.Pipelines/tests/System.IO.Pipelines.Tests.csproj +++ b/src/libraries/System.IO.Pipelines/tests/System.IO.Pipelines.Tests.csproj @@ -1,7 +1,7 @@  true - netcoreapp-Debug;netcoreapp-Release;netfx-Debug;netfx-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release;$(NetFrameworkCurrent)-Debug;$(NetFrameworkCurrent)-Release diff --git a/src/libraries/System.IO.Pipes.AccessControl/System.IO.Pipes.AccessControl.sln b/src/libraries/System.IO.Pipes.AccessControl/System.IO.Pipes.AccessControl.sln index 8f46da6742754..ad4627425b090 100644 --- a/src/libraries/System.IO.Pipes.AccessControl/System.IO.Pipes.AccessControl.sln +++ b/src/libraries/System.IO.Pipes.AccessControl/System.IO.Pipes.AccessControl.sln @@ -26,14 +26,14 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {A0356E61-19E1-4722-A53D-5D2616E16312}.Debug|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Debug|Any CPU - {A0356E61-19E1-4722-A53D-5D2616E16312}.Debug|Any CPU.Build.0 = netcoreapp-Windows_NT-Debug|Any CPU - {A0356E61-19E1-4722-A53D-5D2616E16312}.Release|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Release|Any CPU - {A0356E61-19E1-4722-A53D-5D2616E16312}.Release|Any CPU.Build.0 = netcoreapp-Windows_NT-Release|Any CPU - {40059634-BB03-4A6F-8657-CCE2D376BC8B}.Debug|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Debug|Any CPU - {40059634-BB03-4A6F-8657-CCE2D376BC8B}.Debug|Any CPU.Build.0 = netcoreapp-Windows_NT-Debug|Any CPU - {40059634-BB03-4A6F-8657-CCE2D376BC8B}.Release|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Release|Any CPU - {40059634-BB03-4A6F-8657-CCE2D376BC8B}.Release|Any CPU.Build.0 = netcoreapp-Windows_NT-Release|Any CPU + {A0356E61-19E1-4722-A53D-5D2616E16312}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Debug|Any CPU + {A0356E61-19E1-4722-A53D-5D2616E16312}.Debug|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Debug|Any CPU + {A0356E61-19E1-4722-A53D-5D2616E16312}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Release|Any CPU + {A0356E61-19E1-4722-A53D-5D2616E16312}.Release|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Release|Any CPU + {40059634-BB03-4A6F-8657-CCE2D376BC8B}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Debug|Any CPU + {40059634-BB03-4A6F-8657-CCE2D376BC8B}.Debug|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Debug|Any CPU + {40059634-BB03-4A6F-8657-CCE2D376BC8B}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Release|Any CPU + {40059634-BB03-4A6F-8657-CCE2D376BC8B}.Release|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Release|Any CPU {994DCE47-4CF6-479D-AB1D-4EA6A2809C34}.Debug|Any CPU.ActiveCfg = netstandard2.0-Debug|Any CPU {994DCE47-4CF6-479D-AB1D-4EA6A2809C34}.Debug|Any CPU.Build.0 = netstandard2.0-Debug|Any CPU {994DCE47-4CF6-479D-AB1D-4EA6A2809C34}.Release|Any CPU.ActiveCfg = netstandard2.0-Release|Any CPU diff --git a/src/libraries/System.IO.Pipes.AccessControl/src/Configurations.props b/src/libraries/System.IO.Pipes.AccessControl/src/Configurations.props index 805bd981998e2..3d43aee6a66e4 100644 --- a/src/libraries/System.IO.Pipes.AccessControl/src/Configurations.props +++ b/src/libraries/System.IO.Pipes.AccessControl/src/Configurations.props @@ -1,8 +1,8 @@  - netcoreapp-Windows_NT; - netcoreapp-Unix; + $(NetCoreAppCurrent)-Windows_NT; + $(NetCoreAppCurrent)-Unix; \ No newline at end of file diff --git a/src/libraries/System.IO.Pipes.AccessControl/src/System.IO.Pipes.AccessControl.csproj b/src/libraries/System.IO.Pipes.AccessControl/src/System.IO.Pipes.AccessControl.csproj index 664f982caa10e..00ed0208ebf40 100644 --- a/src/libraries/System.IO.Pipes.AccessControl/src/System.IO.Pipes.AccessControl.csproj +++ b/src/libraries/System.IO.Pipes.AccessControl/src/System.IO.Pipes.AccessControl.csproj @@ -5,7 +5,7 @@ true true SR.PlatformNotSupported_AccessControl - netcoreapp-Unix-Debug;netcoreapp-Unix-Release;netcoreapp-Windows_NT-Debug;netcoreapp-Windows_NT-Release + $(NetCoreAppCurrent)-Unix-Debug;$(NetCoreAppCurrent)-Unix-Release;$(NetCoreAppCurrent)-Windows_NT-Debug;$(NetCoreAppCurrent)-Windows_NT-Release diff --git a/src/libraries/System.IO.Pipes.AccessControl/tests/Configurations.props b/src/libraries/System.IO.Pipes.AccessControl/tests/Configurations.props index d594d8a77854e..537af9acf13e8 100644 --- a/src/libraries/System.IO.Pipes.AccessControl/tests/Configurations.props +++ b/src/libraries/System.IO.Pipes.AccessControl/tests/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp-Windows_NT; + $(NetCoreAppCurrent)-Windows_NT; \ No newline at end of file diff --git a/src/libraries/System.IO.Pipes.AccessControl/tests/System.IO.Pipes.AccessControl.Tests.csproj b/src/libraries/System.IO.Pipes.AccessControl/tests/System.IO.Pipes.AccessControl.Tests.csproj index 30fdc15c392fd..327a0ff490fe9 100644 --- a/src/libraries/System.IO.Pipes.AccessControl/tests/System.IO.Pipes.AccessControl.Tests.csproj +++ b/src/libraries/System.IO.Pipes.AccessControl/tests/System.IO.Pipes.AccessControl.Tests.csproj @@ -1,6 +1,6 @@ - netcoreapp-Windows_NT-Debug;netcoreapp-Windows_NT-Release + $(NetCoreAppCurrent)-Windows_NT-Debug;$(NetCoreAppCurrent)-Windows_NT-Release diff --git a/src/libraries/System.IO.Pipes/System.IO.Pipes.sln b/src/libraries/System.IO.Pipes/System.IO.Pipes.sln index e8bd0dfe9a735..9c1a62d13f060 100644 --- a/src/libraries/System.IO.Pipes/System.IO.Pipes.sln +++ b/src/libraries/System.IO.Pipes/System.IO.Pipes.sln @@ -26,18 +26,18 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {142469EC-D665-4FE2-845A-FDA69F9CC557}.Debug|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Debug|Any CPU - {142469EC-D665-4FE2-845A-FDA69F9CC557}.Debug|Any CPU.Build.0 = netcoreapp-Windows_NT-Debug|Any CPU - {142469EC-D665-4FE2-845A-FDA69F9CC557}.Release|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Release|Any CPU - {142469EC-D665-4FE2-845A-FDA69F9CC557}.Release|Any CPU.Build.0 = netcoreapp-Windows_NT-Release|Any CPU - {D293A0E4-AE6C-4DF7-99AE-CC1A37BF4918}.Debug|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Debug|Any CPU - {D293A0E4-AE6C-4DF7-99AE-CC1A37BF4918}.Debug|Any CPU.Build.0 = netcoreapp-Windows_NT-Debug|Any CPU - {D293A0E4-AE6C-4DF7-99AE-CC1A37BF4918}.Release|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Release|Any CPU - {D293A0E4-AE6C-4DF7-99AE-CC1A37BF4918}.Release|Any CPU.Build.0 = netcoreapp-Windows_NT-Release|Any CPU - {38B2B275-FB29-45C6-9E68-9ECEBC6BD874}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {38B2B275-FB29-45C6-9E68-9ECEBC6BD874}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {38B2B275-FB29-45C6-9E68-9ECEBC6BD874}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {38B2B275-FB29-45C6-9E68-9ECEBC6BD874}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU + {142469EC-D665-4FE2-845A-FDA69F9CC557}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Debug|Any CPU + {142469EC-D665-4FE2-845A-FDA69F9CC557}.Debug|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Debug|Any CPU + {142469EC-D665-4FE2-845A-FDA69F9CC557}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Release|Any CPU + {142469EC-D665-4FE2-845A-FDA69F9CC557}.Release|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Release|Any CPU + {D293A0E4-AE6C-4DF7-99AE-CC1A37BF4918}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Debug|Any CPU + {D293A0E4-AE6C-4DF7-99AE-CC1A37BF4918}.Debug|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Debug|Any CPU + {D293A0E4-AE6C-4DF7-99AE-CC1A37BF4918}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Release|Any CPU + {D293A0E4-AE6C-4DF7-99AE-CC1A37BF4918}.Release|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Release|Any CPU + {38B2B275-FB29-45C6-9E68-9ECEBC6BD874}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {38B2B275-FB29-45C6-9E68-9ECEBC6BD874}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {38B2B275-FB29-45C6-9E68-9ECEBC6BD874}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {38B2B275-FB29-45C6-9E68-9ECEBC6BD874}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/src/libraries/System.IO.Pipes/ref/Configurations.props b/src/libraries/System.IO.Pipes/ref/Configurations.props index 55d2de1d23f8d..7ac45c966c456 100644 --- a/src/libraries/System.IO.Pipes/ref/Configurations.props +++ b/src/libraries/System.IO.Pipes/ref/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.IO.Pipes/ref/System.IO.Pipes.csproj b/src/libraries/System.IO.Pipes/ref/System.IO.Pipes.csproj index 3ded1bf208ba7..7824dd968efc3 100644 --- a/src/libraries/System.IO.Pipes/ref/System.IO.Pipes.csproj +++ b/src/libraries/System.IO.Pipes/ref/System.IO.Pipes.csproj @@ -1,6 +1,6 @@ - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release diff --git a/src/libraries/System.IO.Pipes/src/Configurations.props b/src/libraries/System.IO.Pipes/src/Configurations.props index 1c0ceb0002ac4..f8d083e8f7a72 100644 --- a/src/libraries/System.IO.Pipes/src/Configurations.props +++ b/src/libraries/System.IO.Pipes/src/Configurations.props @@ -1,8 +1,8 @@  - netcoreapp-Unix; - netcoreapp-Windows_NT; + $(NetCoreAppCurrent)-Unix; + $(NetCoreAppCurrent)-Windows_NT; \ No newline at end of file diff --git a/src/libraries/System.IO.Pipes/src/System.IO.Pipes.csproj b/src/libraries/System.IO.Pipes/src/System.IO.Pipes.csproj index c8b6fdd993736..411cb73389276 100644 --- a/src/libraries/System.IO.Pipes/src/System.IO.Pipes.csproj +++ b/src/libraries/System.IO.Pipes/src/System.IO.Pipes.csproj @@ -3,7 +3,7 @@ System.IO.Pipes true true - netcoreapp-Unix-Debug;netcoreapp-Unix-Release;netcoreapp-Windows_NT-Debug;netcoreapp-Windows_NT-Release + $(NetCoreAppCurrent)-Unix-Debug;$(NetCoreAppCurrent)-Unix-Release;$(NetCoreAppCurrent)-Windows_NT-Debug;$(NetCoreAppCurrent)-Windows_NT-Release diff --git a/src/libraries/System.IO.Pipes/tests/Configurations.props b/src/libraries/System.IO.Pipes/tests/Configurations.props index 1c0ceb0002ac4..f8d083e8f7a72 100644 --- a/src/libraries/System.IO.Pipes/tests/Configurations.props +++ b/src/libraries/System.IO.Pipes/tests/Configurations.props @@ -1,8 +1,8 @@  - netcoreapp-Unix; - netcoreapp-Windows_NT; + $(NetCoreAppCurrent)-Unix; + $(NetCoreAppCurrent)-Windows_NT; \ No newline at end of file diff --git a/src/libraries/System.IO.Pipes/tests/System.IO.Pipes.Tests.csproj b/src/libraries/System.IO.Pipes/tests/System.IO.Pipes.Tests.csproj index a136cab95e28d..fc1a56e7a8b88 100644 --- a/src/libraries/System.IO.Pipes/tests/System.IO.Pipes.Tests.csproj +++ b/src/libraries/System.IO.Pipes/tests/System.IO.Pipes.Tests.csproj @@ -2,7 +2,7 @@ true true - netcoreapp-Unix-Debug;netcoreapp-Unix-Release;netcoreapp-Windows_NT-Debug;netcoreapp-Windows_NT-Release + $(NetCoreAppCurrent)-Unix-Debug;$(NetCoreAppCurrent)-Unix-Release;$(NetCoreAppCurrent)-Windows_NT-Debug;$(NetCoreAppCurrent)-Windows_NT-Release diff --git a/src/libraries/System.IO.Ports/System.IO.Ports.sln b/src/libraries/System.IO.Ports/System.IO.Ports.sln index 992c48b10d93c..94d9c52868bc9 100644 --- a/src/libraries/System.IO.Ports/System.IO.Ports.sln +++ b/src/libraries/System.IO.Ports/System.IO.Ports.sln @@ -26,10 +26,10 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {4259DCE9-3480-40BB-B08A-64A2D446264B}.Debug|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Debug|Any CPU - {4259DCE9-3480-40BB-B08A-64A2D446264B}.Debug|Any CPU.Build.0 = netcoreapp-Windows_NT-Debug|Any CPU - {4259DCE9-3480-40BB-B08A-64A2D446264B}.Release|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Release|Any CPU - {4259DCE9-3480-40BB-B08A-64A2D446264B}.Release|Any CPU.Build.0 = netcoreapp-Windows_NT-Release|Any CPU + {4259DCE9-3480-40BB-B08A-64A2D446264B}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Debug|Any CPU + {4259DCE9-3480-40BB-B08A-64A2D446264B}.Debug|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Debug|Any CPU + {4259DCE9-3480-40BB-B08A-64A2D446264B}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Release|Any CPU + {4259DCE9-3480-40BB-B08A-64A2D446264B}.Release|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Release|Any CPU {187503F4-BEF9-4369-A1B2-E3DC5D564E4E}.Debug|Any CPU.ActiveCfg = netstandard2.0-Windows_NT-Debug|Any CPU {187503F4-BEF9-4369-A1B2-E3DC5D564E4E}.Debug|Any CPU.Build.0 = netstandard2.0-Windows_NT-Debug|Any CPU {187503F4-BEF9-4369-A1B2-E3DC5D564E4E}.Release|Any CPU.ActiveCfg = netstandard2.0-Windows_NT-Release|Any CPU diff --git a/src/libraries/System.IO.Ports/ref/Configurations.props b/src/libraries/System.IO.Ports/ref/Configurations.props index 9a39f69c81f75..f2e4882f43731 100644 --- a/src/libraries/System.IO.Ports/ref/Configurations.props +++ b/src/libraries/System.IO.Ports/ref/Configurations.props @@ -6,7 +6,7 @@ $(PackageConfigurations) - netfx; + $(NetFrameworkCurrent); diff --git a/src/libraries/System.IO.Ports/ref/System.IO.Ports.csproj b/src/libraries/System.IO.Ports/ref/System.IO.Ports.csproj index a258b76008df2..276078ce92b9a 100644 --- a/src/libraries/System.IO.Ports/ref/System.IO.Ports.csproj +++ b/src/libraries/System.IO.Ports/ref/System.IO.Ports.csproj @@ -1,7 +1,7 @@ true - net461-Debug;net461-Release;netfx-Debug;netfx-Release;netstandard2.0-Debug;netstandard2.0-Release + net461-Debug;net461-Release;$(NetFrameworkCurrent)-Debug;$(NetFrameworkCurrent)-Release;netstandard2.0-Debug;netstandard2.0-Release diff --git a/src/libraries/System.IO.Ports/src/Configurations.props b/src/libraries/System.IO.Ports/src/Configurations.props index 06550b4088189..38b3c69b3e2c2 100644 --- a/src/libraries/System.IO.Ports/src/Configurations.props +++ b/src/libraries/System.IO.Ports/src/Configurations.props @@ -10,7 +10,7 @@ $(PackageConfigurations) netstandard2.0-FreeBSD; - netfx-Windows_NT; + $(NetFrameworkCurrent)-Windows_NT; diff --git a/src/libraries/System.IO.Ports/src/System.IO.Ports.csproj b/src/libraries/System.IO.Ports/src/System.IO.Ports.csproj index dc94ef4e1a679..e9a6dab6b8bf3 100644 --- a/src/libraries/System.IO.Ports/src/System.IO.Ports.csproj +++ b/src/libraries/System.IO.Ports/src/System.IO.Ports.csproj @@ -6,7 +6,7 @@ $(DefineConstants);NOSPAN true annotations - net461-Windows_NT-Debug;net461-Windows_NT-Release;netfx-Windows_NT-Debug;netfx-Windows_NT-Release;netstandard2.0-Debug;netstandard2.0-Linux-Debug;netstandard2.0-Linux-Release;netstandard2.0-OSX-Debug;netstandard2.0-OSX-Release;netstandard2.0-Release;netstandard2.0-Windows_NT-Debug;netstandard2.0-Windows_NT-Release + net461-Windows_NT-Debug;net461-Windows_NT-Release;$(NetFrameworkCurrent)-Windows_NT-Debug;$(NetFrameworkCurrent)-Windows_NT-Release;netstandard2.0-Debug;netstandard2.0-Linux-Debug;netstandard2.0-Linux-Release;netstandard2.0-OSX-Debug;netstandard2.0-OSX-Release;netstandard2.0-Release;netstandard2.0-Windows_NT-Debug;netstandard2.0-Windows_NT-Release diff --git a/src/libraries/System.IO.Ports/tests/Configurations.props b/src/libraries/System.IO.Ports/tests/Configurations.props index 6a40cf66cc79d..1ab889d48c8d3 100644 --- a/src/libraries/System.IO.Ports/tests/Configurations.props +++ b/src/libraries/System.IO.Ports/tests/Configurations.props @@ -1,11 +1,11 @@  - netcoreapp-Windows_NT; - netcoreapp-Linux; - netcoreapp-OSX; - netcoreapp-FreeBSD; - netfx; + $(NetCoreAppCurrent)-Windows_NT; + $(NetCoreAppCurrent)-Linux; + $(NetCoreAppCurrent)-OSX; + $(NetCoreAppCurrent)-FreeBSD; + $(NetFrameworkCurrent); diff --git a/src/libraries/System.IO.Ports/tests/System.IO.Ports.Tests.csproj b/src/libraries/System.IO.Ports/tests/System.IO.Ports.Tests.csproj index d65df94bbe2a1..7ce3e0240d627 100644 --- a/src/libraries/System.IO.Ports/tests/System.IO.Ports.Tests.csproj +++ b/src/libraries/System.IO.Ports/tests/System.IO.Ports.Tests.csproj @@ -1,6 +1,6 @@ - netcoreapp-Linux-Debug;netcoreapp-Linux-Release;netcoreapp-OSX-Debug;netcoreapp-OSX-Release;netcoreapp-Windows_NT-Debug;netcoreapp-Windows_NT-Release;netfx-Debug;netfx-Release + $(NetCoreAppCurrent)-Linux-Debug;$(NetCoreAppCurrent)-Linux-Release;$(NetCoreAppCurrent)-OSX-Debug;$(NetCoreAppCurrent)-OSX-Release;$(NetCoreAppCurrent)-Windows_NT-Debug;$(NetCoreAppCurrent)-Windows_NT-Release;$(NetFrameworkCurrent)-Debug;$(NetFrameworkCurrent)-Release diff --git a/src/libraries/System.IO.UnmanagedMemoryStream/System.IO.UnmanagedMemoryStream.sln b/src/libraries/System.IO.UnmanagedMemoryStream/System.IO.UnmanagedMemoryStream.sln index 1105c4c0ab0ad..2749cfbbf28d9 100644 --- a/src/libraries/System.IO.UnmanagedMemoryStream/System.IO.UnmanagedMemoryStream.sln +++ b/src/libraries/System.IO.UnmanagedMemoryStream/System.IO.UnmanagedMemoryStream.sln @@ -26,18 +26,18 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {55F26FB1-D4AF-48CA-A470-83113AE7BFDB}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {55F26FB1-D4AF-48CA-A470-83113AE7BFDB}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {55F26FB1-D4AF-48CA-A470-83113AE7BFDB}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {55F26FB1-D4AF-48CA-A470-83113AE7BFDB}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU - {BCF9255A-4321-4277-AD7D-F5094092C554}.Debug|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Debug|Any CPU - {BCF9255A-4321-4277-AD7D-F5094092C554}.Debug|Any CPU.Build.0 = netcoreapp-Windows_NT-Debug|Any CPU - {BCF9255A-4321-4277-AD7D-F5094092C554}.Release|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Release|Any CPU - {BCF9255A-4321-4277-AD7D-F5094092C554}.Release|Any CPU.Build.0 = netcoreapp-Windows_NT-Release|Any CPU - {C2D9E102-8E1D-4942-BA72-A55B152A5D0E}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {C2D9E102-8E1D-4942-BA72-A55B152A5D0E}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {C2D9E102-8E1D-4942-BA72-A55B152A5D0E}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {C2D9E102-8E1D-4942-BA72-A55B152A5D0E}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU + {55F26FB1-D4AF-48CA-A470-83113AE7BFDB}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {55F26FB1-D4AF-48CA-A470-83113AE7BFDB}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {55F26FB1-D4AF-48CA-A470-83113AE7BFDB}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {55F26FB1-D4AF-48CA-A470-83113AE7BFDB}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU + {BCF9255A-4321-4277-AD7D-F5094092C554}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Debug|Any CPU + {BCF9255A-4321-4277-AD7D-F5094092C554}.Debug|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Debug|Any CPU + {BCF9255A-4321-4277-AD7D-F5094092C554}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Release|Any CPU + {BCF9255A-4321-4277-AD7D-F5094092C554}.Release|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Release|Any CPU + {C2D9E102-8E1D-4942-BA72-A55B152A5D0E}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {C2D9E102-8E1D-4942-BA72-A55B152A5D0E}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {C2D9E102-8E1D-4942-BA72-A55B152A5D0E}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {C2D9E102-8E1D-4942-BA72-A55B152A5D0E}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/src/libraries/System.IO.UnmanagedMemoryStream/ref/Configurations.props b/src/libraries/System.IO.UnmanagedMemoryStream/ref/Configurations.props index 55d2de1d23f8d..7ac45c966c456 100644 --- a/src/libraries/System.IO.UnmanagedMemoryStream/ref/Configurations.props +++ b/src/libraries/System.IO.UnmanagedMemoryStream/ref/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.IO.UnmanagedMemoryStream/ref/System.IO.UnmanagedMemoryStream.csproj b/src/libraries/System.IO.UnmanagedMemoryStream/ref/System.IO.UnmanagedMemoryStream.csproj index 1621790b32b74..16db853bbc364 100644 --- a/src/libraries/System.IO.UnmanagedMemoryStream/ref/System.IO.UnmanagedMemoryStream.csproj +++ b/src/libraries/System.IO.UnmanagedMemoryStream/ref/System.IO.UnmanagedMemoryStream.csproj @@ -1,7 +1,7 @@ true - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release diff --git a/src/libraries/System.IO.UnmanagedMemoryStream/src/Configurations.props b/src/libraries/System.IO.UnmanagedMemoryStream/src/Configurations.props index db389259c06b1..f3922475141ae 100644 --- a/src/libraries/System.IO.UnmanagedMemoryStream/src/Configurations.props +++ b/src/libraries/System.IO.UnmanagedMemoryStream/src/Configurations.props @@ -1,8 +1,8 @@  - netcoreapp-Windows_NT; - netcoreapp-Unix; + $(NetCoreAppCurrent)-Windows_NT; + $(NetCoreAppCurrent)-Unix; diff --git a/src/libraries/System.IO.UnmanagedMemoryStream/src/System.IO.UnmanagedMemoryStream.csproj b/src/libraries/System.IO.UnmanagedMemoryStream/src/System.IO.UnmanagedMemoryStream.csproj index b11d028c23ee9..bae20e9796f3f 100644 --- a/src/libraries/System.IO.UnmanagedMemoryStream/src/System.IO.UnmanagedMemoryStream.csproj +++ b/src/libraries/System.IO.UnmanagedMemoryStream/src/System.IO.UnmanagedMemoryStream.csproj @@ -2,7 +2,7 @@ System.IO.UnmanagedMemoryStream true - netcoreapp-Unix-Debug;netcoreapp-Unix-Release;netcoreapp-Windows_NT-Debug;netcoreapp-Windows_NT-Release + $(NetCoreAppCurrent)-Unix-Debug;$(NetCoreAppCurrent)-Unix-Release;$(NetCoreAppCurrent)-Windows_NT-Debug;$(NetCoreAppCurrent)-Windows_NT-Release diff --git a/src/libraries/System.IO.UnmanagedMemoryStream/tests/Configurations.props b/src/libraries/System.IO.UnmanagedMemoryStream/tests/Configurations.props index 55d2de1d23f8d..7ac45c966c456 100644 --- a/src/libraries/System.IO.UnmanagedMemoryStream/tests/Configurations.props +++ b/src/libraries/System.IO.UnmanagedMemoryStream/tests/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.IO.UnmanagedMemoryStream/tests/System.IO.UnmanagedMemoryStream.Tests.csproj b/src/libraries/System.IO.UnmanagedMemoryStream/tests/System.IO.UnmanagedMemoryStream.Tests.csproj index 6c23b9010417c..9d0524facdc46 100644 --- a/src/libraries/System.IO.UnmanagedMemoryStream/tests/System.IO.UnmanagedMemoryStream.Tests.csproj +++ b/src/libraries/System.IO.UnmanagedMemoryStream/tests/System.IO.UnmanagedMemoryStream.Tests.csproj @@ -1,7 +1,7 @@ true - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release true diff --git a/src/libraries/System.IO/System.IO.sln b/src/libraries/System.IO/System.IO.sln index 9fcc875d9d43d..427e3bfa15f6d 100644 --- a/src/libraries/System.IO/System.IO.sln +++ b/src/libraries/System.IO/System.IO.sln @@ -26,18 +26,18 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {492EC54D-D2C4-4B3F-AC1F-646B3F7EBB02}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {492EC54D-D2C4-4B3F-AC1F-646B3F7EBB02}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {492EC54D-D2C4-4B3F-AC1F-646B3F7EBB02}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {492EC54D-D2C4-4B3F-AC1F-646B3F7EBB02}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU - {07390899-C8F6-4e83-A3A9-6867B8CB46A0}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {07390899-C8F6-4e83-A3A9-6867B8CB46A0}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {07390899-C8F6-4e83-A3A9-6867B8CB46A0}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {07390899-C8F6-4e83-A3A9-6867B8CB46A0}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU - {88883C57-83BE-4E93-A363-4CFC716F248F}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {88883C57-83BE-4E93-A363-4CFC716F248F}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {88883C57-83BE-4E93-A363-4CFC716F248F}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {88883C57-83BE-4E93-A363-4CFC716F248F}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU + {492EC54D-D2C4-4B3F-AC1F-646B3F7EBB02}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {492EC54D-D2C4-4B3F-AC1F-646B3F7EBB02}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {492EC54D-D2C4-4B3F-AC1F-646B3F7EBB02}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {492EC54D-D2C4-4B3F-AC1F-646B3F7EBB02}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU + {07390899-C8F6-4e83-A3A9-6867B8CB46A0}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {07390899-C8F6-4e83-A3A9-6867B8CB46A0}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {07390899-C8F6-4e83-A3A9-6867B8CB46A0}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {07390899-C8F6-4e83-A3A9-6867B8CB46A0}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU + {88883C57-83BE-4E93-A363-4CFC716F248F}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {88883C57-83BE-4E93-A363-4CFC716F248F}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {88883C57-83BE-4E93-A363-4CFC716F248F}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {88883C57-83BE-4E93-A363-4CFC716F248F}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/src/libraries/System.IO/ref/Configurations.props b/src/libraries/System.IO/ref/Configurations.props index 55d2de1d23f8d..7ac45c966c456 100644 --- a/src/libraries/System.IO/ref/Configurations.props +++ b/src/libraries/System.IO/ref/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.IO/ref/System.IO.csproj b/src/libraries/System.IO/ref/System.IO.csproj index 82919c6d1f860..68f6922dbd172 100644 --- a/src/libraries/System.IO/ref/System.IO.csproj +++ b/src/libraries/System.IO/ref/System.IO.csproj @@ -1,6 +1,6 @@ - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release diff --git a/src/libraries/System.IO/src/Configurations.props b/src/libraries/System.IO/src/Configurations.props index 55d2de1d23f8d..7ac45c966c456 100644 --- a/src/libraries/System.IO/src/Configurations.props +++ b/src/libraries/System.IO/src/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.IO/src/System.IO.csproj b/src/libraries/System.IO/src/System.IO.csproj index fc4390de132dd..b205fb81ac8c4 100644 --- a/src/libraries/System.IO/src/System.IO.csproj +++ b/src/libraries/System.IO/src/System.IO.csproj @@ -2,7 +2,7 @@ System.IO true - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release diff --git a/src/libraries/System.IO/tests/Configurations.props b/src/libraries/System.IO/tests/Configurations.props index 55d2de1d23f8d..7ac45c966c456 100644 --- a/src/libraries/System.IO/tests/Configurations.props +++ b/src/libraries/System.IO/tests/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.IO/tests/System.IO.Tests.csproj b/src/libraries/System.IO/tests/System.IO.Tests.csproj index 22f066eef1228..d75b6bf92e2bf 100644 --- a/src/libraries/System.IO/tests/System.IO.Tests.csproj +++ b/src/libraries/System.IO/tests/System.IO.Tests.csproj @@ -4,7 +4,7 @@ true true true - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release diff --git a/src/libraries/System.Json/System.Json.sln b/src/libraries/System.Json/System.Json.sln index 2cff5eb68b7aa..64e284ea33524 100644 --- a/src/libraries/System.Json/System.Json.sln +++ b/src/libraries/System.Json/System.Json.sln @@ -19,10 +19,10 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {DC683D60-34EC-4D85-B6E0-E97FDB37A583}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {DC683D60-34EC-4D85-B6E0-E97FDB37A583}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {DC683D60-34EC-4D85-B6E0-E97FDB37A583}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {DC683D60-34EC-4D85-B6E0-E97FDB37A583}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU + {DC683D60-34EC-4D85-B6E0-E97FDB37A583}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {DC683D60-34EC-4D85-B6E0-E97FDB37A583}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {DC683D60-34EC-4D85-B6E0-E97FDB37A583}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {DC683D60-34EC-4D85-B6E0-E97FDB37A583}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU {B11B5B76-F583-44EA-A4B7-3ABD990594F6}.Debug|Any CPU.ActiveCfg = netstandard2.0-Debug|Any CPU {B11B5B76-F583-44EA-A4B7-3ABD990594F6}.Debug|Any CPU.Build.0 = netstandard2.0-Debug|Any CPU {B11B5B76-F583-44EA-A4B7-3ABD990594F6}.Release|Any CPU.ActiveCfg = netstandard2.0-Release|Any CPU diff --git a/src/libraries/System.Json/tests/Configurations.props b/src/libraries/System.Json/tests/Configurations.props index 1a037adc3e7c1..f550cb30c4afd 100644 --- a/src/libraries/System.Json/tests/Configurations.props +++ b/src/libraries/System.Json/tests/Configurations.props @@ -1,8 +1,8 @@  - netcoreapp; - netfx; + $(NetCoreAppCurrent); + $(NetFrameworkCurrent); \ No newline at end of file diff --git a/src/libraries/System.Json/tests/System.Json.Tests.csproj b/src/libraries/System.Json/tests/System.Json.Tests.csproj index e50aa0bd2b364..78a9a6e735b7e 100644 --- a/src/libraries/System.Json/tests/System.Json.Tests.csproj +++ b/src/libraries/System.Json/tests/System.Json.Tests.csproj @@ -2,7 +2,7 @@ true true - netcoreapp-Debug;netcoreapp-Release;netfx-Debug;netfx-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release;$(NetFrameworkCurrent)-Debug;$(NetFrameworkCurrent)-Release diff --git a/src/libraries/System.Linq.Expressions/System.Linq.Expressions.sln b/src/libraries/System.Linq.Expressions/System.Linq.Expressions.sln index 0c1b9ac6d62aa..dab0d87b50dcd 100644 --- a/src/libraries/System.Linq.Expressions/System.Linq.Expressions.sln +++ b/src/libraries/System.Linq.Expressions/System.Linq.Expressions.sln @@ -26,18 +26,18 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {4B4AA59B-89F9-4A34-B3C3-C97EF531EE00}.Debug|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Debug|Any CPU - {4B4AA59B-89F9-4A34-B3C3-C97EF531EE00}.Debug|Any CPU.Build.0 = netcoreapp-Windows_NT-Debug|Any CPU - {4B4AA59B-89F9-4A34-B3C3-C97EF531EE00}.Release|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Release|Any CPU - {4B4AA59B-89F9-4A34-B3C3-C97EF531EE00}.Release|Any CPU.Build.0 = netcoreapp-Windows_NT-Release|Any CPU - {AEF718E9-D4FC-418F-A7AE-ED6B2C7B3787}.Debug|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Debug|Any CPU - {AEF718E9-D4FC-418F-A7AE-ED6B2C7B3787}.Debug|Any CPU.Build.0 = netcoreapp-Windows_NT-Debug|Any CPU - {AEF718E9-D4FC-418F-A7AE-ED6B2C7B3787}.Release|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Release|Any CPU - {AEF718E9-D4FC-418F-A7AE-ED6B2C7B3787}.Release|Any CPU.Build.0 = netcoreapp-Windows_NT-Release|Any CPU - {33B6ACE2-0B53-4054-8BF6-482F9E0E9427}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {33B6ACE2-0B53-4054-8BF6-482F9E0E9427}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {33B6ACE2-0B53-4054-8BF6-482F9E0E9427}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {33B6ACE2-0B53-4054-8BF6-482F9E0E9427}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU + {4B4AA59B-89F9-4A34-B3C3-C97EF531EE00}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Debug|Any CPU + {4B4AA59B-89F9-4A34-B3C3-C97EF531EE00}.Debug|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Debug|Any CPU + {4B4AA59B-89F9-4A34-B3C3-C97EF531EE00}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Release|Any CPU + {4B4AA59B-89F9-4A34-B3C3-C97EF531EE00}.Release|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Release|Any CPU + {AEF718E9-D4FC-418F-A7AE-ED6B2C7B3787}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Debug|Any CPU + {AEF718E9-D4FC-418F-A7AE-ED6B2C7B3787}.Debug|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Debug|Any CPU + {AEF718E9-D4FC-418F-A7AE-ED6B2C7B3787}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Release|Any CPU + {AEF718E9-D4FC-418F-A7AE-ED6B2C7B3787}.Release|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Release|Any CPU + {33B6ACE2-0B53-4054-8BF6-482F9E0E9427}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {33B6ACE2-0B53-4054-8BF6-482F9E0E9427}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {33B6ACE2-0B53-4054-8BF6-482F9E0E9427}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {33B6ACE2-0B53-4054-8BF6-482F9E0E9427}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/src/libraries/System.Linq.Expressions/ref/Configurations.props b/src/libraries/System.Linq.Expressions/ref/Configurations.props index 55d2de1d23f8d..7ac45c966c456 100644 --- a/src/libraries/System.Linq.Expressions/ref/Configurations.props +++ b/src/libraries/System.Linq.Expressions/ref/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Linq.Expressions/ref/System.Linq.Expressions.csproj b/src/libraries/System.Linq.Expressions/ref/System.Linq.Expressions.csproj index 0048bdcb1eedd..b665f924a0f81 100644 --- a/src/libraries/System.Linq.Expressions/ref/System.Linq.Expressions.csproj +++ b/src/libraries/System.Linq.Expressions/ref/System.Linq.Expressions.csproj @@ -1,6 +1,6 @@ - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release diff --git a/src/libraries/System.Linq.Expressions/src/Configurations.props b/src/libraries/System.Linq.Expressions/src/Configurations.props index 7e12b46ca40c5..c31cf2a4495cf 100644 --- a/src/libraries/System.Linq.Expressions/src/Configurations.props +++ b/src/libraries/System.Linq.Expressions/src/Configurations.props @@ -1,8 +1,8 @@  - netcoreapp-Unix; - netcoreapp-Windows_NT; + $(NetCoreAppCurrent)-Unix; + $(NetCoreAppCurrent)-Windows_NT; diff --git a/src/libraries/System.Linq.Expressions/src/System.Linq.Expressions.csproj b/src/libraries/System.Linq.Expressions/src/System.Linq.Expressions.csproj index b1fba0ea64abc..c4e9ba1ea5efc 100644 --- a/src/libraries/System.Linq.Expressions/src/System.Linq.Expressions.csproj +++ b/src/libraries/System.Linq.Expressions/src/System.Linq.Expressions.csproj @@ -2,7 +2,7 @@ true - netcoreapp-Unix-Debug;netcoreapp-Unix-Release;netcoreapp-Windows_NT-Debug;netcoreapp-Windows_NT-Release + $(NetCoreAppCurrent)-Unix-Debug;$(NetCoreAppCurrent)-Unix-Release;$(NetCoreAppCurrent)-Windows_NT-Debug;$(NetCoreAppCurrent)-Windows_NT-Release System.Linq.Expressions diff --git a/src/libraries/System.Linq.Expressions/tests/Configurations.props b/src/libraries/System.Linq.Expressions/tests/Configurations.props index 1c0ceb0002ac4..f8d083e8f7a72 100644 --- a/src/libraries/System.Linq.Expressions/tests/Configurations.props +++ b/src/libraries/System.Linq.Expressions/tests/Configurations.props @@ -1,8 +1,8 @@  - netcoreapp-Unix; - netcoreapp-Windows_NT; + $(NetCoreAppCurrent)-Unix; + $(NetCoreAppCurrent)-Windows_NT; \ 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 1dd4394f3da6d..03eca32c028f6 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 @@ -5,7 +5,7 @@ false $(DefineConstants);FEATURE_COMPILE $(DefineConstants);FEATURE_INTERPRET - netcoreapp-Unix-Debug;netcoreapp-Unix-Release;netcoreapp-Windows_NT-Debug;netcoreapp-Windows_NT-Release + $(NetCoreAppCurrent)-Unix-Debug;$(NetCoreAppCurrent)-Unix-Release;$(NetCoreAppCurrent)-Windows_NT-Debug;$(NetCoreAppCurrent)-Windows_NT-Release diff --git a/src/libraries/System.Linq.Parallel/System.Linq.Parallel.sln b/src/libraries/System.Linq.Parallel/System.Linq.Parallel.sln index 27547131a8031..e0bb69ecc78eb 100644 --- a/src/libraries/System.Linq.Parallel/System.Linq.Parallel.sln +++ b/src/libraries/System.Linq.Parallel/System.Linq.Parallel.sln @@ -26,18 +26,18 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {A7074928-82C3-4739-88FE-9B528977950C}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {A7074928-82C3-4739-88FE-9B528977950C}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {A7074928-82C3-4739-88FE-9B528977950C}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {A7074928-82C3-4739-88FE-9B528977950C}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU - {BE28323E-327A-4E0F-B7F9-16AB7EAB59DD}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {BE28323E-327A-4E0F-B7F9-16AB7EAB59DD}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {BE28323E-327A-4E0F-B7F9-16AB7EAB59DD}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {BE28323E-327A-4E0F-B7F9-16AB7EAB59DD}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU - {670405FE-3828-436E-A668-A0F0B88B57A4}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {670405FE-3828-436E-A668-A0F0B88B57A4}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {670405FE-3828-436E-A668-A0F0B88B57A4}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {670405FE-3828-436E-A668-A0F0B88B57A4}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU + {A7074928-82C3-4739-88FE-9B528977950C}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {A7074928-82C3-4739-88FE-9B528977950C}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {A7074928-82C3-4739-88FE-9B528977950C}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {A7074928-82C3-4739-88FE-9B528977950C}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU + {BE28323E-327A-4E0F-B7F9-16AB7EAB59DD}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {BE28323E-327A-4E0F-B7F9-16AB7EAB59DD}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {BE28323E-327A-4E0F-B7F9-16AB7EAB59DD}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {BE28323E-327A-4E0F-B7F9-16AB7EAB59DD}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU + {670405FE-3828-436E-A668-A0F0B88B57A4}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {670405FE-3828-436E-A668-A0F0B88B57A4}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {670405FE-3828-436E-A668-A0F0B88B57A4}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {670405FE-3828-436E-A668-A0F0B88B57A4}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/src/libraries/System.Linq.Parallel/ref/Configurations.props b/src/libraries/System.Linq.Parallel/ref/Configurations.props index 55d2de1d23f8d..7ac45c966c456 100644 --- a/src/libraries/System.Linq.Parallel/ref/Configurations.props +++ b/src/libraries/System.Linq.Parallel/ref/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Linq.Parallel/ref/System.Linq.Parallel.csproj b/src/libraries/System.Linq.Parallel/ref/System.Linq.Parallel.csproj index 8f3766799bdaf..7d1ce06248df7 100644 --- a/src/libraries/System.Linq.Parallel/ref/System.Linq.Parallel.csproj +++ b/src/libraries/System.Linq.Parallel/ref/System.Linq.Parallel.csproj @@ -1,6 +1,6 @@ - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release enable diff --git a/src/libraries/System.Linq.Parallel/src/Configurations.props b/src/libraries/System.Linq.Parallel/src/Configurations.props index 55d2de1d23f8d..7ac45c966c456 100644 --- a/src/libraries/System.Linq.Parallel/src/Configurations.props +++ b/src/libraries/System.Linq.Parallel/src/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Linq.Parallel/src/System.Linq.Parallel.csproj b/src/libraries/System.Linq.Parallel/src/System.Linq.Parallel.csproj index a87011f4bb97e..35d36fd3579e6 100644 --- a/src/libraries/System.Linq.Parallel/src/System.Linq.Parallel.csproj +++ b/src/libraries/System.Linq.Parallel/src/System.Linq.Parallel.csproj @@ -2,7 +2,7 @@ System.Linq.Parallel true - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release enable diff --git a/src/libraries/System.Linq.Parallel/tests/Configurations.props b/src/libraries/System.Linq.Parallel/tests/Configurations.props index 55d2de1d23f8d..7ac45c966c456 100644 --- a/src/libraries/System.Linq.Parallel/tests/Configurations.props +++ b/src/libraries/System.Linq.Parallel/tests/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Linq.Parallel/tests/System.Linq.Parallel.Tests.csproj b/src/libraries/System.Linq.Parallel/tests/System.Linq.Parallel.Tests.csproj index 66a9960e7cdf9..3164b73fee3d7 100644 --- a/src/libraries/System.Linq.Parallel/tests/System.Linq.Parallel.Tests.csproj +++ b/src/libraries/System.Linq.Parallel/tests/System.Linq.Parallel.Tests.csproj @@ -1,7 +1,7 @@ true - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release diff --git a/src/libraries/System.Linq.Queryable/System.Linq.Queryable.sln b/src/libraries/System.Linq.Queryable/System.Linq.Queryable.sln index e4854ff4c866d..653bc87c5ff89 100644 --- a/src/libraries/System.Linq.Queryable/System.Linq.Queryable.sln +++ b/src/libraries/System.Linq.Queryable/System.Linq.Queryable.sln @@ -26,18 +26,18 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {7B88D79B-B799-4116-A7D0-AED572540CD4}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {7B88D79B-B799-4116-A7D0-AED572540CD4}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {7B88D79B-B799-4116-A7D0-AED572540CD4}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {7B88D79B-B799-4116-A7D0-AED572540CD4}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU - {BE12B753-C130-4B68-86E3-877F1AEE52C0}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {BE12B753-C130-4B68-86E3-877F1AEE52C0}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {BE12B753-C130-4B68-86E3-877F1AEE52C0}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {BE12B753-C130-4B68-86E3-877F1AEE52C0}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU - {61C35AD0-AC18-44C4-A63C-BBCE2C75C0BB}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {61C35AD0-AC18-44C4-A63C-BBCE2C75C0BB}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {61C35AD0-AC18-44C4-A63C-BBCE2C75C0BB}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {61C35AD0-AC18-44C4-A63C-BBCE2C75C0BB}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU + {7B88D79B-B799-4116-A7D0-AED572540CD4}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {7B88D79B-B799-4116-A7D0-AED572540CD4}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {7B88D79B-B799-4116-A7D0-AED572540CD4}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {7B88D79B-B799-4116-A7D0-AED572540CD4}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU + {BE12B753-C130-4B68-86E3-877F1AEE52C0}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {BE12B753-C130-4B68-86E3-877F1AEE52C0}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {BE12B753-C130-4B68-86E3-877F1AEE52C0}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {BE12B753-C130-4B68-86E3-877F1AEE52C0}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU + {61C35AD0-AC18-44C4-A63C-BBCE2C75C0BB}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {61C35AD0-AC18-44C4-A63C-BBCE2C75C0BB}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {61C35AD0-AC18-44C4-A63C-BBCE2C75C0BB}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {61C35AD0-AC18-44C4-A63C-BBCE2C75C0BB}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/src/libraries/System.Linq.Queryable/ref/Configurations.props b/src/libraries/System.Linq.Queryable/ref/Configurations.props index 55d2de1d23f8d..7ac45c966c456 100644 --- a/src/libraries/System.Linq.Queryable/ref/Configurations.props +++ b/src/libraries/System.Linq.Queryable/ref/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Linq.Queryable/ref/System.Linq.Queryable.csproj b/src/libraries/System.Linq.Queryable/ref/System.Linq.Queryable.csproj index 81ad250341a47..f958c36cbfee5 100644 --- a/src/libraries/System.Linq.Queryable/ref/System.Linq.Queryable.csproj +++ b/src/libraries/System.Linq.Queryable/ref/System.Linq.Queryable.csproj @@ -1,6 +1,6 @@ - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release diff --git a/src/libraries/System.Linq.Queryable/src/Configurations.props b/src/libraries/System.Linq.Queryable/src/Configurations.props index 55d2de1d23f8d..7ac45c966c456 100644 --- a/src/libraries/System.Linq.Queryable/src/Configurations.props +++ b/src/libraries/System.Linq.Queryable/src/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Linq.Queryable/src/System.Linq.Queryable.csproj b/src/libraries/System.Linq.Queryable/src/System.Linq.Queryable.csproj index 56eb1dab0aafa..c65d218cbe52d 100644 --- a/src/libraries/System.Linq.Queryable/src/System.Linq.Queryable.csproj +++ b/src/libraries/System.Linq.Queryable/src/System.Linq.Queryable.csproj @@ -2,7 +2,7 @@ System.Linq.Queryable System.Linq.Queryable - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release diff --git a/src/libraries/System.Linq.Queryable/tests/Configurations.props b/src/libraries/System.Linq.Queryable/tests/Configurations.props index 55d2de1d23f8d..7ac45c966c456 100644 --- a/src/libraries/System.Linq.Queryable/tests/Configurations.props +++ b/src/libraries/System.Linq.Queryable/tests/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Linq.Queryable/tests/System.Linq.Queryable.Tests.csproj b/src/libraries/System.Linq.Queryable/tests/System.Linq.Queryable.Tests.csproj index d918b37ef4940..1255ddb87dd8d 100644 --- a/src/libraries/System.Linq.Queryable/tests/System.Linq.Queryable.Tests.csproj +++ b/src/libraries/System.Linq.Queryable/tests/System.Linq.Queryable.Tests.csproj @@ -1,6 +1,6 @@  - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release diff --git a/src/libraries/System.Linq/System.Linq.sln b/src/libraries/System.Linq/System.Linq.sln index fb87094032f1c..0d1bfe7634a30 100644 --- a/src/libraries/System.Linq/System.Linq.sln +++ b/src/libraries/System.Linq/System.Linq.sln @@ -26,18 +26,18 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {7C70BB15-870B-4946-8098-625DACD645A6}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {7C70BB15-870B-4946-8098-625DACD645A6}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {7C70BB15-870B-4946-8098-625DACD645A6}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {7C70BB15-870B-4946-8098-625DACD645A6}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU - {CA488507-3B6E-4494-B7BE-7B4EEEB2C4D1}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {CA488507-3B6E-4494-B7BE-7B4EEEB2C4D1}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {CA488507-3B6E-4494-B7BE-7B4EEEB2C4D1}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {CA488507-3B6E-4494-B7BE-7B4EEEB2C4D1}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU - {E09DDC3B-0BBC-4275-A9DD-B366F4F02B81}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {E09DDC3B-0BBC-4275-A9DD-B366F4F02B81}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {E09DDC3B-0BBC-4275-A9DD-B366F4F02B81}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {E09DDC3B-0BBC-4275-A9DD-B366F4F02B81}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU + {7C70BB15-870B-4946-8098-625DACD645A6}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {7C70BB15-870B-4946-8098-625DACD645A6}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {7C70BB15-870B-4946-8098-625DACD645A6}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {7C70BB15-870B-4946-8098-625DACD645A6}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU + {CA488507-3B6E-4494-B7BE-7B4EEEB2C4D1}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {CA488507-3B6E-4494-B7BE-7B4EEEB2C4D1}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {CA488507-3B6E-4494-B7BE-7B4EEEB2C4D1}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {CA488507-3B6E-4494-B7BE-7B4EEEB2C4D1}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU + {E09DDC3B-0BBC-4275-A9DD-B366F4F02B81}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {E09DDC3B-0BBC-4275-A9DD-B366F4F02B81}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {E09DDC3B-0BBC-4275-A9DD-B366F4F02B81}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {E09DDC3B-0BBC-4275-A9DD-B366F4F02B81}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/src/libraries/System.Linq/ref/Configurations.props b/src/libraries/System.Linq/ref/Configurations.props index 55d2de1d23f8d..7ac45c966c456 100644 --- a/src/libraries/System.Linq/ref/Configurations.props +++ b/src/libraries/System.Linq/ref/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Linq/ref/System.Linq.csproj b/src/libraries/System.Linq/ref/System.Linq.csproj index 1639c7ce8437e..7e076d87082c8 100644 --- a/src/libraries/System.Linq/ref/System.Linq.csproj +++ b/src/libraries/System.Linq/ref/System.Linq.csproj @@ -1,6 +1,6 @@ - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release enable diff --git a/src/libraries/System.Linq/src/Configurations.props b/src/libraries/System.Linq/src/Configurations.props index 55d2de1d23f8d..7ac45c966c456 100644 --- a/src/libraries/System.Linq/src/Configurations.props +++ b/src/libraries/System.Linq/src/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Linq/src/System.Linq.csproj b/src/libraries/System.Linq/src/System.Linq.csproj index 1649b1c7bd4dd..0de1af02c43c2 100644 --- a/src/libraries/System.Linq/src/System.Linq.csproj +++ b/src/libraries/System.Linq/src/System.Linq.csproj @@ -2,12 +2,12 @@ System.Linq System.Linq - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release enable - netcoreapp + $(NetCoreAppCurrent) diff --git a/src/libraries/System.Linq/tests/Configurations.props b/src/libraries/System.Linq/tests/Configurations.props index 19236e72c58fb..b79c1d7c3d9a0 100644 --- a/src/libraries/System.Linq/tests/Configurations.props +++ b/src/libraries/System.Linq/tests/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); diff --git a/src/libraries/System.Linq/tests/System.Linq.Tests.csproj b/src/libraries/System.Linq/tests/System.Linq.Tests.csproj index 5b3ab11ab5811..9950b1ba75eae 100644 --- a/src/libraries/System.Linq/tests/System.Linq.Tests.csproj +++ b/src/libraries/System.Linq/tests/System.Linq.Tests.csproj @@ -1,6 +1,6 @@  - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release diff --git a/src/libraries/System.Management/System.Management.sln b/src/libraries/System.Management/System.Management.sln index 9627992d806bd..cc400b20992b4 100644 --- a/src/libraries/System.Management/System.Management.sln +++ b/src/libraries/System.Management/System.Management.sln @@ -26,14 +26,14 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {5456707C-489E-4562-846E-B9598569F6BE}.Debug|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Debug|Any CPU - {5456707C-489E-4562-846E-B9598569F6BE}.Debug|Any CPU.Build.0 = netcoreapp-Windows_NT-Debug|Any CPU - {5456707C-489E-4562-846E-B9598569F6BE}.Release|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Release|Any CPU - {5456707C-489E-4562-846E-B9598569F6BE}.Release|Any CPU.Build.0 = netcoreapp-Windows_NT-Release|Any CPU - {950923D8-EC99-4F90-9BA6-8EB64582C555}.Debug|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Debug|Any CPU - {950923D8-EC99-4F90-9BA6-8EB64582C555}.Debug|Any CPU.Build.0 = netcoreapp-Windows_NT-Debug|Any CPU - {950923D8-EC99-4F90-9BA6-8EB64582C555}.Release|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Release|Any CPU - {950923D8-EC99-4F90-9BA6-8EB64582C555}.Release|Any CPU.Build.0 = netcoreapp-Windows_NT-Release|Any CPU + {5456707C-489E-4562-846E-B9598569F6BE}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Debug|Any CPU + {5456707C-489E-4562-846E-B9598569F6BE}.Debug|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Debug|Any CPU + {5456707C-489E-4562-846E-B9598569F6BE}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Release|Any CPU + {5456707C-489E-4562-846E-B9598569F6BE}.Release|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Release|Any CPU + {950923D8-EC99-4F90-9BA6-8EB64582C555}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Debug|Any CPU + {950923D8-EC99-4F90-9BA6-8EB64582C555}.Debug|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Debug|Any CPU + {950923D8-EC99-4F90-9BA6-8EB64582C555}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Release|Any CPU + {950923D8-EC99-4F90-9BA6-8EB64582C555}.Release|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Release|Any CPU {CA17270B-079F-4D52-97E8-C0C2E8B9D7DB}.Debug|Any CPU.ActiveCfg = netstandard2.0-Debug|Any CPU {CA17270B-079F-4D52-97E8-C0C2E8B9D7DB}.Debug|Any CPU.Build.0 = netstandard2.0-Debug|Any CPU {CA17270B-079F-4D52-97E8-C0C2E8B9D7DB}.Release|Any CPU.ActiveCfg = netstandard2.0-Release|Any CPU diff --git a/src/libraries/System.Management/src/Configurations.props b/src/libraries/System.Management/src/Configurations.props index c4215eaf10fcd..aefe09f7efa0b 100644 --- a/src/libraries/System.Management/src/Configurations.props +++ b/src/libraries/System.Management/src/Configurations.props @@ -6,8 +6,8 @@ $(PackageConfigurations); - netcoreapp-Windows_NT; - _netfx; + $(NetCoreAppCurrent)-Windows_NT; + _$(NetFrameworkCurrent); diff --git a/src/libraries/System.Management/src/System.Management.csproj b/src/libraries/System.Management/src/System.Management.csproj index efc1c0fb26971..c08e8b805fc60 100644 --- a/src/libraries/System.Management/src/System.Management.csproj +++ b/src/libraries/System.Management/src/System.Management.csproj @@ -4,7 +4,7 @@ $(NoWarn);0618 true SR.PlatformNotSupported_SystemManagement - netcoreapp-Windows_NT-Debug;netcoreapp-Windows_NT-Release;netcoreapp2.0-Windows_NT-Debug;netcoreapp2.0-Windows_NT-Release;netstandard2.0-Debug;netstandard2.0-Release + $(NetCoreAppCurrent)-Windows_NT-Debug;$(NetCoreAppCurrent)-Windows_NT-Release;netcoreapp2.0-Windows_NT-Debug;netcoreapp2.0-Windows_NT-Release;netstandard2.0-Debug;netstandard2.0-Release diff --git a/src/libraries/System.Management/tests/Configurations.props b/src/libraries/System.Management/tests/Configurations.props index c03a496a43b80..cc3d67b6a31ed 100644 --- a/src/libraries/System.Management/tests/Configurations.props +++ b/src/libraries/System.Management/tests/Configurations.props @@ -1,8 +1,8 @@  - netcoreapp-Windows_NT; - netfx; + $(NetCoreAppCurrent)-Windows_NT; + $(NetFrameworkCurrent); diff --git a/src/libraries/System.Management/tests/System.Management.Tests.csproj b/src/libraries/System.Management/tests/System.Management.Tests.csproj index f9c78d27b455f..5753e84eb6418 100644 --- a/src/libraries/System.Management/tests/System.Management.Tests.csproj +++ b/src/libraries/System.Management/tests/System.Management.Tests.csproj @@ -1,6 +1,6 @@ - netcoreapp-Windows_NT-Debug;netcoreapp-Windows_NT-Release;netfx-Debug;netfx-Release + $(NetCoreAppCurrent)-Windows_NT-Debug;$(NetCoreAppCurrent)-Windows_NT-Release;$(NetFrameworkCurrent)-Debug;$(NetFrameworkCurrent)-Release diff --git a/src/libraries/System.Memory/System.Memory.sln b/src/libraries/System.Memory/System.Memory.sln index 786d0a37ec5e8..8d6b1a5ade647 100644 --- a/src/libraries/System.Memory/System.Memory.sln +++ b/src/libraries/System.Memory/System.Memory.sln @@ -26,18 +26,18 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {15DB0DCC-68B4-4CFB-8BD2-F26BCCAF5A3F}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {15DB0DCC-68B4-4CFB-8BD2-F26BCCAF5A3F}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {15DB0DCC-68B4-4CFB-8BD2-F26BCCAF5A3F}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {15DB0DCC-68B4-4CFB-8BD2-F26BCCAF5A3F}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU - {4BBC8F69-D03E-4432-AA8A-D458FA5B235A}.Debug|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Debug|Any CPU - {4BBC8F69-D03E-4432-AA8A-D458FA5B235A}.Debug|Any CPU.Build.0 = netcoreapp-Windows_NT-Debug|Any CPU - {4BBC8F69-D03E-4432-AA8A-D458FA5B235A}.Release|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Release|Any CPU - {4BBC8F69-D03E-4432-AA8A-D458FA5B235A}.Release|Any CPU.Build.0 = netcoreapp-Windows_NT-Release|Any CPU - {E883935B-D8FD-4FC9-A189-9D9E7F7EF550}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {E883935B-D8FD-4FC9-A189-9D9E7F7EF550}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {E883935B-D8FD-4FC9-A189-9D9E7F7EF550}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {E883935B-D8FD-4FC9-A189-9D9E7F7EF550}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU + {15DB0DCC-68B4-4CFB-8BD2-F26BCCAF5A3F}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {15DB0DCC-68B4-4CFB-8BD2-F26BCCAF5A3F}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {15DB0DCC-68B4-4CFB-8BD2-F26BCCAF5A3F}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {15DB0DCC-68B4-4CFB-8BD2-F26BCCAF5A3F}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU + {4BBC8F69-D03E-4432-AA8A-D458FA5B235A}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Debug|Any CPU + {4BBC8F69-D03E-4432-AA8A-D458FA5B235A}.Debug|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Debug|Any CPU + {4BBC8F69-D03E-4432-AA8A-D458FA5B235A}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Release|Any CPU + {4BBC8F69-D03E-4432-AA8A-D458FA5B235A}.Release|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Release|Any CPU + {E883935B-D8FD-4FC9-A189-9D9E7F7EF550}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {E883935B-D8FD-4FC9-A189-9D9E7F7EF550}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {E883935B-D8FD-4FC9-A189-9D9E7F7EF550}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {E883935B-D8FD-4FC9-A189-9D9E7F7EF550}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/src/libraries/System.Memory/ref/Configurations.props b/src/libraries/System.Memory/ref/Configurations.props index 19236e72c58fb..b79c1d7c3d9a0 100644 --- a/src/libraries/System.Memory/ref/Configurations.props +++ b/src/libraries/System.Memory/ref/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); diff --git a/src/libraries/System.Memory/ref/System.Memory.csproj b/src/libraries/System.Memory/ref/System.Memory.csproj index e7cd32253340b..5f7d24cc23315 100644 --- a/src/libraries/System.Memory/ref/System.Memory.csproj +++ b/src/libraries/System.Memory/ref/System.Memory.csproj @@ -1,7 +1,7 @@ true - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release enable diff --git a/src/libraries/System.Memory/src/Configurations.props b/src/libraries/System.Memory/src/Configurations.props index db389259c06b1..f3922475141ae 100644 --- a/src/libraries/System.Memory/src/Configurations.props +++ b/src/libraries/System.Memory/src/Configurations.props @@ -1,8 +1,8 @@  - netcoreapp-Windows_NT; - netcoreapp-Unix; + $(NetCoreAppCurrent)-Windows_NT; + $(NetCoreAppCurrent)-Unix; diff --git a/src/libraries/System.Memory/src/System.Memory.csproj b/src/libraries/System.Memory/src/System.Memory.csproj index efe4512f56a17..6e2285e1364fe 100644 --- a/src/libraries/System.Memory/src/System.Memory.csproj +++ b/src/libraries/System.Memory/src/System.Memory.csproj @@ -3,7 +3,7 @@ true true enable - netcoreapp-Unix-Debug;netcoreapp-Unix-Release;netcoreapp-Windows_NT-Debug;netcoreapp-Windows_NT-Release + $(NetCoreAppCurrent)-Unix-Debug;$(NetCoreAppCurrent)-Unix-Release;$(NetCoreAppCurrent)-Windows_NT-Debug;$(NetCoreAppCurrent)-Windows_NT-Release $(DefineConstants);MAKE_ABW_PUBLIC diff --git a/src/libraries/System.Memory/tests/Configurations.props b/src/libraries/System.Memory/tests/Configurations.props index 19236e72c58fb..b79c1d7c3d9a0 100644 --- a/src/libraries/System.Memory/tests/Configurations.props +++ b/src/libraries/System.Memory/tests/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); diff --git a/src/libraries/System.Memory/tests/System.Memory.Tests.csproj b/src/libraries/System.Memory/tests/System.Memory.Tests.csproj index e0c7784c83987..aebd4ba41beb1 100644 --- a/src/libraries/System.Memory/tests/System.Memory.Tests.csproj +++ b/src/libraries/System.Memory/tests/System.Memory.Tests.csproj @@ -4,7 +4,7 @@ true true true - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release diff --git a/src/libraries/System.Net.Http.WinHttpHandler/System.Net.Http.WinHttpHandler.sln b/src/libraries/System.Net.Http.WinHttpHandler/System.Net.Http.WinHttpHandler.sln index 3c40982786da0..845e6eacab2ca 100644 --- a/src/libraries/System.Net.Http.WinHttpHandler/System.Net.Http.WinHttpHandler.sln +++ b/src/libraries/System.Net.Http.WinHttpHandler/System.Net.Http.WinHttpHandler.sln @@ -31,14 +31,14 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {17D5CC82-F72C-4DD2-B6DB-DE7FB2F19C34}.Debug|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Debug|Any CPU - {17D5CC82-F72C-4DD2-B6DB-DE7FB2F19C34}.Debug|Any CPU.Build.0 = netcoreapp-Windows_NT-Debug|Any CPU - {17D5CC82-F72C-4DD2-B6DB-DE7FB2F19C34}.Release|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Release|Any CPU - {17D5CC82-F72C-4DD2-B6DB-DE7FB2F19C34}.Release|Any CPU.Build.0 = netcoreapp-Windows_NT-Release|Any CPU - {A2ECDEDB-12B7-402C-9230-152B7601179F}.Debug|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Debug|Any CPU - {A2ECDEDB-12B7-402C-9230-152B7601179F}.Debug|Any CPU.Build.0 = netcoreapp-Windows_NT-Debug|Any CPU - {A2ECDEDB-12B7-402C-9230-152B7601179F}.Release|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Release|Any CPU - {A2ECDEDB-12B7-402C-9230-152B7601179F}.Release|Any CPU.Build.0 = netcoreapp-Windows_NT-Release|Any CPU + {17D5CC82-F72C-4DD2-B6DB-DE7FB2F19C34}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Debug|Any CPU + {17D5CC82-F72C-4DD2-B6DB-DE7FB2F19C34}.Debug|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Debug|Any CPU + {17D5CC82-F72C-4DD2-B6DB-DE7FB2F19C34}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Release|Any CPU + {17D5CC82-F72C-4DD2-B6DB-DE7FB2F19C34}.Release|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Release|Any CPU + {A2ECDEDB-12B7-402C-9230-152B7601179F}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Debug|Any CPU + {A2ECDEDB-12B7-402C-9230-152B7601179F}.Debug|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Debug|Any CPU + {A2ECDEDB-12B7-402C-9230-152B7601179F}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Release|Any CPU + {A2ECDEDB-12B7-402C-9230-152B7601179F}.Release|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Release|Any CPU {F75E3008-0562-42DF-BE72-C1384F12157E}.Debug|Any CPU.ActiveCfg = netstandard2.0-Windows_NT-Debug|Any CPU {F75E3008-0562-42DF-BE72-C1384F12157E}.Debug|Any CPU.Build.0 = netstandard2.0-Windows_NT-Debug|Any CPU {F75E3008-0562-42DF-BE72-C1384F12157E}.Release|Any CPU.ActiveCfg = netstandard2.0-Windows_NT-Release|Any CPU diff --git a/src/libraries/System.Net.Http.WinHttpHandler/src/Configurations.props b/src/libraries/System.Net.Http.WinHttpHandler/src/Configurations.props index cd4cc29ce49f2..cd93747f92889 100644 --- a/src/libraries/System.Net.Http.WinHttpHandler/src/Configurations.props +++ b/src/libraries/System.Net.Http.WinHttpHandler/src/Configurations.props @@ -7,7 +7,7 @@ $(PackageConfigurations) - netfx-Windows_NT; + $(NetFrameworkCurrent)-Windows_NT; \ No newline at end of file diff --git a/src/libraries/System.Net.Http.WinHttpHandler/src/System.Net.Http.WinHttpHandler.csproj b/src/libraries/System.Net.Http.WinHttpHandler/src/System.Net.Http.WinHttpHandler.csproj index 1d630a97f3f62..3162793532d55 100644 --- a/src/libraries/System.Net.Http.WinHttpHandler/src/System.Net.Http.WinHttpHandler.csproj +++ b/src/libraries/System.Net.Http.WinHttpHandler/src/System.Net.Http.WinHttpHandler.csproj @@ -3,7 +3,7 @@ AnyCPU SR.PlatformNotSupported_WinHttpHandler true - net461-Windows_NT-Debug;net461-Windows_NT-Release;netfx-Windows_NT-Debug;netfx-Windows_NT-Release;netstandard2.0-Debug;netstandard2.0-Release;netstandard2.0-Windows_NT-Debug;netstandard2.0-Windows_NT-Release + net461-Windows_NT-Debug;net461-Windows_NT-Release;$(NetFrameworkCurrent)-Windows_NT-Debug;$(NetFrameworkCurrent)-Windows_NT-Release;netstandard2.0-Debug;netstandard2.0-Release;netstandard2.0-Windows_NT-Debug;netstandard2.0-Windows_NT-Release true diff --git a/src/libraries/System.Net.Http.WinHttpHandler/tests/FunctionalTests/Configurations.props b/src/libraries/System.Net.Http.WinHttpHandler/tests/FunctionalTests/Configurations.props index 8bfb431d9ba66..96779f45bfb69 100644 --- a/src/libraries/System.Net.Http.WinHttpHandler/tests/FunctionalTests/Configurations.props +++ b/src/libraries/System.Net.Http.WinHttpHandler/tests/FunctionalTests/Configurations.props @@ -1,8 +1,8 @@  - netcoreapp-Windows_NT; - netfx-Windows_NT; + $(NetCoreAppCurrent)-Windows_NT; + $(NetFrameworkCurrent)-Windows_NT; \ No newline at end of file diff --git a/src/libraries/System.Net.Http.WinHttpHandler/tests/FunctionalTests/System.Net.Http.WinHttpHandler.Functional.Tests.csproj b/src/libraries/System.Net.Http.WinHttpHandler/tests/FunctionalTests/System.Net.Http.WinHttpHandler.Functional.Tests.csproj index 664167ae2891f..68941aa696d33 100644 --- a/src/libraries/System.Net.Http.WinHttpHandler/tests/FunctionalTests/System.Net.Http.WinHttpHandler.Functional.Tests.csproj +++ b/src/libraries/System.Net.Http.WinHttpHandler/tests/FunctionalTests/System.Net.Http.WinHttpHandler.Functional.Tests.csproj @@ -1,6 +1,6 @@ - netcoreapp-Windows_NT-Debug;netcoreapp-Windows_NT-Release;netfx-Windows_NT-Debug;netfx-Windows_NT-Release + $(NetCoreAppCurrent)-Windows_NT-Debug;$(NetCoreAppCurrent)-Windows_NT-Release;$(NetFrameworkCurrent)-Windows_NT-Debug;$(NetFrameworkCurrent)-Windows_NT-Release diff --git a/src/libraries/System.Net.Http.WinHttpHandler/tests/UnitTests/Configurations.props b/src/libraries/System.Net.Http.WinHttpHandler/tests/UnitTests/Configurations.props index 0d96800a87b95..f687adbbdefe3 100644 --- a/src/libraries/System.Net.Http.WinHttpHandler/tests/UnitTests/Configurations.props +++ b/src/libraries/System.Net.Http.WinHttpHandler/tests/UnitTests/Configurations.props @@ -1,7 +1,7 @@ - netcoreapp-Windows_NT; + $(NetCoreAppCurrent)-Windows_NT; diff --git a/src/libraries/System.Net.Http.WinHttpHandler/tests/UnitTests/System.Net.Http.WinHttpHandler.Unit.Tests.csproj b/src/libraries/System.Net.Http.WinHttpHandler/tests/UnitTests/System.Net.Http.WinHttpHandler.Unit.Tests.csproj index b8bca5faaba5f..640d738faac29 100644 --- a/src/libraries/System.Net.Http.WinHttpHandler/tests/UnitTests/System.Net.Http.WinHttpHandler.Unit.Tests.csproj +++ b/src/libraries/System.Net.Http.WinHttpHandler/tests/UnitTests/System.Net.Http.WinHttpHandler.Unit.Tests.csproj @@ -3,7 +3,7 @@ $(NoWarn);0436 true ../../src/Resources/Strings.resx - netcoreapp-Windows_NT-Debug;netcoreapp-Windows_NT-Release + $(NetCoreAppCurrent)-Windows_NT-Debug;$(NetCoreAppCurrent)-Windows_NT-Release diff --git a/src/libraries/System.Net.Http/System.Net.Http.sln b/src/libraries/System.Net.Http/System.Net.Http.sln index aca8883d827c3..c6b94d4f344ab 100644 --- a/src/libraries/System.Net.Http/System.Net.Http.sln +++ b/src/libraries/System.Net.Http/System.Net.Http.sln @@ -31,22 +31,22 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {C85CF035-7804-41FF-9557-48B7C948B58D}.Debug|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Debug|Any CPU - {C85CF035-7804-41FF-9557-48B7C948B58D}.Debug|Any CPU.Build.0 = netcoreapp-Windows_NT-Debug|Any CPU - {C85CF035-7804-41FF-9557-48B7C948B58D}.Release|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Release|Any CPU - {C85CF035-7804-41FF-9557-48B7C948B58D}.Release|Any CPU.Build.0 = netcoreapp-Windows_NT-Release|Any CPU - {5F9C3C9F-652E-461E-B2D6-85D264F5A733}.Debug|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Debug|Any CPU - {5F9C3C9F-652E-461E-B2D6-85D264F5A733}.Debug|Any CPU.Build.0 = netcoreapp-Windows_NT-Debug|Any CPU - {5F9C3C9F-652E-461E-B2D6-85D264F5A733}.Release|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Release|Any CPU - {5F9C3C9F-652E-461E-B2D6-85D264F5A733}.Release|Any CPU.Build.0 = netcoreapp-Windows_NT-Release|Any CPU - {1D422B1D-D7C4-41B9-862D-EB3D98DF37DE}.Debug|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Debug|Any CPU - {1D422B1D-D7C4-41B9-862D-EB3D98DF37DE}.Debug|Any CPU.Build.0 = netcoreapp-Windows_NT-Debug|Any CPU - {1D422B1D-D7C4-41B9-862D-EB3D98DF37DE}.Release|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Release|Any CPU - {1D422B1D-D7C4-41B9-862D-EB3D98DF37DE}.Release|Any CPU.Build.0 = netcoreapp-Windows_NT-Release|Any CPU - {132BF813-FC40-4D39-8B6F-E55D7633F0ED}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {132BF813-FC40-4D39-8B6F-E55D7633F0ED}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {132BF813-FC40-4D39-8B6F-E55D7633F0ED}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {132BF813-FC40-4D39-8B6F-E55D7633F0ED}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU + {C85CF035-7804-41FF-9557-48B7C948B58D}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Debug|Any CPU + {C85CF035-7804-41FF-9557-48B7C948B58D}.Debug|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Debug|Any CPU + {C85CF035-7804-41FF-9557-48B7C948B58D}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Release|Any CPU + {C85CF035-7804-41FF-9557-48B7C948B58D}.Release|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Release|Any CPU + {5F9C3C9F-652E-461E-B2D6-85D264F5A733}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Debug|Any CPU + {5F9C3C9F-652E-461E-B2D6-85D264F5A733}.Debug|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Debug|Any CPU + {5F9C3C9F-652E-461E-B2D6-85D264F5A733}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Release|Any CPU + {5F9C3C9F-652E-461E-B2D6-85D264F5A733}.Release|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Release|Any CPU + {1D422B1D-D7C4-41B9-862D-EB3D98DF37DE}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Debug|Any CPU + {1D422B1D-D7C4-41B9-862D-EB3D98DF37DE}.Debug|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Debug|Any CPU + {1D422B1D-D7C4-41B9-862D-EB3D98DF37DE}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Release|Any CPU + {1D422B1D-D7C4-41B9-862D-EB3D98DF37DE}.Release|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Release|Any CPU + {132BF813-FC40-4D39-8B6F-E55D7633F0ED}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {132BF813-FC40-4D39-8B6F-E55D7633F0ED}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {132BF813-FC40-4D39-8B6F-E55D7633F0ED}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {132BF813-FC40-4D39-8B6F-E55D7633F0ED}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/src/libraries/System.Net.Http/ref/Configurations.props b/src/libraries/System.Net.Http/ref/Configurations.props index 55d2de1d23f8d..7ac45c966c456 100644 --- a/src/libraries/System.Net.Http/ref/Configurations.props +++ b/src/libraries/System.Net.Http/ref/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Net.Http/ref/System.Net.Http.csproj b/src/libraries/System.Net.Http/ref/System.Net.Http.csproj index 622263d922076..f3e18d11def4c 100644 --- a/src/libraries/System.Net.Http/ref/System.Net.Http.csproj +++ b/src/libraries/System.Net.Http/ref/System.Net.Http.csproj @@ -1,6 +1,6 @@ - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release diff --git a/src/libraries/System.Net.Http/src/Configurations.props b/src/libraries/System.Net.Http/src/Configurations.props index 77782190baf1b..380403a6f1c44 100644 --- a/src/libraries/System.Net.Http/src/Configurations.props +++ b/src/libraries/System.Net.Http/src/Configurations.props @@ -1,9 +1,9 @@  - netcoreapp-OSX; - netcoreapp-Unix; - netcoreapp-Windows_NT; + $(NetCoreAppCurrent)-OSX; + $(NetCoreAppCurrent)-Unix; + $(NetCoreAppCurrent)-Windows_NT; diff --git a/src/libraries/System.Net.Http/src/System.Net.Http.csproj b/src/libraries/System.Net.Http/src/System.Net.Http.csproj index 72302dfa5e3b3..8de5e9452585e 100644 --- a/src/libraries/System.Net.Http/src/System.Net.Http.csproj +++ b/src/libraries/System.Net.Http/src/System.Net.Http.csproj @@ -7,7 +7,7 @@ $(NoWarn);0436;CS1573 true $(DefineConstants);HTTP_DLL - netcoreapp-OSX-Debug;netcoreapp-OSX-Release;netcoreapp-Unix-Debug;netcoreapp-Unix-Release;netcoreapp-Windows_NT-Debug;netcoreapp-Windows_NT-Release + $(NetCoreAppCurrent)-OSX-Debug;$(NetCoreAppCurrent)-OSX-Release;$(NetCoreAppCurrent)-Unix-Debug;$(NetCoreAppCurrent)-Unix-Release;$(NetCoreAppCurrent)-Windows_NT-Debug;$(NetCoreAppCurrent)-Windows_NT-Release $(DefineConstants);SYSNETHTTP_NO_OPENSSL diff --git a/src/libraries/System.Net.Http/tests/EnterpriseTests/Configurations.props b/src/libraries/System.Net.Http/tests/EnterpriseTests/Configurations.props index 3ad47b80e5f4c..9956ab2c60802 100644 --- a/src/libraries/System.Net.Http/tests/EnterpriseTests/Configurations.props +++ b/src/libraries/System.Net.Http/tests/EnterpriseTests/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp-Unix; + $(NetCoreAppCurrent)-Unix; diff --git a/src/libraries/System.Net.Http/tests/EnterpriseTests/System.Net.Http.Enterprise.Tests.csproj b/src/libraries/System.Net.Http/tests/EnterpriseTests/System.Net.Http.Enterprise.Tests.csproj index 5afe2ba47b84d..82f3806c962af 100644 --- a/src/libraries/System.Net.Http/tests/EnterpriseTests/System.Net.Http.Enterprise.Tests.csproj +++ b/src/libraries/System.Net.Http/tests/EnterpriseTests/System.Net.Http.Enterprise.Tests.csproj @@ -1,6 +1,6 @@ - netcoreapp-Unix-Debug;netcoreapp-Unix-Release + $(NetCoreAppCurrent)-Unix-Debug;$(NetCoreAppCurrent)-Unix-Release diff --git a/src/libraries/System.Net.Http/tests/FunctionalTests/Configurations.props b/src/libraries/System.Net.Http/tests/FunctionalTests/Configurations.props index adabcc0290e8a..c10c0d25a71d5 100644 --- a/src/libraries/System.Net.Http/tests/FunctionalTests/Configurations.props +++ b/src/libraries/System.Net.Http/tests/FunctionalTests/Configurations.props @@ -1,8 +1,8 @@  - netcoreapp-Windows_NT; - netcoreapp-Unix; + $(NetCoreAppCurrent)-Windows_NT; + $(NetCoreAppCurrent)-Unix; 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 5c97da2c29d8e..0b68363a2fea0 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 @@ -4,7 +4,7 @@ $(DefineConstants);SYSNETHTTP_NO_OPENSSL true true - netcoreapp-Unix-Debug;netcoreapp-Unix-Release;netcoreapp-Windows_NT-Debug;netcoreapp-Windows_NT-Release + $(NetCoreAppCurrent)-Unix-Debug;$(NetCoreAppCurrent)-Unix-Release;$(NetCoreAppCurrent)-Windows_NT-Debug;$(NetCoreAppCurrent)-Windows_NT-Release diff --git a/src/libraries/System.Net.Http/tests/UnitTests/Configurations.props b/src/libraries/System.Net.Http/tests/UnitTests/Configurations.props index 28007ae5b2950..01aaf3eabdafb 100644 --- a/src/libraries/System.Net.Http/tests/UnitTests/Configurations.props +++ b/src/libraries/System.Net.Http/tests/UnitTests/Configurations.props @@ -1,9 +1,9 @@  - netcoreapp-OSX; - netcoreapp-Unix; - netcoreapp-Windows_NT; + $(NetCoreAppCurrent)-OSX; + $(NetCoreAppCurrent)-Unix; + $(NetCoreAppCurrent)-Windows_NT; diff --git a/src/libraries/System.Net.Http/tests/UnitTests/System.Net.Http.Unit.Tests.csproj b/src/libraries/System.Net.Http/tests/UnitTests/System.Net.Http.Unit.Tests.csproj index 6aeebda024894..69c2dfc1a7e42 100644 --- a/src/libraries/System.Net.Http/tests/UnitTests/System.Net.Http.Unit.Tests.csproj +++ b/src/libraries/System.Net.Http/tests/UnitTests/System.Net.Http.Unit.Tests.csproj @@ -3,7 +3,7 @@ ../../src/Resources/Strings.resx true true - netcoreapp-OSX-Debug;netcoreapp-OSX-Release;netcoreapp-Unix-Debug;netcoreapp-Unix-Release;netcoreapp-Windows_NT-Debug;netcoreapp-Windows_NT-Release + $(NetCoreAppCurrent)-OSX-Debug;$(NetCoreAppCurrent)-OSX-Release;$(NetCoreAppCurrent)-Unix-Debug;$(NetCoreAppCurrent)-Unix-Release;$(NetCoreAppCurrent)-Windows_NT-Debug;$(NetCoreAppCurrent)-Windows_NT-Release @@ -311,22 +311,22 @@ ProductionCode\System\Net\Http\SocketsHttpHandler\HttpEnvironmentProxy.cs - + ProductionCode\System\Net\Http\SocketsHttpHandler\HttpEnvironmentProxy.Unix.cs - + ProductionCode\System\Net\Http\SocketsHttpHandler\HttpEnvironmentProxy.Windows.cs ProductionCode\System\Net\Http\SocketsHttpHandler\SystemProxyInfo.cs - + ProductionCode\System\Net\Http\SocketsHttpHandler\SystemProxyInfo.OSX.cs - + ProductionCode\System\Net\Http\SocketsHttpHandler\SystemProxyInfo.Unix.cs - + ProductionCode\System\Net\Http\SocketsHttpHandler\SystemProxyInfo.Windows.cs @@ -334,7 +334,7 @@ - + diff --git a/src/libraries/System.Net.HttpListener/System.Net.HttpListener.sln b/src/libraries/System.Net.HttpListener/System.Net.HttpListener.sln index b090f02878145..534663c7ed285 100644 --- a/src/libraries/System.Net.HttpListener/System.Net.HttpListener.sln +++ b/src/libraries/System.Net.HttpListener/System.Net.HttpListener.sln @@ -26,18 +26,18 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {851A40FE-7F07-415D-8592-5FE2096E84D3}.Debug|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Debug|Any CPU - {851A40FE-7F07-415D-8592-5FE2096E84D3}.Debug|Any CPU.Build.0 = netcoreapp-Windows_NT-Debug|Any CPU - {851A40FE-7F07-415D-8592-5FE2096E84D3}.Release|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Release|Any CPU - {851A40FE-7F07-415D-8592-5FE2096E84D3}.Release|Any CPU.Build.0 = netcoreapp-Windows_NT-Release|Any CPU - {31E8D18B-9E7D-4924-AFD8-5BD8D75C31FB}.Debug|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Debug|Any CPU - {31E8D18B-9E7D-4924-AFD8-5BD8D75C31FB}.Debug|Any CPU.Build.0 = netcoreapp-Windows_NT-Debug|Any CPU - {31E8D18B-9E7D-4924-AFD8-5BD8D75C31FB}.Release|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Release|Any CPU - {31E8D18B-9E7D-4924-AFD8-5BD8D75C31FB}.Release|Any CPU.Build.0 = netcoreapp-Windows_NT-Release|Any CPU - {41899248-F846-4F88-91A1-01B037F93BF3}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {41899248-F846-4F88-91A1-01B037F93BF3}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {41899248-F846-4F88-91A1-01B037F93BF3}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {41899248-F846-4F88-91A1-01B037F93BF3}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU + {851A40FE-7F07-415D-8592-5FE2096E84D3}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Debug|Any CPU + {851A40FE-7F07-415D-8592-5FE2096E84D3}.Debug|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Debug|Any CPU + {851A40FE-7F07-415D-8592-5FE2096E84D3}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Release|Any CPU + {851A40FE-7F07-415D-8592-5FE2096E84D3}.Release|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Release|Any CPU + {31E8D18B-9E7D-4924-AFD8-5BD8D75C31FB}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Debug|Any CPU + {31E8D18B-9E7D-4924-AFD8-5BD8D75C31FB}.Debug|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Debug|Any CPU + {31E8D18B-9E7D-4924-AFD8-5BD8D75C31FB}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Release|Any CPU + {31E8D18B-9E7D-4924-AFD8-5BD8D75C31FB}.Release|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Release|Any CPU + {41899248-F846-4F88-91A1-01B037F93BF3}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {41899248-F846-4F88-91A1-01B037F93BF3}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {41899248-F846-4F88-91A1-01B037F93BF3}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {41899248-F846-4F88-91A1-01B037F93BF3}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/src/libraries/System.Net.HttpListener/ref/Configurations.props b/src/libraries/System.Net.HttpListener/ref/Configurations.props index 55d2de1d23f8d..7ac45c966c456 100644 --- a/src/libraries/System.Net.HttpListener/ref/Configurations.props +++ b/src/libraries/System.Net.HttpListener/ref/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Net.HttpListener/ref/System.Net.HttpListener.csproj b/src/libraries/System.Net.HttpListener/ref/System.Net.HttpListener.csproj index d89e8400a7d27..54a28a5049254 100644 --- a/src/libraries/System.Net.HttpListener/ref/System.Net.HttpListener.csproj +++ b/src/libraries/System.Net.HttpListener/ref/System.Net.HttpListener.csproj @@ -1,6 +1,6 @@ - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release diff --git a/src/libraries/System.Net.HttpListener/src/Configurations.props b/src/libraries/System.Net.HttpListener/src/Configurations.props index dd006cdc1e7d0..75eaac02dc208 100644 --- a/src/libraries/System.Net.HttpListener/src/Configurations.props +++ b/src/libraries/System.Net.HttpListener/src/Configurations.props @@ -1,8 +1,8 @@  - netcoreapp-Windows_NT; - netcoreapp-Unix; + $(NetCoreAppCurrent)-Windows_NT; + $(NetCoreAppCurrent)-Unix; \ No newline at end of file diff --git a/src/libraries/System.Net.HttpListener/src/System.Net.HttpListener.csproj b/src/libraries/System.Net.HttpListener/src/System.Net.HttpListener.csproj index b45a263fb86dd..7f56d3519798f 100644 --- a/src/libraries/System.Net.HttpListener/src/System.Net.HttpListener.csproj +++ b/src/libraries/System.Net.HttpListener/src/System.Net.HttpListener.csproj @@ -2,7 +2,7 @@ true false - netcoreapp-Unix-Debug;netcoreapp-Unix-Release;netcoreapp-Windows_NT-Debug;netcoreapp-Windows_NT-Release + $(NetCoreAppCurrent)-Unix-Debug;$(NetCoreAppCurrent)-Unix-Release;$(NetCoreAppCurrent)-Windows_NT-Debug;$(NetCoreAppCurrent)-Windows_NT-Release diff --git a/src/libraries/System.Net.HttpListener/tests/Configurations.props b/src/libraries/System.Net.HttpListener/tests/Configurations.props index 7a72d5d118c93..34685e869339e 100644 --- a/src/libraries/System.Net.HttpListener/tests/Configurations.props +++ b/src/libraries/System.Net.HttpListener/tests/Configurations.props @@ -1,9 +1,9 @@  - netcoreapp-Windows_NT; - netcoreapp-OSX; - netcoreapp-Unix; + $(NetCoreAppCurrent)-Windows_NT; + $(NetCoreAppCurrent)-OSX; + $(NetCoreAppCurrent)-Unix; diff --git a/src/libraries/System.Net.HttpListener/tests/System.Net.HttpListener.Tests.csproj b/src/libraries/System.Net.HttpListener/tests/System.Net.HttpListener.Tests.csproj index 7557fd65cd2f9..f08d4cca2cc00 100644 --- a/src/libraries/System.Net.HttpListener/tests/System.Net.HttpListener.Tests.csproj +++ b/src/libraries/System.Net.HttpListener/tests/System.Net.HttpListener.Tests.csproj @@ -2,7 +2,7 @@ true ../src/Resources/Strings.resx - netcoreapp-OSX-Debug;netcoreapp-OSX-Release;netcoreapp-Unix-Debug;netcoreapp-Unix-Release;netcoreapp-Windows_NT-Debug;netcoreapp-Windows_NT-Release + $(NetCoreAppCurrent)-OSX-Debug;$(NetCoreAppCurrent)-OSX-Release;$(NetCoreAppCurrent)-Unix-Debug;$(NetCoreAppCurrent)-Unix-Release;$(NetCoreAppCurrent)-Windows_NT-Debug;$(NetCoreAppCurrent)-Windows_NT-Release diff --git a/src/libraries/System.Net.Mail/System.Net.Mail.sln b/src/libraries/System.Net.Mail/System.Net.Mail.sln index 95c349a57a854..c2926937d526d 100644 --- a/src/libraries/System.Net.Mail/System.Net.Mail.sln +++ b/src/libraries/System.Net.Mail/System.Net.Mail.sln @@ -31,22 +31,22 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {A26D88B7-6EF6-4C8C-828B-7B57732CCE38}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {A26D88B7-6EF6-4C8C-828B-7B57732CCE38}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {A26D88B7-6EF6-4C8C-828B-7B57732CCE38}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {A26D88B7-6EF6-4C8C-828B-7B57732CCE38}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU - {2525E37E-0EC1-4374-92FD-D2752BEED978}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {2525E37E-0EC1-4374-92FD-D2752BEED978}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {2525E37E-0EC1-4374-92FD-D2752BEED978}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {2525E37E-0EC1-4374-92FD-D2752BEED978}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU - {2BA70C31-18B0-461B-B6C9-14B11B65BE89}.Debug|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Debug|Any CPU - {2BA70C31-18B0-461B-B6C9-14B11B65BE89}.Debug|Any CPU.Build.0 = netcoreapp-Windows_NT-Debug|Any CPU - {2BA70C31-18B0-461B-B6C9-14B11B65BE89}.Release|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Release|Any CPU - {2BA70C31-18B0-461B-B6C9-14B11B65BE89}.Release|Any CPU.Build.0 = netcoreapp-Windows_NT-Release|Any CPU - {301ABDC3-6604-477F-B7CB-1AAD6A8408CF}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {301ABDC3-6604-477F-B7CB-1AAD6A8408CF}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {301ABDC3-6604-477F-B7CB-1AAD6A8408CF}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {301ABDC3-6604-477F-B7CB-1AAD6A8408CF}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU + {A26D88B7-6EF6-4C8C-828B-7B57732CCE38}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {A26D88B7-6EF6-4C8C-828B-7B57732CCE38}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {A26D88B7-6EF6-4C8C-828B-7B57732CCE38}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {A26D88B7-6EF6-4C8C-828B-7B57732CCE38}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU + {2525E37E-0EC1-4374-92FD-D2752BEED978}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {2525E37E-0EC1-4374-92FD-D2752BEED978}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {2525E37E-0EC1-4374-92FD-D2752BEED978}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {2525E37E-0EC1-4374-92FD-D2752BEED978}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU + {2BA70C31-18B0-461B-B6C9-14B11B65BE89}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Debug|Any CPU + {2BA70C31-18B0-461B-B6C9-14B11B65BE89}.Debug|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Debug|Any CPU + {2BA70C31-18B0-461B-B6C9-14B11B65BE89}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Release|Any CPU + {2BA70C31-18B0-461B-B6C9-14B11B65BE89}.Release|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Release|Any CPU + {301ABDC3-6604-477F-B7CB-1AAD6A8408CF}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {301ABDC3-6604-477F-B7CB-1AAD6A8408CF}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {301ABDC3-6604-477F-B7CB-1AAD6A8408CF}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {301ABDC3-6604-477F-B7CB-1AAD6A8408CF}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/src/libraries/System.Net.Mail/ref/Configurations.props b/src/libraries/System.Net.Mail/ref/Configurations.props index 55d2de1d23f8d..7ac45c966c456 100644 --- a/src/libraries/System.Net.Mail/ref/Configurations.props +++ b/src/libraries/System.Net.Mail/ref/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Net.Mail/ref/System.Net.Mail.csproj b/src/libraries/System.Net.Mail/ref/System.Net.Mail.csproj index fd42a2d2b9fb8..5f2089b23d52d 100644 --- a/src/libraries/System.Net.Mail/ref/System.Net.Mail.csproj +++ b/src/libraries/System.Net.Mail/ref/System.Net.Mail.csproj @@ -1,6 +1,6 @@ - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release diff --git a/src/libraries/System.Net.Mail/src/Configurations.props b/src/libraries/System.Net.Mail/src/Configurations.props index 1c0ceb0002ac4..f8d083e8f7a72 100644 --- a/src/libraries/System.Net.Mail/src/Configurations.props +++ b/src/libraries/System.Net.Mail/src/Configurations.props @@ -1,8 +1,8 @@  - netcoreapp-Unix; - netcoreapp-Windows_NT; + $(NetCoreAppCurrent)-Unix; + $(NetCoreAppCurrent)-Windows_NT; \ No newline at end of file diff --git a/src/libraries/System.Net.Mail/src/System.Net.Mail.csproj b/src/libraries/System.Net.Mail/src/System.Net.Mail.csproj index d343c9ef4678b..c66cbad6c9d37 100644 --- a/src/libraries/System.Net.Mail/src/System.Net.Mail.csproj +++ b/src/libraries/System.Net.Mail/src/System.Net.Mail.csproj @@ -1,7 +1,7 @@ true - netcoreapp-Unix-Debug;netcoreapp-Unix-Release;netcoreapp-Windows_NT-Debug;netcoreapp-Windows_NT-Release + $(NetCoreAppCurrent)-Unix-Debug;$(NetCoreAppCurrent)-Unix-Release;$(NetCoreAppCurrent)-Windows_NT-Debug;$(NetCoreAppCurrent)-Windows_NT-Release diff --git a/src/libraries/System.Net.Mail/tests/Functional/Configurations.props b/src/libraries/System.Net.Mail/tests/Functional/Configurations.props index 89d6ac0f025b9..b6e0d3ce6383b 100644 --- a/src/libraries/System.Net.Mail/tests/Functional/Configurations.props +++ b/src/libraries/System.Net.Mail/tests/Functional/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Net.Mail/tests/Functional/System.Net.Mail.Functional.Tests.csproj b/src/libraries/System.Net.Mail/tests/Functional/System.Net.Mail.Functional.Tests.csproj index f91fe3a0abbb5..56329c4229c5c 100644 --- a/src/libraries/System.Net.Mail/tests/Functional/System.Net.Mail.Functional.Tests.csproj +++ b/src/libraries/System.Net.Mail/tests/Functional/System.Net.Mail.Functional.Tests.csproj @@ -1,7 +1,7 @@  true - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release diff --git a/src/libraries/System.Net.Mail/tests/Unit/Configurations.props b/src/libraries/System.Net.Mail/tests/Unit/Configurations.props index ad8296d246d1f..eca4299792e25 100644 --- a/src/libraries/System.Net.Mail/tests/Unit/Configurations.props +++ b/src/libraries/System.Net.Mail/tests/Unit/Configurations.props @@ -1,8 +1,8 @@  - netcoreapp-Windows_NT; - netcoreapp-Unix; + $(NetCoreAppCurrent)-Windows_NT; + $(NetCoreAppCurrent)-Unix; \ No newline at end of file diff --git a/src/libraries/System.Net.Mail/tests/Unit/System.Net.Mail.Unit.Tests.csproj b/src/libraries/System.Net.Mail/tests/Unit/System.Net.Mail.Unit.Tests.csproj index 926815f7d3308..0c5f722803372 100644 --- a/src/libraries/System.Net.Mail/tests/Unit/System.Net.Mail.Unit.Tests.csproj +++ b/src/libraries/System.Net.Mail/tests/Unit/System.Net.Mail.Unit.Tests.csproj @@ -2,7 +2,7 @@ true ../../src/Resources/Strings.resx - netcoreapp-Unix-Debug;netcoreapp-Unix-Release;netcoreapp-Windows_NT-Debug;netcoreapp-Windows_NT-Release + $(NetCoreAppCurrent)-Unix-Debug;$(NetCoreAppCurrent)-Unix-Release;$(NetCoreAppCurrent)-Windows_NT-Debug;$(NetCoreAppCurrent)-Windows_NT-Release diff --git a/src/libraries/System.Net.NameResolution/System.Net.NameResolution.sln b/src/libraries/System.Net.NameResolution/System.Net.NameResolution.sln index feedd11e76028..877fff9789b0e 100644 --- a/src/libraries/System.Net.NameResolution/System.Net.NameResolution.sln +++ b/src/libraries/System.Net.NameResolution/System.Net.NameResolution.sln @@ -36,26 +36,26 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {4FE5ECEE-ACC5-4558-A946-573426599B73}.Debug|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Debug|Any CPU - {4FE5ECEE-ACC5-4558-A946-573426599B73}.Debug|Any CPU.Build.0 = netcoreapp-Windows_NT-Debug|Any CPU - {4FE5ECEE-ACC5-4558-A946-573426599B73}.Release|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Release|Any CPU - {4FE5ECEE-ACC5-4558-A946-573426599B73}.Release|Any CPU.Build.0 = netcoreapp-Windows_NT-Release|Any CPU - {F6D1C093-081D-46DE-B5A8-516533375FDD}.Debug|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Debug|Any CPU - {F6D1C093-081D-46DE-B5A8-516533375FDD}.Debug|Any CPU.Build.0 = netcoreapp-Windows_NT-Debug|Any CPU - {F6D1C093-081D-46DE-B5A8-516533375FDD}.Release|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Release|Any CPU - {F6D1C093-081D-46DE-B5A8-516533375FDD}.Release|Any CPU.Build.0 = netcoreapp-Windows_NT-Release|Any CPU - {239347DB-D566-48C9-9551-28AB3AD12EC3}.Debug|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Debug|Any CPU - {239347DB-D566-48C9-9551-28AB3AD12EC3}.Debug|Any CPU.Build.0 = netcoreapp-Windows_NT-Debug|Any CPU - {239347DB-D566-48C9-9551-28AB3AD12EC3}.Release|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Release|Any CPU - {239347DB-D566-48C9-9551-28AB3AD12EC3}.Release|Any CPU.Build.0 = netcoreapp-Windows_NT-Release|Any CPU - {1714448C-211E-48C1-8B7E-4EE667D336A1}.Debug|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Debug|Any CPU - {1714448C-211E-48C1-8B7E-4EE667D336A1}.Debug|Any CPU.Build.0 = netcoreapp-Windows_NT-Debug|Any CPU - {1714448C-211E-48C1-8B7E-4EE667D336A1}.Release|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Release|Any CPU - {1714448C-211E-48C1-8B7E-4EE667D336A1}.Release|Any CPU.Build.0 = netcoreapp-Windows_NT-Release|Any CPU - {324DF6B2-4234-47FF-A2C7-A739F19E8F17}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {324DF6B2-4234-47FF-A2C7-A739F19E8F17}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {324DF6B2-4234-47FF-A2C7-A739F19E8F17}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {324DF6B2-4234-47FF-A2C7-A739F19E8F17}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU + {4FE5ECEE-ACC5-4558-A946-573426599B73}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Debug|Any CPU + {4FE5ECEE-ACC5-4558-A946-573426599B73}.Debug|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Debug|Any CPU + {4FE5ECEE-ACC5-4558-A946-573426599B73}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Release|Any CPU + {4FE5ECEE-ACC5-4558-A946-573426599B73}.Release|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Release|Any CPU + {F6D1C093-081D-46DE-B5A8-516533375FDD}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Debug|Any CPU + {F6D1C093-081D-46DE-B5A8-516533375FDD}.Debug|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Debug|Any CPU + {F6D1C093-081D-46DE-B5A8-516533375FDD}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Release|Any CPU + {F6D1C093-081D-46DE-B5A8-516533375FDD}.Release|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Release|Any CPU + {239347DB-D566-48C9-9551-28AB3AD12EC3}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Debug|Any CPU + {239347DB-D566-48C9-9551-28AB3AD12EC3}.Debug|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Debug|Any CPU + {239347DB-D566-48C9-9551-28AB3AD12EC3}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Release|Any CPU + {239347DB-D566-48C9-9551-28AB3AD12EC3}.Release|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Release|Any CPU + {1714448C-211E-48C1-8B7E-4EE667D336A1}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Debug|Any CPU + {1714448C-211E-48C1-8B7E-4EE667D336A1}.Debug|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Debug|Any CPU + {1714448C-211E-48C1-8B7E-4EE667D336A1}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Release|Any CPU + {1714448C-211E-48C1-8B7E-4EE667D336A1}.Release|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Release|Any CPU + {324DF6B2-4234-47FF-A2C7-A739F19E8F17}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {324DF6B2-4234-47FF-A2C7-A739F19E8F17}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {324DF6B2-4234-47FF-A2C7-A739F19E8F17}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {324DF6B2-4234-47FF-A2C7-A739F19E8F17}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/src/libraries/System.Net.NameResolution/ref/Configurations.props b/src/libraries/System.Net.NameResolution/ref/Configurations.props index 55d2de1d23f8d..7ac45c966c456 100644 --- a/src/libraries/System.Net.NameResolution/ref/Configurations.props +++ b/src/libraries/System.Net.NameResolution/ref/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Net.NameResolution/ref/System.Net.NameResolution.csproj b/src/libraries/System.Net.NameResolution/ref/System.Net.NameResolution.csproj index b3e76ad3f11ab..18389f198d8c0 100644 --- a/src/libraries/System.Net.NameResolution/ref/System.Net.NameResolution.csproj +++ b/src/libraries/System.Net.NameResolution/ref/System.Net.NameResolution.csproj @@ -1,6 +1,6 @@ - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release diff --git a/src/libraries/System.Net.NameResolution/src/Configurations.props b/src/libraries/System.Net.NameResolution/src/Configurations.props index dd006cdc1e7d0..75eaac02dc208 100644 --- a/src/libraries/System.Net.NameResolution/src/Configurations.props +++ b/src/libraries/System.Net.NameResolution/src/Configurations.props @@ -1,8 +1,8 @@  - netcoreapp-Windows_NT; - netcoreapp-Unix; + $(NetCoreAppCurrent)-Windows_NT; + $(NetCoreAppCurrent)-Unix; \ No newline at end of file diff --git a/src/libraries/System.Net.NameResolution/src/System.Net.NameResolution.csproj b/src/libraries/System.Net.NameResolution/src/System.Net.NameResolution.csproj index f261d928c0b98..901370db804c5 100644 --- a/src/libraries/System.Net.NameResolution/src/System.Net.NameResolution.csproj +++ b/src/libraries/System.Net.NameResolution/src/System.Net.NameResolution.csproj @@ -2,7 +2,7 @@ System.Net.NameResolution true - netcoreapp-Unix-Debug;netcoreapp-Unix-Release;netcoreapp-Windows_NT-Debug;netcoreapp-Windows_NT-Release + $(NetCoreAppCurrent)-Unix-Debug;$(NetCoreAppCurrent)-Unix-Release;$(NetCoreAppCurrent)-Windows_NT-Debug;$(NetCoreAppCurrent)-Windows_NT-Release diff --git a/src/libraries/System.Net.NameResolution/tests/FunctionalTests/Configurations.props b/src/libraries/System.Net.NameResolution/tests/FunctionalTests/Configurations.props index ad8296d246d1f..eca4299792e25 100644 --- a/src/libraries/System.Net.NameResolution/tests/FunctionalTests/Configurations.props +++ b/src/libraries/System.Net.NameResolution/tests/FunctionalTests/Configurations.props @@ -1,8 +1,8 @@  - netcoreapp-Windows_NT; - netcoreapp-Unix; + $(NetCoreAppCurrent)-Windows_NT; + $(NetCoreAppCurrent)-Unix; \ No newline at end of file diff --git a/src/libraries/System.Net.NameResolution/tests/FunctionalTests/System.Net.NameResolution.Functional.Tests.csproj b/src/libraries/System.Net.NameResolution/tests/FunctionalTests/System.Net.NameResolution.Functional.Tests.csproj index 89d0f71f0500e..f92b32bdabbe4 100644 --- a/src/libraries/System.Net.NameResolution/tests/FunctionalTests/System.Net.NameResolution.Functional.Tests.csproj +++ b/src/libraries/System.Net.NameResolution/tests/FunctionalTests/System.Net.NameResolution.Functional.Tests.csproj @@ -1,6 +1,6 @@ - netcoreapp-Unix-Debug;netcoreapp-Unix-Release;netcoreapp-Windows_NT-Debug;netcoreapp-Windows_NT-Release + $(NetCoreAppCurrent)-Unix-Debug;$(NetCoreAppCurrent)-Unix-Release;$(NetCoreAppCurrent)-Windows_NT-Debug;$(NetCoreAppCurrent)-Windows_NT-Release diff --git a/src/libraries/System.Net.NameResolution/tests/PalTests/Configurations.props b/src/libraries/System.Net.NameResolution/tests/PalTests/Configurations.props index ad8296d246d1f..eca4299792e25 100644 --- a/src/libraries/System.Net.NameResolution/tests/PalTests/Configurations.props +++ b/src/libraries/System.Net.NameResolution/tests/PalTests/Configurations.props @@ -1,8 +1,8 @@  - netcoreapp-Windows_NT; - netcoreapp-Unix; + $(NetCoreAppCurrent)-Windows_NT; + $(NetCoreAppCurrent)-Unix; \ No newline at end of file diff --git a/src/libraries/System.Net.NameResolution/tests/PalTests/System.Net.NameResolution.Pal.Tests.csproj b/src/libraries/System.Net.NameResolution/tests/PalTests/System.Net.NameResolution.Pal.Tests.csproj index f5bc1d1768434..167908b39a2ca 100644 --- a/src/libraries/System.Net.NameResolution/tests/PalTests/System.Net.NameResolution.Pal.Tests.csproj +++ b/src/libraries/System.Net.NameResolution/tests/PalTests/System.Net.NameResolution.Pal.Tests.csproj @@ -2,13 +2,13 @@ true ../../src/Resources/Strings.resx - netcoreapp-Unix-Debug;netcoreapp-Unix-Release;netcoreapp-Windows_NT-Debug;netcoreapp-Windows_NT-Release + $(NetCoreAppCurrent)-Unix-Debug;$(NetCoreAppCurrent)-Unix-Release;$(NetCoreAppCurrent)-Windows_NT-Debug;$(NetCoreAppCurrent)-Windows_NT-Release - + ProductionCode\System\Net\IPHostEntry.cs diff --git a/src/libraries/System.Net.NameResolution/tests/UnitTests/Configurations.props b/src/libraries/System.Net.NameResolution/tests/UnitTests/Configurations.props index ad8296d246d1f..eca4299792e25 100644 --- a/src/libraries/System.Net.NameResolution/tests/UnitTests/Configurations.props +++ b/src/libraries/System.Net.NameResolution/tests/UnitTests/Configurations.props @@ -1,8 +1,8 @@  - netcoreapp-Windows_NT; - netcoreapp-Unix; + $(NetCoreAppCurrent)-Windows_NT; + $(NetCoreAppCurrent)-Unix; \ No newline at end of file diff --git a/src/libraries/System.Net.NameResolution/tests/UnitTests/System.Net.NameResolution.Unit.Tests.csproj b/src/libraries/System.Net.NameResolution/tests/UnitTests/System.Net.NameResolution.Unit.Tests.csproj index f94f132a89eb8..2368b52dcf010 100644 --- a/src/libraries/System.Net.NameResolution/tests/UnitTests/System.Net.NameResolution.Unit.Tests.csproj +++ b/src/libraries/System.Net.NameResolution/tests/UnitTests/System.Net.NameResolution.Unit.Tests.csproj @@ -4,7 +4,7 @@ true 0436 - netcoreapp-Unix-Debug;netcoreapp-Unix-Release;netcoreapp-Windows_NT-Debug;netcoreapp-Windows_NT-Release + $(NetCoreAppCurrent)-Unix-Debug;$(NetCoreAppCurrent)-Unix-Release;$(NetCoreAppCurrent)-Windows_NT-Debug;$(NetCoreAppCurrent)-Windows_NT-Release diff --git a/src/libraries/System.Net.NetworkInformation/System.Net.NetworkInformation.sln b/src/libraries/System.Net.NetworkInformation/System.Net.NetworkInformation.sln index 38a8bd8f82492..a5c706a393967 100644 --- a/src/libraries/System.Net.NetworkInformation/System.Net.NetworkInformation.sln +++ b/src/libraries/System.Net.NetworkInformation/System.Net.NetworkInformation.sln @@ -26,18 +26,18 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {DCBB8805-4658-44BF-B5E8-B6714EC8936B}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {DCBB8805-4658-44BF-B5E8-B6714EC8936B}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {DCBB8805-4658-44BF-B5E8-B6714EC8936B}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {DCBB8805-4658-44BF-B5E8-B6714EC8936B}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU - {3CA89D6C-F8D1-4813-9775-F8D249686E31}.Debug|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Debug|Any CPU - {3CA89D6C-F8D1-4813-9775-F8D249686E31}.Debug|Any CPU.Build.0 = netcoreapp-Windows_NT-Debug|Any CPU - {3CA89D6C-F8D1-4813-9775-F8D249686E31}.Release|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Release|Any CPU - {3CA89D6C-F8D1-4813-9775-F8D249686E31}.Release|Any CPU.Build.0 = netcoreapp-Windows_NT-Release|Any CPU - {B897C3BE-7162-44BB-8B81-7A2464C082A7}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {B897C3BE-7162-44BB-8B81-7A2464C082A7}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {B897C3BE-7162-44BB-8B81-7A2464C082A7}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {B897C3BE-7162-44BB-8B81-7A2464C082A7}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU + {DCBB8805-4658-44BF-B5E8-B6714EC8936B}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {DCBB8805-4658-44BF-B5E8-B6714EC8936B}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {DCBB8805-4658-44BF-B5E8-B6714EC8936B}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {DCBB8805-4658-44BF-B5E8-B6714EC8936B}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU + {3CA89D6C-F8D1-4813-9775-F8D249686E31}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Debug|Any CPU + {3CA89D6C-F8D1-4813-9775-F8D249686E31}.Debug|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Debug|Any CPU + {3CA89D6C-F8D1-4813-9775-F8D249686E31}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Release|Any CPU + {3CA89D6C-F8D1-4813-9775-F8D249686E31}.Release|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Release|Any CPU + {B897C3BE-7162-44BB-8B81-7A2464C082A7}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {B897C3BE-7162-44BB-8B81-7A2464C082A7}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {B897C3BE-7162-44BB-8B81-7A2464C082A7}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {B897C3BE-7162-44BB-8B81-7A2464C082A7}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/src/libraries/System.Net.NetworkInformation/ref/Configurations.props b/src/libraries/System.Net.NetworkInformation/ref/Configurations.props index 55d2de1d23f8d..7ac45c966c456 100644 --- a/src/libraries/System.Net.NetworkInformation/ref/Configurations.props +++ b/src/libraries/System.Net.NetworkInformation/ref/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Net.NetworkInformation/ref/System.Net.NetworkInformation.csproj b/src/libraries/System.Net.NetworkInformation/ref/System.Net.NetworkInformation.csproj index 60c6f52812971..e3c5453638e7a 100644 --- a/src/libraries/System.Net.NetworkInformation/ref/System.Net.NetworkInformation.csproj +++ b/src/libraries/System.Net.NetworkInformation/ref/System.Net.NetworkInformation.csproj @@ -1,6 +1,6 @@ - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release diff --git a/src/libraries/System.Net.NetworkInformation/src/Configurations.props b/src/libraries/System.Net.NetworkInformation/src/Configurations.props index d23e9c1537197..d785c0b896f63 100644 --- a/src/libraries/System.Net.NetworkInformation/src/Configurations.props +++ b/src/libraries/System.Net.NetworkInformation/src/Configurations.props @@ -1,10 +1,10 @@  - netcoreapp-Linux; - netcoreapp-OSX; - netcoreapp-FreeBSD; - netcoreapp-Windows_NT; + $(NetCoreAppCurrent)-Linux; + $(NetCoreAppCurrent)-OSX; + $(NetCoreAppCurrent)-FreeBSD; + $(NetCoreAppCurrent)-Windows_NT; diff --git a/src/libraries/System.Net.NetworkInformation/src/System.Net.NetworkInformation.csproj b/src/libraries/System.Net.NetworkInformation/src/System.Net.NetworkInformation.csproj index 9c9664f0ad3a5..2035f79d3f2d7 100644 --- a/src/libraries/System.Net.NetworkInformation/src/System.Net.NetworkInformation.csproj +++ b/src/libraries/System.Net.NetworkInformation/src/System.Net.NetworkInformation.csproj @@ -4,7 +4,7 @@ Library true $(NoWarn);CA1823 - netcoreapp-FreeBSD-Debug;netcoreapp-FreeBSD-Release;netcoreapp-Linux-Debug;netcoreapp-Linux-Release;netcoreapp-OSX-Debug;netcoreapp-OSX-Release;netcoreapp-Windows_NT-Debug;netcoreapp-Windows_NT-Release + $(NetCoreAppCurrent)-FreeBSD-Debug;$(NetCoreAppCurrent)-FreeBSD-Release;$(NetCoreAppCurrent)-Linux-Debug;$(NetCoreAppCurrent)-Linux-Release;$(NetCoreAppCurrent)-OSX-Debug;$(NetCoreAppCurrent)-OSX-Release;$(NetCoreAppCurrent)-Windows_NT-Debug;$(NetCoreAppCurrent)-Windows_NT-Release diff --git a/src/libraries/System.Net.NetworkInformation/tests/FunctionalTests/Configurations.props b/src/libraries/System.Net.NetworkInformation/tests/FunctionalTests/Configurations.props index 89d6ac0f025b9..b6e0d3ce6383b 100644 --- a/src/libraries/System.Net.NetworkInformation/tests/FunctionalTests/Configurations.props +++ b/src/libraries/System.Net.NetworkInformation/tests/FunctionalTests/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Net.NetworkInformation/tests/FunctionalTests/System.Net.NetworkInformation.Functional.Tests.csproj b/src/libraries/System.Net.NetworkInformation/tests/FunctionalTests/System.Net.NetworkInformation.Functional.Tests.csproj index 88d9188bd375b..cff5ff64617f5 100644 --- a/src/libraries/System.Net.NetworkInformation/tests/FunctionalTests/System.Net.NetworkInformation.Functional.Tests.csproj +++ b/src/libraries/System.Net.NetworkInformation/tests/FunctionalTests/System.Net.NetworkInformation.Functional.Tests.csproj @@ -2,7 +2,7 @@ true ../../src/Resources/Strings.resx - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release diff --git a/src/libraries/System.Net.Ping/System.Net.Ping.sln b/src/libraries/System.Net.Ping/System.Net.Ping.sln index 6bab4e30e020b..ba1af7a43412e 100644 --- a/src/libraries/System.Net.Ping/System.Net.Ping.sln +++ b/src/libraries/System.Net.Ping/System.Net.Ping.sln @@ -26,18 +26,18 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {43CE20B7-389B-41BB-8390-447521DF3BD4}.Debug|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Debug|Any CPU - {43CE20B7-389B-41BB-8390-447521DF3BD4}.Debug|Any CPU.Build.0 = netcoreapp-Windows_NT-Debug|Any CPU - {43CE20B7-389B-41BB-8390-447521DF3BD4}.Release|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Release|Any CPU - {43CE20B7-389B-41BB-8390-447521DF3BD4}.Release|Any CPU.Build.0 = netcoreapp-Windows_NT-Release|Any CPU - {85FD05E8-A4B1-4B89-ABED-33AFD200CABD}.Debug|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Debug|Any CPU - {85FD05E8-A4B1-4B89-ABED-33AFD200CABD}.Debug|Any CPU.Build.0 = netcoreapp-Windows_NT-Debug|Any CPU - {85FD05E8-A4B1-4B89-ABED-33AFD200CABD}.Release|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Release|Any CPU - {85FD05E8-A4B1-4B89-ABED-33AFD200CABD}.Release|Any CPU.Build.0 = netcoreapp-Windows_NT-Release|Any CPU - {933C2AC2-1188-45D1-B0C1-08D6382DC0BE}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {933C2AC2-1188-45D1-B0C1-08D6382DC0BE}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {933C2AC2-1188-45D1-B0C1-08D6382DC0BE}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {933C2AC2-1188-45D1-B0C1-08D6382DC0BE}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU + {43CE20B7-389B-41BB-8390-447521DF3BD4}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Debug|Any CPU + {43CE20B7-389B-41BB-8390-447521DF3BD4}.Debug|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Debug|Any CPU + {43CE20B7-389B-41BB-8390-447521DF3BD4}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Release|Any CPU + {43CE20B7-389B-41BB-8390-447521DF3BD4}.Release|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Release|Any CPU + {85FD05E8-A4B1-4B89-ABED-33AFD200CABD}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Debug|Any CPU + {85FD05E8-A4B1-4B89-ABED-33AFD200CABD}.Debug|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Debug|Any CPU + {85FD05E8-A4B1-4B89-ABED-33AFD200CABD}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Release|Any CPU + {85FD05E8-A4B1-4B89-ABED-33AFD200CABD}.Release|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Release|Any CPU + {933C2AC2-1188-45D1-B0C1-08D6382DC0BE}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {933C2AC2-1188-45D1-B0C1-08D6382DC0BE}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {933C2AC2-1188-45D1-B0C1-08D6382DC0BE}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {933C2AC2-1188-45D1-B0C1-08D6382DC0BE}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/src/libraries/System.Net.Ping/ref/Configurations.props b/src/libraries/System.Net.Ping/ref/Configurations.props index 55d2de1d23f8d..7ac45c966c456 100644 --- a/src/libraries/System.Net.Ping/ref/Configurations.props +++ b/src/libraries/System.Net.Ping/ref/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Net.Ping/ref/System.Net.Ping.csproj b/src/libraries/System.Net.Ping/ref/System.Net.Ping.csproj index 503686688a4e9..8504e06720a9e 100644 --- a/src/libraries/System.Net.Ping/ref/System.Net.Ping.csproj +++ b/src/libraries/System.Net.Ping/ref/System.Net.Ping.csproj @@ -1,6 +1,6 @@ - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release diff --git a/src/libraries/System.Net.Ping/src/Configurations.props b/src/libraries/System.Net.Ping/src/Configurations.props index 1c0ceb0002ac4..f8d083e8f7a72 100644 --- a/src/libraries/System.Net.Ping/src/Configurations.props +++ b/src/libraries/System.Net.Ping/src/Configurations.props @@ -1,8 +1,8 @@  - netcoreapp-Unix; - netcoreapp-Windows_NT; + $(NetCoreAppCurrent)-Unix; + $(NetCoreAppCurrent)-Windows_NT; \ No newline at end of file diff --git a/src/libraries/System.Net.Ping/src/System.Net.Ping.csproj b/src/libraries/System.Net.Ping/src/System.Net.Ping.csproj index 5cc3ced7fd579..91f6652cb483d 100644 --- a/src/libraries/System.Net.Ping/src/System.Net.Ping.csproj +++ b/src/libraries/System.Net.Ping/src/System.Net.Ping.csproj @@ -3,7 +3,7 @@ System.Net.Ping true $(NoWarn);CS1573 - netcoreapp-Unix-Debug;netcoreapp-Unix-Release;netcoreapp-Windows_NT-Debug;netcoreapp-Windows_NT-Release + $(NetCoreAppCurrent)-Unix-Debug;$(NetCoreAppCurrent)-Unix-Release;$(NetCoreAppCurrent)-Windows_NT-Debug;$(NetCoreAppCurrent)-Windows_NT-Release diff --git a/src/libraries/System.Net.Ping/tests/FunctionalTests/Configurations.props b/src/libraries/System.Net.Ping/tests/FunctionalTests/Configurations.props index 1e8dd5d9394b8..30c654bebfdd7 100644 --- a/src/libraries/System.Net.Ping/tests/FunctionalTests/Configurations.props +++ b/src/libraries/System.Net.Ping/tests/FunctionalTests/Configurations.props @@ -1,8 +1,8 @@  - netcoreapp-Unix; - netcoreapp-Windows_NT; + $(NetCoreAppCurrent)-Unix; + $(NetCoreAppCurrent)-Windows_NT; \ No newline at end of file diff --git a/src/libraries/System.Net.Ping/tests/FunctionalTests/System.Net.Ping.Functional.Tests.csproj b/src/libraries/System.Net.Ping/tests/FunctionalTests/System.Net.Ping.Functional.Tests.csproj index 83edf55cd5511..ab07a0f0e0dd0 100644 --- a/src/libraries/System.Net.Ping/tests/FunctionalTests/System.Net.Ping.Functional.Tests.csproj +++ b/src/libraries/System.Net.Ping/tests/FunctionalTests/System.Net.Ping.Functional.Tests.csproj @@ -1,6 +1,6 @@ - netcoreapp-Unix-Debug;netcoreapp-Unix-Release;netcoreapp-Windows_NT-Debug;netcoreapp-Windows_NT-Release + $(NetCoreAppCurrent)-Unix-Debug;$(NetCoreAppCurrent)-Unix-Release;$(NetCoreAppCurrent)-Windows_NT-Debug;$(NetCoreAppCurrent)-Windows_NT-Release true diff --git a/src/libraries/System.Net.Primitives/System.Net.Primitives.sln b/src/libraries/System.Net.Primitives/System.Net.Primitives.sln index 9e8a4fe71f10b..771e1ccca1c36 100644 --- a/src/libraries/System.Net.Primitives/System.Net.Primitives.sln +++ b/src/libraries/System.Net.Primitives/System.Net.Primitives.sln @@ -36,26 +36,26 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {E671BC9F-A64C-4504-8B00-7A3215B99AF9}.Debug|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Debug|Any CPU - {E671BC9F-A64C-4504-8B00-7A3215B99AF9}.Debug|Any CPU.Build.0 = netcoreapp-Windows_NT-Debug|Any CPU - {E671BC9F-A64C-4504-8B00-7A3215B99AF9}.Release|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Release|Any CPU - {E671BC9F-A64C-4504-8B00-7A3215B99AF9}.Release|Any CPU.Build.0 = netcoreapp-Windows_NT-Release|Any CPU - {7860A11A-1841-4416-8A30-28EEEB42C6BB}.Debug|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Debug|Any CPU - {7860A11A-1841-4416-8A30-28EEEB42C6BB}.Debug|Any CPU.Build.0 = netcoreapp-Windows_NT-Debug|Any CPU - {7860A11A-1841-4416-8A30-28EEEB42C6BB}.Release|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Release|Any CPU - {7860A11A-1841-4416-8A30-28EEEB42C6BB}.Release|Any CPU.Build.0 = netcoreapp-Windows_NT-Release|Any CPU - {FCFF9C63-CE7A-476E-8241-7B7236FFDBFB}.Debug|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Debug|Any CPU - {FCFF9C63-CE7A-476E-8241-7B7236FFDBFB}.Debug|Any CPU.Build.0 = netcoreapp-Windows_NT-Debug|Any CPU - {FCFF9C63-CE7A-476E-8241-7B7236FFDBFB}.Release|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Release|Any CPU - {FCFF9C63-CE7A-476E-8241-7B7236FFDBFB}.Release|Any CPU.Build.0 = netcoreapp-Windows_NT-Release|Any CPU - {8772BC91-7B55-49B9-94FA-4B1BE5BEAB55}.Debug|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Debug|Any CPU - {8772BC91-7B55-49B9-94FA-4B1BE5BEAB55}.Debug|Any CPU.Build.0 = netcoreapp-Windows_NT-Debug|Any CPU - {8772BC91-7B55-49B9-94FA-4B1BE5BEAB55}.Release|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Release|Any CPU - {8772BC91-7B55-49B9-94FA-4B1BE5BEAB55}.Release|Any CPU.Build.0 = netcoreapp-Windows_NT-Release|Any CPU - {D7A4CF9D-78AA-4140-83E3-6BC43EF2DBB8}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {D7A4CF9D-78AA-4140-83E3-6BC43EF2DBB8}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {D7A4CF9D-78AA-4140-83E3-6BC43EF2DBB8}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {D7A4CF9D-78AA-4140-83E3-6BC43EF2DBB8}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU + {E671BC9F-A64C-4504-8B00-7A3215B99AF9}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Debug|Any CPU + {E671BC9F-A64C-4504-8B00-7A3215B99AF9}.Debug|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Debug|Any CPU + {E671BC9F-A64C-4504-8B00-7A3215B99AF9}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Release|Any CPU + {E671BC9F-A64C-4504-8B00-7A3215B99AF9}.Release|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Release|Any CPU + {7860A11A-1841-4416-8A30-28EEEB42C6BB}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Debug|Any CPU + {7860A11A-1841-4416-8A30-28EEEB42C6BB}.Debug|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Debug|Any CPU + {7860A11A-1841-4416-8A30-28EEEB42C6BB}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Release|Any CPU + {7860A11A-1841-4416-8A30-28EEEB42C6BB}.Release|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Release|Any CPU + {FCFF9C63-CE7A-476E-8241-7B7236FFDBFB}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Debug|Any CPU + {FCFF9C63-CE7A-476E-8241-7B7236FFDBFB}.Debug|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Debug|Any CPU + {FCFF9C63-CE7A-476E-8241-7B7236FFDBFB}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Release|Any CPU + {FCFF9C63-CE7A-476E-8241-7B7236FFDBFB}.Release|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Release|Any CPU + {8772BC91-7B55-49B9-94FA-4B1BE5BEAB55}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Debug|Any CPU + {8772BC91-7B55-49B9-94FA-4B1BE5BEAB55}.Debug|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Debug|Any CPU + {8772BC91-7B55-49B9-94FA-4B1BE5BEAB55}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Release|Any CPU + {8772BC91-7B55-49B9-94FA-4B1BE5BEAB55}.Release|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Release|Any CPU + {D7A4CF9D-78AA-4140-83E3-6BC43EF2DBB8}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {D7A4CF9D-78AA-4140-83E3-6BC43EF2DBB8}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {D7A4CF9D-78AA-4140-83E3-6BC43EF2DBB8}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {D7A4CF9D-78AA-4140-83E3-6BC43EF2DBB8}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/src/libraries/System.Net.Primitives/ref/Configurations.props b/src/libraries/System.Net.Primitives/ref/Configurations.props index 55d2de1d23f8d..7ac45c966c456 100644 --- a/src/libraries/System.Net.Primitives/ref/Configurations.props +++ b/src/libraries/System.Net.Primitives/ref/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Net.Primitives/ref/System.Net.Primitives.csproj b/src/libraries/System.Net.Primitives/ref/System.Net.Primitives.csproj index 2932f48f4e341..2974804431a7b 100644 --- a/src/libraries/System.Net.Primitives/ref/System.Net.Primitives.csproj +++ b/src/libraries/System.Net.Primitives/ref/System.Net.Primitives.csproj @@ -1,6 +1,6 @@ - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release diff --git a/src/libraries/System.Net.Primitives/src/Configurations.props b/src/libraries/System.Net.Primitives/src/Configurations.props index 1c0ceb0002ac4..f8d083e8f7a72 100644 --- a/src/libraries/System.Net.Primitives/src/Configurations.props +++ b/src/libraries/System.Net.Primitives/src/Configurations.props @@ -1,8 +1,8 @@  - netcoreapp-Unix; - netcoreapp-Windows_NT; + $(NetCoreAppCurrent)-Unix; + $(NetCoreAppCurrent)-Windows_NT; \ No newline at end of file diff --git a/src/libraries/System.Net.Primitives/src/MatchingRefApiCompatBaseline.netcoreapp.txt b/src/libraries/System.Net.Primitives/src/MatchingRefApiCompatBaseline.netcoreapp5.0.txt similarity index 100% rename from src/libraries/System.Net.Primitives/src/MatchingRefApiCompatBaseline.netcoreapp.txt rename to src/libraries/System.Net.Primitives/src/MatchingRefApiCompatBaseline.netcoreapp5.0.txt diff --git a/src/libraries/System.Net.Primitives/src/System.Net.Primitives.csproj b/src/libraries/System.Net.Primitives/src/System.Net.Primitives.csproj index af501a41dc42d..555d5d5c04ad4 100644 --- a/src/libraries/System.Net.Primitives/src/System.Net.Primitives.csproj +++ b/src/libraries/System.Net.Primitives/src/System.Net.Primitives.csproj @@ -4,7 +4,7 @@ Library true false - netcoreapp-Unix-Debug;netcoreapp-Unix-Release;netcoreapp-Windows_NT-Debug;netcoreapp-Windows_NT-Release + $(NetCoreAppCurrent)-Unix-Debug;$(NetCoreAppCurrent)-Unix-Release;$(NetCoreAppCurrent)-Windows_NT-Debug;$(NetCoreAppCurrent)-Windows_NT-Release diff --git a/src/libraries/System.Net.Quic/tests/FunctionalTests/Configurations.props b/src/libraries/System.Net.Quic/tests/FunctionalTests/Configurations.props index ad8296d246d1f..eca4299792e25 100644 --- a/src/libraries/System.Net.Quic/tests/FunctionalTests/Configurations.props +++ b/src/libraries/System.Net.Quic/tests/FunctionalTests/Configurations.props @@ -1,8 +1,8 @@  - netcoreapp-Windows_NT; - netcoreapp-Unix; + $(NetCoreAppCurrent)-Windows_NT; + $(NetCoreAppCurrent)-Unix; \ No newline at end of file diff --git a/src/libraries/System.Net.Quic/tests/FunctionalTests/System.Net.Quic.Tests.csproj b/src/libraries/System.Net.Quic/tests/FunctionalTests/System.Net.Quic.Tests.csproj index 3e54cc97fe65b..dc6f0c764d6cc 100644 --- a/src/libraries/System.Net.Quic/tests/FunctionalTests/System.Net.Quic.Tests.csproj +++ b/src/libraries/System.Net.Quic/tests/FunctionalTests/System.Net.Quic.Tests.csproj @@ -1,7 +1,7 @@  true - netcoreapp-Unix-Debug;netcoreapp-Unix-Release;netcoreapp-Windows_NT-Debug;netcoreapp-Windows_NT-Release + $(NetCoreAppCurrent)-Unix-Debug;$(NetCoreAppCurrent)-Unix-Release;$(NetCoreAppCurrent)-Windows_NT-Debug;$(NetCoreAppCurrent)-Windows_NT-Release diff --git a/src/libraries/System.Net.Requests/System.Net.Requests.sln b/src/libraries/System.Net.Requests/System.Net.Requests.sln index 1ace90aa62419..042d257dfef94 100644 --- a/src/libraries/System.Net.Requests/System.Net.Requests.sln +++ b/src/libraries/System.Net.Requests/System.Net.Requests.sln @@ -26,18 +26,18 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {E520B5FD-C6FF-46CF-8079-6C8098013EA3}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {E520B5FD-C6FF-46CF-8079-6C8098013EA3}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {E520B5FD-C6FF-46CF-8079-6C8098013EA3}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {E520B5FD-C6FF-46CF-8079-6C8098013EA3}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU - {5EE76DCC-9FD5-47FD-AB45-BD0F0857740F}.Debug|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Debug|Any CPU - {5EE76DCC-9FD5-47FD-AB45-BD0F0857740F}.Debug|Any CPU.Build.0 = netcoreapp-Windows_NT-Debug|Any CPU - {5EE76DCC-9FD5-47FD-AB45-BD0F0857740F}.Release|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Release|Any CPU - {5EE76DCC-9FD5-47FD-AB45-BD0F0857740F}.Release|Any CPU.Build.0 = netcoreapp-Windows_NT-Release|Any CPU - {F86C715C-E37B-4853-869E-D696AB3DB057}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {F86C715C-E37B-4853-869E-D696AB3DB057}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {F86C715C-E37B-4853-869E-D696AB3DB057}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {F86C715C-E37B-4853-869E-D696AB3DB057}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU + {E520B5FD-C6FF-46CF-8079-6C8098013EA3}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {E520B5FD-C6FF-46CF-8079-6C8098013EA3}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {E520B5FD-C6FF-46CF-8079-6C8098013EA3}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {E520B5FD-C6FF-46CF-8079-6C8098013EA3}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU + {5EE76DCC-9FD5-47FD-AB45-BD0F0857740F}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Debug|Any CPU + {5EE76DCC-9FD5-47FD-AB45-BD0F0857740F}.Debug|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Debug|Any CPU + {5EE76DCC-9FD5-47FD-AB45-BD0F0857740F}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Release|Any CPU + {5EE76DCC-9FD5-47FD-AB45-BD0F0857740F}.Release|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Release|Any CPU + {F86C715C-E37B-4853-869E-D696AB3DB057}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {F86C715C-E37B-4853-869E-D696AB3DB057}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {F86C715C-E37B-4853-869E-D696AB3DB057}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {F86C715C-E37B-4853-869E-D696AB3DB057}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/src/libraries/System.Net.Requests/ref/Configurations.props b/src/libraries/System.Net.Requests/ref/Configurations.props index 55d2de1d23f8d..7ac45c966c456 100644 --- a/src/libraries/System.Net.Requests/ref/Configurations.props +++ b/src/libraries/System.Net.Requests/ref/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Net.Requests/ref/System.Net.Requests.csproj b/src/libraries/System.Net.Requests/ref/System.Net.Requests.csproj index f36204c0398c3..7d51fe224eb85 100644 --- a/src/libraries/System.Net.Requests/ref/System.Net.Requests.csproj +++ b/src/libraries/System.Net.Requests/ref/System.Net.Requests.csproj @@ -1,6 +1,6 @@ - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release diff --git a/src/libraries/System.Net.Requests/src/Configurations.props b/src/libraries/System.Net.Requests/src/Configurations.props index 1c0ceb0002ac4..f8d083e8f7a72 100644 --- a/src/libraries/System.Net.Requests/src/Configurations.props +++ b/src/libraries/System.Net.Requests/src/Configurations.props @@ -1,8 +1,8 @@  - netcoreapp-Unix; - netcoreapp-Windows_NT; + $(NetCoreAppCurrent)-Unix; + $(NetCoreAppCurrent)-Windows_NT; \ No newline at end of file diff --git a/src/libraries/System.Net.Requests/src/System.Net.Requests.csproj b/src/libraries/System.Net.Requests/src/System.Net.Requests.csproj index 11825f52677b0..4e87c1628c97a 100644 --- a/src/libraries/System.Net.Requests/src/System.Net.Requests.csproj +++ b/src/libraries/System.Net.Requests/src/System.Net.Requests.csproj @@ -3,7 +3,7 @@ System.Net.Requests System.Net.Requests true - netcoreapp-Unix-Debug;netcoreapp-Unix-Release;netcoreapp-Windows_NT-Debug;netcoreapp-Windows_NT-Release + $(NetCoreAppCurrent)-Unix-Debug;$(NetCoreAppCurrent)-Unix-Release;$(NetCoreAppCurrent)-Windows_NT-Debug;$(NetCoreAppCurrent)-Windows_NT-Release diff --git a/src/libraries/System.Net.Requests/tests/Configurations.props b/src/libraries/System.Net.Requests/tests/Configurations.props index 55d2de1d23f8d..7ac45c966c456 100644 --- a/src/libraries/System.Net.Requests/tests/Configurations.props +++ b/src/libraries/System.Net.Requests/tests/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file 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 aa4da6a66615c..08009c99e6179 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 @@ -2,7 +2,7 @@ ../src/Resources/Strings.resx true - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release $(DefineConstants);NETSTANDARD diff --git a/src/libraries/System.Net.Security/System.Net.Security.sln b/src/libraries/System.Net.Security/System.Net.Security.sln index c332679765e14..c9eae8cb85d54 100644 --- a/src/libraries/System.Net.Security/System.Net.Security.sln +++ b/src/libraries/System.Net.Security/System.Net.Security.sln @@ -31,22 +31,22 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {A55A2B9A-830F-4330-A0E7-02A9FB30ABD2}.Debug|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Debug|Any CPU - {A55A2B9A-830F-4330-A0E7-02A9FB30ABD2}.Debug|Any CPU.Build.0 = netcoreapp-Windows_NT-Debug|Any CPU - {A55A2B9A-830F-4330-A0E7-02A9FB30ABD2}.Release|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Release|Any CPU - {A55A2B9A-830F-4330-A0E7-02A9FB30ABD2}.Release|Any CPU.Build.0 = netcoreapp-Windows_NT-Release|Any CPU - {0D174EA9-9E61-4519-8D31-7BD2331A1982}.Debug|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Debug|Any CPU - {0D174EA9-9E61-4519-8D31-7BD2331A1982}.Debug|Any CPU.Build.0 = netcoreapp-Windows_NT-Debug|Any CPU - {0D174EA9-9E61-4519-8D31-7BD2331A1982}.Release|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Release|Any CPU - {0D174EA9-9E61-4519-8D31-7BD2331A1982}.Release|Any CPU.Build.0 = netcoreapp-Windows_NT-Release|Any CPU - {89F37791-6254-4D60-AB96-ACD3CCA0E771}.Debug|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Debug|Any CPU - {89F37791-6254-4D60-AB96-ACD3CCA0E771}.Debug|Any CPU.Build.0 = netcoreapp-Windows_NT-Debug|Any CPU - {89F37791-6254-4D60-AB96-ACD3CCA0E771}.Release|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Release|Any CPU - {89F37791-6254-4D60-AB96-ACD3CCA0E771}.Release|Any CPU.Build.0 = netcoreapp-Windows_NT-Release|Any CPU - {A7488FC0-9A8F-4EF9-BC3E-C5EBA47E13F8}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {A7488FC0-9A8F-4EF9-BC3E-C5EBA47E13F8}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {A7488FC0-9A8F-4EF9-BC3E-C5EBA47E13F8}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {A7488FC0-9A8F-4EF9-BC3E-C5EBA47E13F8}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU + {A55A2B9A-830F-4330-A0E7-02A9FB30ABD2}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Debug|Any CPU + {A55A2B9A-830F-4330-A0E7-02A9FB30ABD2}.Debug|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Debug|Any CPU + {A55A2B9A-830F-4330-A0E7-02A9FB30ABD2}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Release|Any CPU + {A55A2B9A-830F-4330-A0E7-02A9FB30ABD2}.Release|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Release|Any CPU + {0D174EA9-9E61-4519-8D31-7BD2331A1982}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Debug|Any CPU + {0D174EA9-9E61-4519-8D31-7BD2331A1982}.Debug|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Debug|Any CPU + {0D174EA9-9E61-4519-8D31-7BD2331A1982}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Release|Any CPU + {0D174EA9-9E61-4519-8D31-7BD2331A1982}.Release|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Release|Any CPU + {89F37791-6254-4D60-AB96-ACD3CCA0E771}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Debug|Any CPU + {89F37791-6254-4D60-AB96-ACD3CCA0E771}.Debug|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Debug|Any CPU + {89F37791-6254-4D60-AB96-ACD3CCA0E771}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Release|Any CPU + {89F37791-6254-4D60-AB96-ACD3CCA0E771}.Release|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Release|Any CPU + {A7488FC0-9A8F-4EF9-BC3E-C5EBA47E13F8}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {A7488FC0-9A8F-4EF9-BC3E-C5EBA47E13F8}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {A7488FC0-9A8F-4EF9-BC3E-C5EBA47E13F8}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {A7488FC0-9A8F-4EF9-BC3E-C5EBA47E13F8}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/src/libraries/System.Net.Security/ref/Configurations.props b/src/libraries/System.Net.Security/ref/Configurations.props index 55d2de1d23f8d..7ac45c966c456 100644 --- a/src/libraries/System.Net.Security/ref/Configurations.props +++ b/src/libraries/System.Net.Security/ref/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Net.Security/ref/System.Net.Security.csproj b/src/libraries/System.Net.Security/ref/System.Net.Security.csproj index 6bcbc00cd2a01..60ec14329179c 100644 --- a/src/libraries/System.Net.Security/ref/System.Net.Security.csproj +++ b/src/libraries/System.Net.Security/ref/System.Net.Security.csproj @@ -1,6 +1,6 @@ - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release diff --git a/src/libraries/System.Net.Security/src/Configurations.props b/src/libraries/System.Net.Security/src/Configurations.props index 77782190baf1b..380403a6f1c44 100644 --- a/src/libraries/System.Net.Security/src/Configurations.props +++ b/src/libraries/System.Net.Security/src/Configurations.props @@ -1,9 +1,9 @@  - netcoreapp-OSX; - netcoreapp-Unix; - netcoreapp-Windows_NT; + $(NetCoreAppCurrent)-OSX; + $(NetCoreAppCurrent)-Unix; + $(NetCoreAppCurrent)-Windows_NT; diff --git a/src/libraries/System.Net.Security/src/System.Net.Security.csproj b/src/libraries/System.Net.Security/src/System.Net.Security.csproj index f883a565146be..4b47e638a4594 100644 --- a/src/libraries/System.Net.Security/src/System.Net.Security.csproj +++ b/src/libraries/System.Net.Security/src/System.Net.Security.csproj @@ -2,7 +2,7 @@ System.Net.Security true - netcoreapp-OSX-Debug;netcoreapp-OSX-Release;netcoreapp-Unix-Debug;netcoreapp-Unix-Release;netcoreapp-Windows_NT-Debug;netcoreapp-Windows_NT-Release + $(NetCoreAppCurrent)-OSX-Debug;$(NetCoreAppCurrent)-OSX-Release;$(NetCoreAppCurrent)-Unix-Debug;$(NetCoreAppCurrent)-Unix-Release;$(NetCoreAppCurrent)-Windows_NT-Debug;$(NetCoreAppCurrent)-Windows_NT-Release $(DefineConstants);PRODUCT diff --git a/src/libraries/System.Net.Security/tests/EnterpriseTests/Configurations.props b/src/libraries/System.Net.Security/tests/EnterpriseTests/Configurations.props index 3ad47b80e5f4c..9956ab2c60802 100644 --- a/src/libraries/System.Net.Security/tests/EnterpriseTests/Configurations.props +++ b/src/libraries/System.Net.Security/tests/EnterpriseTests/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp-Unix; + $(NetCoreAppCurrent)-Unix; diff --git a/src/libraries/System.Net.Security/tests/EnterpriseTests/System.Net.Security.Enterprise.Tests.csproj b/src/libraries/System.Net.Security/tests/EnterpriseTests/System.Net.Security.Enterprise.Tests.csproj index 506734ba7cbfa..275b2d8173ee3 100644 --- a/src/libraries/System.Net.Security/tests/EnterpriseTests/System.Net.Security.Enterprise.Tests.csproj +++ b/src/libraries/System.Net.Security/tests/EnterpriseTests/System.Net.Security.Enterprise.Tests.csproj @@ -1,6 +1,6 @@ - netcoreapp-Unix-Debug;netcoreapp-Unix-Release + $(NetCoreAppCurrent)-Unix-Debug;$(NetCoreAppCurrent)-Unix-Release diff --git a/src/libraries/System.Net.Security/tests/FunctionalTests/Configurations.props b/src/libraries/System.Net.Security/tests/FunctionalTests/Configurations.props index d2c7d64703f16..c074f91a4a09c 100644 --- a/src/libraries/System.Net.Security/tests/FunctionalTests/Configurations.props +++ b/src/libraries/System.Net.Security/tests/FunctionalTests/Configurations.props @@ -1,9 +1,9 @@  - netcoreapp-Windows_NT; - netcoreapp-Unix; - netcoreapp-OSX; + $(NetCoreAppCurrent)-Windows_NT; + $(NetCoreAppCurrent)-Unix; + $(NetCoreAppCurrent)-OSX; \ No newline at end of file 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 5bb33e43cc882..afddd56a90bee 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 @@ -2,7 +2,7 @@ true true - netcoreapp-OSX-Debug;netcoreapp-OSX-Release;netcoreapp-Unix-Debug;netcoreapp-Unix-Release;netcoreapp-Windows_NT-Debug;netcoreapp-Windows_NT-Release + $(NetCoreAppCurrent)-OSX-Debug;$(NetCoreAppCurrent)-OSX-Release;$(NetCoreAppCurrent)-Unix-Debug;$(NetCoreAppCurrent)-Unix-Release;$(NetCoreAppCurrent)-Windows_NT-Debug;$(NetCoreAppCurrent)-Windows_NT-Release diff --git a/src/libraries/System.Net.Security/tests/UnitTests/Configurations.props b/src/libraries/System.Net.Security/tests/UnitTests/Configurations.props index 704a0aea736b0..55d3a5dde8f33 100644 --- a/src/libraries/System.Net.Security/tests/UnitTests/Configurations.props +++ b/src/libraries/System.Net.Security/tests/UnitTests/Configurations.props @@ -1,9 +1,9 @@  - netcoreapp-OSX; - netcoreapp-Unix; - netcoreapp-Windows_NT; + $(NetCoreAppCurrent)-OSX; + $(NetCoreAppCurrent)-Unix; + $(NetCoreAppCurrent)-Windows_NT; \ No newline at end of file diff --git a/src/libraries/System.Net.Security/tests/UnitTests/System.Net.Security.Unit.Tests.csproj b/src/libraries/System.Net.Security/tests/UnitTests/System.Net.Security.Unit.Tests.csproj index c7bbd245fb545..09d343ba1edf0 100644 --- a/src/libraries/System.Net.Security/tests/UnitTests/System.Net.Security.Unit.Tests.csproj +++ b/src/libraries/System.Net.Security/tests/UnitTests/System.Net.Security.Unit.Tests.csproj @@ -10,7 +10,7 @@ 436 $(NoWarn);3021 - netcoreapp-OSX-Debug;netcoreapp-OSX-Release;netcoreapp-Unix-Debug;netcoreapp-Unix-Release;netcoreapp-Windows_NT-Debug;netcoreapp-Windows_NT-Release + $(NetCoreAppCurrent)-OSX-Debug;$(NetCoreAppCurrent)-OSX-Release;$(NetCoreAppCurrent)-Unix-Debug;$(NetCoreAppCurrent)-Unix-Release;$(NetCoreAppCurrent)-Windows_NT-Debug;$(NetCoreAppCurrent)-Windows_NT-Release diff --git a/src/libraries/System.Net.ServicePoint/System.Net.ServicePoint.sln b/src/libraries/System.Net.ServicePoint/System.Net.ServicePoint.sln index 06f23940d1b72..038cd43b04403 100644 --- a/src/libraries/System.Net.ServicePoint/System.Net.ServicePoint.sln +++ b/src/libraries/System.Net.ServicePoint/System.Net.ServicePoint.sln @@ -26,18 +26,18 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {DC3BBD1F-37C8-40B2-B248-E12E8D0D146B}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {DC3BBD1F-37C8-40B2-B248-E12E8D0D146B}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {DC3BBD1F-37C8-40B2-B248-E12E8D0D146B}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {DC3BBD1F-37C8-40B2-B248-E12E8D0D146B}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU - {AD68DD5E-DEBF-48A0-B619-FBF65F502BC3}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {AD68DD5E-DEBF-48A0-B619-FBF65F502BC3}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {AD68DD5E-DEBF-48A0-B619-FBF65F502BC3}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {AD68DD5E-DEBF-48A0-B619-FBF65F502BC3}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU - {273A0AE8-6298-4382-9572-E39ACEB458A0}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {273A0AE8-6298-4382-9572-E39ACEB458A0}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {273A0AE8-6298-4382-9572-E39ACEB458A0}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {273A0AE8-6298-4382-9572-E39ACEB458A0}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU + {DC3BBD1F-37C8-40B2-B248-E12E8D0D146B}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {DC3BBD1F-37C8-40B2-B248-E12E8D0D146B}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {DC3BBD1F-37C8-40B2-B248-E12E8D0D146B}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {DC3BBD1F-37C8-40B2-B248-E12E8D0D146B}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU + {AD68DD5E-DEBF-48A0-B619-FBF65F502BC3}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {AD68DD5E-DEBF-48A0-B619-FBF65F502BC3}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {AD68DD5E-DEBF-48A0-B619-FBF65F502BC3}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {AD68DD5E-DEBF-48A0-B619-FBF65F502BC3}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU + {273A0AE8-6298-4382-9572-E39ACEB458A0}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {273A0AE8-6298-4382-9572-E39ACEB458A0}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {273A0AE8-6298-4382-9572-E39ACEB458A0}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {273A0AE8-6298-4382-9572-E39ACEB458A0}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/src/libraries/System.Net.ServicePoint/ref/Configurations.props b/src/libraries/System.Net.ServicePoint/ref/Configurations.props index 55d2de1d23f8d..7ac45c966c456 100644 --- a/src/libraries/System.Net.ServicePoint/ref/Configurations.props +++ b/src/libraries/System.Net.ServicePoint/ref/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Net.ServicePoint/ref/System.Net.ServicePoint.csproj b/src/libraries/System.Net.ServicePoint/ref/System.Net.ServicePoint.csproj index 3dc7b9c8b49cd..a44ab0565cc46 100644 --- a/src/libraries/System.Net.ServicePoint/ref/System.Net.ServicePoint.csproj +++ b/src/libraries/System.Net.ServicePoint/ref/System.Net.ServicePoint.csproj @@ -1,6 +1,6 @@ - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release diff --git a/src/libraries/System.Net.ServicePoint/src/Configurations.props b/src/libraries/System.Net.ServicePoint/src/Configurations.props index 19236e72c58fb..b79c1d7c3d9a0 100644 --- a/src/libraries/System.Net.ServicePoint/src/Configurations.props +++ b/src/libraries/System.Net.ServicePoint/src/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); diff --git a/src/libraries/System.Net.ServicePoint/src/System.Net.ServicePoint.csproj b/src/libraries/System.Net.ServicePoint/src/System.Net.ServicePoint.csproj index d6879957158dd..73f53e6cc9780 100644 --- a/src/libraries/System.Net.ServicePoint/src/System.Net.ServicePoint.csproj +++ b/src/libraries/System.Net.ServicePoint/src/System.Net.ServicePoint.csproj @@ -2,7 +2,7 @@ true $(NoWarn);CA5364 - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release diff --git a/src/libraries/System.Net.ServicePoint/tests/Configurations.props b/src/libraries/System.Net.ServicePoint/tests/Configurations.props index 55d2de1d23f8d..7ac45c966c456 100644 --- a/src/libraries/System.Net.ServicePoint/tests/Configurations.props +++ b/src/libraries/System.Net.ServicePoint/tests/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Net.ServicePoint/tests/System.Net.ServicePoint.Tests.csproj b/src/libraries/System.Net.ServicePoint/tests/System.Net.ServicePoint.Tests.csproj index 1cf0152a221e8..08a39d55d3bbc 100644 --- a/src/libraries/System.Net.ServicePoint/tests/System.Net.ServicePoint.Tests.csproj +++ b/src/libraries/System.Net.ServicePoint/tests/System.Net.ServicePoint.Tests.csproj @@ -1,7 +1,7 @@ true - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release diff --git a/src/libraries/System.Net.Sockets/System.Net.Sockets.sln b/src/libraries/System.Net.Sockets/System.Net.Sockets.sln index c840bcbc91fa0..24601b61909f1 100644 --- a/src/libraries/System.Net.Sockets/System.Net.Sockets.sln +++ b/src/libraries/System.Net.Sockets/System.Net.Sockets.sln @@ -31,22 +31,22 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {8CBA022C-635F-4C8D-9D29-CD8AAC68C8E6}.Debug|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Debug|Any CPU - {8CBA022C-635F-4C8D-9D29-CD8AAC68C8E6}.Debug|Any CPU.Build.0 = netcoreapp-Windows_NT-Debug|Any CPU - {8CBA022C-635F-4C8D-9D29-CD8AAC68C8E6}.Release|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Release|Any CPU - {8CBA022C-635F-4C8D-9D29-CD8AAC68C8E6}.Release|Any CPU.Build.0 = netcoreapp-Windows_NT-Release|Any CPU - {BB5C85AD-C51A-4903-80E9-6F6E1AC1AD34}.Debug|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Debug|Any CPU - {BB5C85AD-C51A-4903-80E9-6F6E1AC1AD34}.Debug|Any CPU.Build.0 = netcoreapp-Windows_NT-Debug|Any CPU - {BB5C85AD-C51A-4903-80E9-6F6E1AC1AD34}.Release|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Release|Any CPU - {BB5C85AD-C51A-4903-80E9-6F6E1AC1AD34}.Release|Any CPU.Build.0 = netcoreapp-Windows_NT-Release|Any CPU - {43311AFB-D7C4-4E5A-B1DE-855407F90D1B}.Debug|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Debug|Any CPU - {43311AFB-D7C4-4E5A-B1DE-855407F90D1B}.Debug|Any CPU.Build.0 = netcoreapp-Windows_NT-Debug|Any CPU - {43311AFB-D7C4-4E5A-B1DE-855407F90D1B}.Release|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Release|Any CPU - {43311AFB-D7C4-4E5A-B1DE-855407F90D1B}.Release|Any CPU.Build.0 = netcoreapp-Windows_NT-Release|Any CPU - {834E3534-6A11-4A8D-923F-35C1E71CCEC3}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {834E3534-6A11-4A8D-923F-35C1E71CCEC3}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {834E3534-6A11-4A8D-923F-35C1E71CCEC3}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {834E3534-6A11-4A8D-923F-35C1E71CCEC3}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU + {8CBA022C-635F-4C8D-9D29-CD8AAC68C8E6}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Debug|Any CPU + {8CBA022C-635F-4C8D-9D29-CD8AAC68C8E6}.Debug|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Debug|Any CPU + {8CBA022C-635F-4C8D-9D29-CD8AAC68C8E6}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Release|Any CPU + {8CBA022C-635F-4C8D-9D29-CD8AAC68C8E6}.Release|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Release|Any CPU + {BB5C85AD-C51A-4903-80E9-6F6E1AC1AD34}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Debug|Any CPU + {BB5C85AD-C51A-4903-80E9-6F6E1AC1AD34}.Debug|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Debug|Any CPU + {BB5C85AD-C51A-4903-80E9-6F6E1AC1AD34}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Release|Any CPU + {BB5C85AD-C51A-4903-80E9-6F6E1AC1AD34}.Release|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Release|Any CPU + {43311AFB-D7C4-4E5A-B1DE-855407F90D1B}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Debug|Any CPU + {43311AFB-D7C4-4E5A-B1DE-855407F90D1B}.Debug|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Debug|Any CPU + {43311AFB-D7C4-4E5A-B1DE-855407F90D1B}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Release|Any CPU + {43311AFB-D7C4-4E5A-B1DE-855407F90D1B}.Release|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Release|Any CPU + {834E3534-6A11-4A8D-923F-35C1E71CCEC3}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {834E3534-6A11-4A8D-923F-35C1E71CCEC3}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {834E3534-6A11-4A8D-923F-35C1E71CCEC3}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {834E3534-6A11-4A8D-923F-35C1E71CCEC3}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/src/libraries/System.Net.Sockets/ref/Configurations.props b/src/libraries/System.Net.Sockets/ref/Configurations.props index 55d2de1d23f8d..7ac45c966c456 100644 --- a/src/libraries/System.Net.Sockets/ref/Configurations.props +++ b/src/libraries/System.Net.Sockets/ref/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Net.Sockets/ref/System.Net.Sockets.csproj b/src/libraries/System.Net.Sockets/ref/System.Net.Sockets.csproj index 3904382ddd52a..4298e4f8bd014 100644 --- a/src/libraries/System.Net.Sockets/ref/System.Net.Sockets.csproj +++ b/src/libraries/System.Net.Sockets/ref/System.Net.Sockets.csproj @@ -1,6 +1,6 @@ - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release diff --git a/src/libraries/System.Net.Sockets/src/Configurations.props b/src/libraries/System.Net.Sockets/src/Configurations.props index 1c0ceb0002ac4..f8d083e8f7a72 100644 --- a/src/libraries/System.Net.Sockets/src/Configurations.props +++ b/src/libraries/System.Net.Sockets/src/Configurations.props @@ -1,8 +1,8 @@  - netcoreapp-Unix; - netcoreapp-Windows_NT; + $(NetCoreAppCurrent)-Unix; + $(NetCoreAppCurrent)-Windows_NT; \ No newline at end of file diff --git a/src/libraries/System.Net.Sockets/src/System.Net.Sockets.csproj b/src/libraries/System.Net.Sockets/src/System.Net.Sockets.csproj index 5c59d5caa68d9..f6383a1f7aeeb 100644 --- a/src/libraries/System.Net.Sockets/src/System.Net.Sockets.csproj +++ b/src/libraries/System.Net.Sockets/src/System.Net.Sockets.csproj @@ -2,7 +2,7 @@ System.Net.Sockets true - netcoreapp-Unix-Debug;netcoreapp-Unix-Release;netcoreapp-Windows_NT-Debug;netcoreapp-Windows_NT-Release + $(NetCoreAppCurrent)-Unix-Debug;$(NetCoreAppCurrent)-Unix-Release;$(NetCoreAppCurrent)-Windows_NT-Debug;$(NetCoreAppCurrent)-Windows_NT-Release true diff --git a/src/libraries/System.Net.WebClient/System.Net.WebClient.sln b/src/libraries/System.Net.WebClient/System.Net.WebClient.sln index 8f8693c484d8b..1c19ff38e48e4 100644 --- a/src/libraries/System.Net.WebClient/System.Net.WebClient.sln +++ b/src/libraries/System.Net.WebClient/System.Net.WebClient.sln @@ -26,18 +26,18 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {D2348221-084D-4076-91BF-C24D28E7D386}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {D2348221-084D-4076-91BF-C24D28E7D386}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {D2348221-084D-4076-91BF-C24D28E7D386}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {D2348221-084D-4076-91BF-C24D28E7D386}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU - {EA25218A-0470-44CC-BDF0-3E74D5848BD8}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {EA25218A-0470-44CC-BDF0-3E74D5848BD8}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {EA25218A-0470-44CC-BDF0-3E74D5848BD8}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {EA25218A-0470-44CC-BDF0-3E74D5848BD8}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU - {03D6021D-CB0B-43BD-83A5-7FDEDB39AE45}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {03D6021D-CB0B-43BD-83A5-7FDEDB39AE45}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {03D6021D-CB0B-43BD-83A5-7FDEDB39AE45}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {03D6021D-CB0B-43BD-83A5-7FDEDB39AE45}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU + {D2348221-084D-4076-91BF-C24D28E7D386}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {D2348221-084D-4076-91BF-C24D28E7D386}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {D2348221-084D-4076-91BF-C24D28E7D386}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {D2348221-084D-4076-91BF-C24D28E7D386}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU + {EA25218A-0470-44CC-BDF0-3E74D5848BD8}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {EA25218A-0470-44CC-BDF0-3E74D5848BD8}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {EA25218A-0470-44CC-BDF0-3E74D5848BD8}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {EA25218A-0470-44CC-BDF0-3E74D5848BD8}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU + {03D6021D-CB0B-43BD-83A5-7FDEDB39AE45}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {03D6021D-CB0B-43BD-83A5-7FDEDB39AE45}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {03D6021D-CB0B-43BD-83A5-7FDEDB39AE45}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {03D6021D-CB0B-43BD-83A5-7FDEDB39AE45}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/src/libraries/System.Net.WebClient/ref/Configurations.props b/src/libraries/System.Net.WebClient/ref/Configurations.props index 55d2de1d23f8d..7ac45c966c456 100644 --- a/src/libraries/System.Net.WebClient/ref/Configurations.props +++ b/src/libraries/System.Net.WebClient/ref/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Net.WebClient/ref/System.Net.WebClient.csproj b/src/libraries/System.Net.WebClient/ref/System.Net.WebClient.csproj index 992ca86d05cc7..9f62cecd5f130 100644 --- a/src/libraries/System.Net.WebClient/ref/System.Net.WebClient.csproj +++ b/src/libraries/System.Net.WebClient/ref/System.Net.WebClient.csproj @@ -1,6 +1,6 @@ - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release diff --git a/src/libraries/System.Net.WebClient/src/Configurations.props b/src/libraries/System.Net.WebClient/src/Configurations.props index 19236e72c58fb..b79c1d7c3d9a0 100644 --- a/src/libraries/System.Net.WebClient/src/Configurations.props +++ b/src/libraries/System.Net.WebClient/src/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); diff --git a/src/libraries/System.Net.WebClient/src/System.Net.WebClient.csproj b/src/libraries/System.Net.WebClient/src/System.Net.WebClient.csproj index 03f249008f09b..020d3ecfdb13c 100644 --- a/src/libraries/System.Net.WebClient/src/System.Net.WebClient.csproj +++ b/src/libraries/System.Net.WebClient/src/System.Net.WebClient.csproj @@ -1,7 +1,7 @@ true - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release diff --git a/src/libraries/System.Net.WebClient/tests/Configurations.props b/src/libraries/System.Net.WebClient/tests/Configurations.props index 55d2de1d23f8d..7ac45c966c456 100644 --- a/src/libraries/System.Net.WebClient/tests/Configurations.props +++ b/src/libraries/System.Net.WebClient/tests/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Net.WebClient/tests/System.Net.WebClient.Tests.csproj b/src/libraries/System.Net.WebClient/tests/System.Net.WebClient.Tests.csproj index 00bbdf11e10eb..f92b0de8c0e9e 100644 --- a/src/libraries/System.Net.WebClient/tests/System.Net.WebClient.Tests.csproj +++ b/src/libraries/System.Net.WebClient/tests/System.Net.WebClient.Tests.csproj @@ -1,6 +1,6 @@ - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release $(DefineConstants);NETSTANDARD diff --git a/src/libraries/System.Net.WebHeaderCollection/System.Net.WebHeaderCollection.sln b/src/libraries/System.Net.WebHeaderCollection/System.Net.WebHeaderCollection.sln index 124ae6dcca0d9..803a1d6183315 100644 --- a/src/libraries/System.Net.WebHeaderCollection/System.Net.WebHeaderCollection.sln +++ b/src/libraries/System.Net.WebHeaderCollection/System.Net.WebHeaderCollection.sln @@ -26,18 +26,18 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {F8C21EE8-B271-4014-B9D9-B2C31520AF3F}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {F8C21EE8-B271-4014-B9D9-B2C31520AF3F}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {F8C21EE8-B271-4014-B9D9-B2C31520AF3F}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {F8C21EE8-B271-4014-B9D9-B2C31520AF3F}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU - {C7DB0DF2-9CF2-42FB-89A7-450550B52C48}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {C7DB0DF2-9CF2-42FB-89A7-450550B52C48}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {C7DB0DF2-9CF2-42FB-89A7-450550B52C48}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {C7DB0DF2-9CF2-42FB-89A7-450550B52C48}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU - {99180E9D-F72D-4EF5-8F0E-79C6B29C3FA2}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {99180E9D-F72D-4EF5-8F0E-79C6B29C3FA2}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {99180E9D-F72D-4EF5-8F0E-79C6B29C3FA2}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {99180E9D-F72D-4EF5-8F0E-79C6B29C3FA2}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU + {F8C21EE8-B271-4014-B9D9-B2C31520AF3F}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {F8C21EE8-B271-4014-B9D9-B2C31520AF3F}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {F8C21EE8-B271-4014-B9D9-B2C31520AF3F}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {F8C21EE8-B271-4014-B9D9-B2C31520AF3F}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU + {C7DB0DF2-9CF2-42FB-89A7-450550B52C48}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {C7DB0DF2-9CF2-42FB-89A7-450550B52C48}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {C7DB0DF2-9CF2-42FB-89A7-450550B52C48}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {C7DB0DF2-9CF2-42FB-89A7-450550B52C48}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU + {99180E9D-F72D-4EF5-8F0E-79C6B29C3FA2}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {99180E9D-F72D-4EF5-8F0E-79C6B29C3FA2}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {99180E9D-F72D-4EF5-8F0E-79C6B29C3FA2}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {99180E9D-F72D-4EF5-8F0E-79C6B29C3FA2}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/src/libraries/System.Net.WebHeaderCollection/ref/Configurations.props b/src/libraries/System.Net.WebHeaderCollection/ref/Configurations.props index 55d2de1d23f8d..7ac45c966c456 100644 --- a/src/libraries/System.Net.WebHeaderCollection/ref/Configurations.props +++ b/src/libraries/System.Net.WebHeaderCollection/ref/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Net.WebHeaderCollection/ref/System.Net.WebHeaderCollection.csproj b/src/libraries/System.Net.WebHeaderCollection/ref/System.Net.WebHeaderCollection.csproj index ab6c09a4b4d81..e67e2052e4782 100644 --- a/src/libraries/System.Net.WebHeaderCollection/ref/System.Net.WebHeaderCollection.csproj +++ b/src/libraries/System.Net.WebHeaderCollection/ref/System.Net.WebHeaderCollection.csproj @@ -1,6 +1,6 @@  - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release enable $(NoWarn);8610 diff --git a/src/libraries/System.Net.WebHeaderCollection/src/Configurations.props b/src/libraries/System.Net.WebHeaderCollection/src/Configurations.props index 55d2de1d23f8d..7ac45c966c456 100644 --- a/src/libraries/System.Net.WebHeaderCollection/src/Configurations.props +++ b/src/libraries/System.Net.WebHeaderCollection/src/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Net.WebHeaderCollection/src/System.Net.WebHeaderCollection.csproj b/src/libraries/System.Net.WebHeaderCollection/src/System.Net.WebHeaderCollection.csproj index b4afb74a3a8cf..dbec9c6a511f7 100644 --- a/src/libraries/System.Net.WebHeaderCollection/src/System.Net.WebHeaderCollection.csproj +++ b/src/libraries/System.Net.WebHeaderCollection/src/System.Net.WebHeaderCollection.csproj @@ -2,7 +2,7 @@ System.Net.WebHeaderCollection true - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release enable diff --git a/src/libraries/System.Net.WebHeaderCollection/tests/Configurations.props b/src/libraries/System.Net.WebHeaderCollection/tests/Configurations.props index 55d2de1d23f8d..7ac45c966c456 100644 --- a/src/libraries/System.Net.WebHeaderCollection/tests/Configurations.props +++ b/src/libraries/System.Net.WebHeaderCollection/tests/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Net.WebHeaderCollection/tests/System.Net.WebHeaderCollection.Tests.csproj b/src/libraries/System.Net.WebHeaderCollection/tests/System.Net.WebHeaderCollection.Tests.csproj index 835f9d896d69c..85c375154ae7d 100644 --- a/src/libraries/System.Net.WebHeaderCollection/tests/System.Net.WebHeaderCollection.Tests.csproj +++ b/src/libraries/System.Net.WebHeaderCollection/tests/System.Net.WebHeaderCollection.Tests.csproj @@ -1,6 +1,6 @@ - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release diff --git a/src/libraries/System.Net.WebProxy/System.Net.WebProxy.sln b/src/libraries/System.Net.WebProxy/System.Net.WebProxy.sln index b2116f95bf361..ed1048db32ab0 100644 --- a/src/libraries/System.Net.WebProxy/System.Net.WebProxy.sln +++ b/src/libraries/System.Net.WebProxy/System.Net.WebProxy.sln @@ -26,18 +26,18 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {0DB204CE-1CB8-4CC2-A2E3-43DA93DC898B}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {0DB204CE-1CB8-4CC2-A2E3-43DA93DC898B}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {0DB204CE-1CB8-4CC2-A2E3-43DA93DC898B}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {0DB204CE-1CB8-4CC2-A2E3-43DA93DC898B}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU - {6C18AD20-E20F-4652-83E3-D24E4670530D}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {6C18AD20-E20F-4652-83E3-D24E4670530D}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {6C18AD20-E20F-4652-83E3-D24E4670530D}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {6C18AD20-E20F-4652-83E3-D24E4670530D}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU - {B7B008FB-2C9F-4111-887C-E3FEC284FE3C}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {B7B008FB-2C9F-4111-887C-E3FEC284FE3C}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {B7B008FB-2C9F-4111-887C-E3FEC284FE3C}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {B7B008FB-2C9F-4111-887C-E3FEC284FE3C}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU + {0DB204CE-1CB8-4CC2-A2E3-43DA93DC898B}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {0DB204CE-1CB8-4CC2-A2E3-43DA93DC898B}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {0DB204CE-1CB8-4CC2-A2E3-43DA93DC898B}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {0DB204CE-1CB8-4CC2-A2E3-43DA93DC898B}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU + {6C18AD20-E20F-4652-83E3-D24E4670530D}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {6C18AD20-E20F-4652-83E3-D24E4670530D}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {6C18AD20-E20F-4652-83E3-D24E4670530D}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {6C18AD20-E20F-4652-83E3-D24E4670530D}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU + {B7B008FB-2C9F-4111-887C-E3FEC284FE3C}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {B7B008FB-2C9F-4111-887C-E3FEC284FE3C}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {B7B008FB-2C9F-4111-887C-E3FEC284FE3C}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {B7B008FB-2C9F-4111-887C-E3FEC284FE3C}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/src/libraries/System.Net.WebProxy/ref/Configurations.props b/src/libraries/System.Net.WebProxy/ref/Configurations.props index 55d2de1d23f8d..7ac45c966c456 100644 --- a/src/libraries/System.Net.WebProxy/ref/Configurations.props +++ b/src/libraries/System.Net.WebProxy/ref/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Net.WebProxy/ref/System.Net.WebProxy.csproj b/src/libraries/System.Net.WebProxy/ref/System.Net.WebProxy.csproj index 01a6a231b764a..b6b7ea4810359 100644 --- a/src/libraries/System.Net.WebProxy/ref/System.Net.WebProxy.csproj +++ b/src/libraries/System.Net.WebProxy/ref/System.Net.WebProxy.csproj @@ -1,6 +1,6 @@ - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release diff --git a/src/libraries/System.Net.WebProxy/src/Configurations.props b/src/libraries/System.Net.WebProxy/src/Configurations.props index 19236e72c58fb..b79c1d7c3d9a0 100644 --- a/src/libraries/System.Net.WebProxy/src/Configurations.props +++ b/src/libraries/System.Net.WebProxy/src/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); diff --git a/src/libraries/System.Net.WebProxy/src/System.Net.WebProxy.csproj b/src/libraries/System.Net.WebProxy/src/System.Net.WebProxy.csproj index ee84582c0e18d..936dfb40ca66b 100644 --- a/src/libraries/System.Net.WebProxy/src/System.Net.WebProxy.csproj +++ b/src/libraries/System.Net.WebProxy/src/System.Net.WebProxy.csproj @@ -1,7 +1,7 @@ true - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release diff --git a/src/libraries/System.Net.WebProxy/tests/Configurations.props b/src/libraries/System.Net.WebProxy/tests/Configurations.props index 55d2de1d23f8d..7ac45c966c456 100644 --- a/src/libraries/System.Net.WebProxy/tests/Configurations.props +++ b/src/libraries/System.Net.WebProxy/tests/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Net.WebProxy/tests/System.Net.WebProxy.Tests.csproj b/src/libraries/System.Net.WebProxy/tests/System.Net.WebProxy.Tests.csproj index d2f8aa45130fe..1b7f188dde166 100644 --- a/src/libraries/System.Net.WebProxy/tests/System.Net.WebProxy.Tests.csproj +++ b/src/libraries/System.Net.WebProxy/tests/System.Net.WebProxy.Tests.csproj @@ -1,6 +1,6 @@ - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release diff --git a/src/libraries/System.Net.WebSockets.Client/System.Net.WebSockets.Client.sln b/src/libraries/System.Net.WebSockets.Client/System.Net.WebSockets.Client.sln index da7ffdf54eda8..8a603ec103961 100644 --- a/src/libraries/System.Net.WebSockets.Client/System.Net.WebSockets.Client.sln +++ b/src/libraries/System.Net.WebSockets.Client/System.Net.WebSockets.Client.sln @@ -26,18 +26,18 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {7C395A91-D955-444C-98BF-D3F809A56CE1}.Debug|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Debug|Any CPU - {7C395A91-D955-444C-98BF-D3F809A56CE1}.Debug|Any CPU.Build.0 = netcoreapp-Windows_NT-Debug|Any CPU - {7C395A91-D955-444C-98BF-D3F809A56CE1}.Release|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Release|Any CPU - {7C395A91-D955-444C-98BF-D3F809A56CE1}.Release|Any CPU.Build.0 = netcoreapp-Windows_NT-Release|Any CPU - {B8AD98AE-84C3-4313-B3F1-EE8BD5BFF69B}.Debug|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Debug|Any CPU - {B8AD98AE-84C3-4313-B3F1-EE8BD5BFF69B}.Debug|Any CPU.Build.0 = netcoreapp-Windows_NT-Debug|Any CPU - {B8AD98AE-84C3-4313-B3F1-EE8BD5BFF69B}.Release|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Release|Any CPU - {B8AD98AE-84C3-4313-B3F1-EE8BD5BFF69B}.Release|Any CPU.Build.0 = netcoreapp-Windows_NT-Release|Any CPU - {F282B57E-2E1E-422B-8AC2-88145E37B809}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {F282B57E-2E1E-422B-8AC2-88145E37B809}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {F282B57E-2E1E-422B-8AC2-88145E37B809}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {F282B57E-2E1E-422B-8AC2-88145E37B809}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU + {7C395A91-D955-444C-98BF-D3F809A56CE1}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Debug|Any CPU + {7C395A91-D955-444C-98BF-D3F809A56CE1}.Debug|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Debug|Any CPU + {7C395A91-D955-444C-98BF-D3F809A56CE1}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Release|Any CPU + {7C395A91-D955-444C-98BF-D3F809A56CE1}.Release|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Release|Any CPU + {B8AD98AE-84C3-4313-B3F1-EE8BD5BFF69B}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Debug|Any CPU + {B8AD98AE-84C3-4313-B3F1-EE8BD5BFF69B}.Debug|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Debug|Any CPU + {B8AD98AE-84C3-4313-B3F1-EE8BD5BFF69B}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Release|Any CPU + {B8AD98AE-84C3-4313-B3F1-EE8BD5BFF69B}.Release|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Release|Any CPU + {F282B57E-2E1E-422B-8AC2-88145E37B809}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {F282B57E-2E1E-422B-8AC2-88145E37B809}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {F282B57E-2E1E-422B-8AC2-88145E37B809}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {F282B57E-2E1E-422B-8AC2-88145E37B809}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/src/libraries/System.Net.WebSockets.Client/ref/Configurations.props b/src/libraries/System.Net.WebSockets.Client/ref/Configurations.props index 55d2de1d23f8d..7ac45c966c456 100644 --- a/src/libraries/System.Net.WebSockets.Client/ref/Configurations.props +++ b/src/libraries/System.Net.WebSockets.Client/ref/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Net.WebSockets.Client/ref/System.Net.WebSockets.Client.csproj b/src/libraries/System.Net.WebSockets.Client/ref/System.Net.WebSockets.Client.csproj index fa82c413ca799..f1a7d20c373b5 100644 --- a/src/libraries/System.Net.WebSockets.Client/ref/System.Net.WebSockets.Client.csproj +++ b/src/libraries/System.Net.WebSockets.Client/ref/System.Net.WebSockets.Client.csproj @@ -1,6 +1,6 @@ - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release diff --git a/src/libraries/System.Net.WebSockets.Client/src/Configurations.props b/src/libraries/System.Net.WebSockets.Client/src/Configurations.props index 1c0ceb0002ac4..f8d083e8f7a72 100644 --- a/src/libraries/System.Net.WebSockets.Client/src/Configurations.props +++ b/src/libraries/System.Net.WebSockets.Client/src/Configurations.props @@ -1,8 +1,8 @@  - netcoreapp-Unix; - netcoreapp-Windows_NT; + $(NetCoreAppCurrent)-Unix; + $(NetCoreAppCurrent)-Windows_NT; \ No newline at end of file diff --git a/src/libraries/System.Net.WebSockets.Client/src/System.Net.WebSockets.Client.csproj b/src/libraries/System.Net.WebSockets.Client/src/System.Net.WebSockets.Client.csproj index 6d5f85f6edf24..7a9e293ff23e3 100644 --- a/src/libraries/System.Net.WebSockets.Client/src/System.Net.WebSockets.Client.csproj +++ b/src/libraries/System.Net.WebSockets.Client/src/System.Net.WebSockets.Client.csproj @@ -2,7 +2,7 @@ True $(NoWarn);CS1573 - netcoreapp-Unix-Debug;netcoreapp-Unix-Release;netcoreapp-Windows_NT-Debug;netcoreapp-Windows_NT-Release + $(NetCoreAppCurrent)-Unix-Debug;$(NetCoreAppCurrent)-Unix-Release;$(NetCoreAppCurrent)-Windows_NT-Debug;$(NetCoreAppCurrent)-Windows_NT-Release diff --git a/src/libraries/System.Net.WebSockets.Client/tests/Configurations.props b/src/libraries/System.Net.WebSockets.Client/tests/Configurations.props index dd006cdc1e7d0..75eaac02dc208 100644 --- a/src/libraries/System.Net.WebSockets.Client/tests/Configurations.props +++ b/src/libraries/System.Net.WebSockets.Client/tests/Configurations.props @@ -1,8 +1,8 @@  - netcoreapp-Windows_NT; - netcoreapp-Unix; + $(NetCoreAppCurrent)-Windows_NT; + $(NetCoreAppCurrent)-Unix; \ No newline at end of file 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 d32a462f71b6e..078dbc1af02cc 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 @@ -1,7 +1,7 @@  ../src/Resources/Strings.resx - netcoreapp-Unix-Debug;netcoreapp-Unix-Release;netcoreapp-Windows_NT-Debug;netcoreapp-Windows_NT-Release + $(NetCoreAppCurrent)-Unix-Debug;$(NetCoreAppCurrent)-Unix-Release;$(NetCoreAppCurrent)-Windows_NT-Debug;$(NetCoreAppCurrent)-Windows_NT-Release $(DefineConstants);NETSTANDARD diff --git a/src/libraries/System.Net.WebSockets.WebSocketProtocol/System.Net.WebSockets.WebSocketProtocol.sln b/src/libraries/System.Net.WebSockets.WebSocketProtocol/System.Net.WebSockets.WebSocketProtocol.sln index 3aac1b1047d86..ff36adb8f4351 100644 --- a/src/libraries/System.Net.WebSockets.WebSocketProtocol/System.Net.WebSockets.WebSocketProtocol.sln +++ b/src/libraries/System.Net.WebSockets.WebSocketProtocol/System.Net.WebSockets.WebSocketProtocol.sln @@ -26,14 +26,14 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {CF73547B-07D2-4290-A14A-CA2A354F4D21}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {CF73547B-07D2-4290-A14A-CA2A354F4D21}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {CF73547B-07D2-4290-A14A-CA2A354F4D21}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {CF73547B-07D2-4290-A14A-CA2A354F4D21}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU - {747BE014-7C1D-4460-95AF-B41C35717165}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {747BE014-7C1D-4460-95AF-B41C35717165}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {747BE014-7C1D-4460-95AF-B41C35717165}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {747BE014-7C1D-4460-95AF-B41C35717165}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU + {CF73547B-07D2-4290-A14A-CA2A354F4D21}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {CF73547B-07D2-4290-A14A-CA2A354F4D21}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {CF73547B-07D2-4290-A14A-CA2A354F4D21}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {CF73547B-07D2-4290-A14A-CA2A354F4D21}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU + {747BE014-7C1D-4460-95AF-B41C35717165}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {747BE014-7C1D-4460-95AF-B41C35717165}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {747BE014-7C1D-4460-95AF-B41C35717165}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {747BE014-7C1D-4460-95AF-B41C35717165}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU {203345A4-0E3B-43C1-ADEB-FF493E578063}.Debug|Any CPU.ActiveCfg = netstandard2.0-Debug|Any CPU {203345A4-0E3B-43C1-ADEB-FF493E578063}.Debug|Any CPU.Build.0 = netstandard2.0-Debug|Any CPU {203345A4-0E3B-43C1-ADEB-FF493E578063}.Release|Any CPU.ActiveCfg = netstandard2.0-Release|Any CPU diff --git a/src/libraries/System.Net.WebSockets.WebSocketProtocol/src/Configurations.props b/src/libraries/System.Net.WebSockets.WebSocketProtocol/src/Configurations.props index 49a9f1f4211ab..dbfbb7d1b2de2 100644 --- a/src/libraries/System.Net.WebSockets.WebSocketProtocol/src/Configurations.props +++ b/src/libraries/System.Net.WebSockets.WebSocketProtocol/src/Configurations.props @@ -6,7 +6,7 @@ $(PackageConfigurations); - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Net.WebSockets.WebSocketProtocol/src/System.Net.WebSockets.WebSocketProtocol.csproj b/src/libraries/System.Net.WebSockets.WebSocketProtocol/src/System.Net.WebSockets.WebSocketProtocol.csproj index 0c26f89f113fb..7d4e9ab3ad470 100644 --- a/src/libraries/System.Net.WebSockets.WebSocketProtocol/src/System.Net.WebSockets.WebSocketProtocol.csproj +++ b/src/libraries/System.Net.WebSockets.WebSocketProtocol/src/System.Net.WebSockets.WebSocketProtocol.csproj @@ -3,7 +3,7 @@ System.Net.WebSockets.WebSocketProtocol True $(NoWarn);CS1573 - netcoreapp-Debug;netcoreapp-Release;netcoreapp2.1-Debug;netcoreapp2.1-Release;netstandard2.0-Debug;netstandard2.0-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release;netcoreapp2.1-Debug;netcoreapp2.1-Release;netstandard2.0-Debug;netstandard2.0-Release @@ -16,7 +16,7 @@ - + diff --git a/src/libraries/System.Net.WebSockets.WebSocketProtocol/tests/Configurations.props b/src/libraries/System.Net.WebSockets.WebSocketProtocol/tests/Configurations.props index 1a037adc3e7c1..f550cb30c4afd 100644 --- a/src/libraries/System.Net.WebSockets.WebSocketProtocol/tests/Configurations.props +++ b/src/libraries/System.Net.WebSockets.WebSocketProtocol/tests/Configurations.props @@ -1,8 +1,8 @@  - netcoreapp; - netfx; + $(NetCoreAppCurrent); + $(NetFrameworkCurrent); \ No newline at end of file diff --git a/src/libraries/System.Net.WebSockets.WebSocketProtocol/tests/System.Net.WebSockets.WebSocketProtocol.Tests.csproj b/src/libraries/System.Net.WebSockets.WebSocketProtocol/tests/System.Net.WebSockets.WebSocketProtocol.Tests.csproj index 7376287bf55f9..1352ebfa64e06 100644 --- a/src/libraries/System.Net.WebSockets.WebSocketProtocol/tests/System.Net.WebSockets.WebSocketProtocol.Tests.csproj +++ b/src/libraries/System.Net.WebSockets.WebSocketProtocol/tests/System.Net.WebSockets.WebSocketProtocol.Tests.csproj @@ -1,6 +1,6 @@ - netcoreapp-Debug;netcoreapp-Release;netfx-Debug;netfx-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release;$(NetFrameworkCurrent)-Debug;$(NetFrameworkCurrent)-Release diff --git a/src/libraries/System.Net.WebSockets/System.Net.WebSockets.sln b/src/libraries/System.Net.WebSockets/System.Net.WebSockets.sln index b7cd4bda70a0e..87ffb3bc04d5f 100644 --- a/src/libraries/System.Net.WebSockets/System.Net.WebSockets.sln +++ b/src/libraries/System.Net.WebSockets/System.Net.WebSockets.sln @@ -26,18 +26,18 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {0887C5AD-1BE1-4898-94CD-FE2104E04A4A}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {0887C5AD-1BE1-4898-94CD-FE2104E04A4A}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {0887C5AD-1BE1-4898-94CD-FE2104E04A4A}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {0887C5AD-1BE1-4898-94CD-FE2104E04A4A}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU - {B0C83201-EC32-4E8D-9DE4-EEF41E052DA1}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {B0C83201-EC32-4E8D-9DE4-EEF41E052DA1}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {B0C83201-EC32-4E8D-9DE4-EEF41E052DA1}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {B0C83201-EC32-4E8D-9DE4-EEF41E052DA1}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU - {A2F08695-A550-4AA2-806D-E5E7D86D8F25}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {A2F08695-A550-4AA2-806D-E5E7D86D8F25}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {A2F08695-A550-4AA2-806D-E5E7D86D8F25}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {A2F08695-A550-4AA2-806D-E5E7D86D8F25}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU + {0887C5AD-1BE1-4898-94CD-FE2104E04A4A}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {0887C5AD-1BE1-4898-94CD-FE2104E04A4A}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {0887C5AD-1BE1-4898-94CD-FE2104E04A4A}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {0887C5AD-1BE1-4898-94CD-FE2104E04A4A}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU + {B0C83201-EC32-4E8D-9DE4-EEF41E052DA1}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {B0C83201-EC32-4E8D-9DE4-EEF41E052DA1}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {B0C83201-EC32-4E8D-9DE4-EEF41E052DA1}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {B0C83201-EC32-4E8D-9DE4-EEF41E052DA1}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU + {A2F08695-A550-4AA2-806D-E5E7D86D8F25}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {A2F08695-A550-4AA2-806D-E5E7D86D8F25}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {A2F08695-A550-4AA2-806D-E5E7D86D8F25}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {A2F08695-A550-4AA2-806D-E5E7D86D8F25}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/src/libraries/System.Net.WebSockets/ref/Configurations.props b/src/libraries/System.Net.WebSockets/ref/Configurations.props index 55d2de1d23f8d..7ac45c966c456 100644 --- a/src/libraries/System.Net.WebSockets/ref/Configurations.props +++ b/src/libraries/System.Net.WebSockets/ref/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Net.WebSockets/ref/System.Net.WebSockets.csproj b/src/libraries/System.Net.WebSockets/ref/System.Net.WebSockets.csproj index 209bb962ad971..b611277e2829c 100644 --- a/src/libraries/System.Net.WebSockets/ref/System.Net.WebSockets.csproj +++ b/src/libraries/System.Net.WebSockets/ref/System.Net.WebSockets.csproj @@ -1,6 +1,6 @@ - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release diff --git a/src/libraries/System.Net.WebSockets/src/Configurations.props b/src/libraries/System.Net.WebSockets/src/Configurations.props index 55d2de1d23f8d..7ac45c966c456 100644 --- a/src/libraries/System.Net.WebSockets/src/Configurations.props +++ b/src/libraries/System.Net.WebSockets/src/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Net.WebSockets/src/System.Net.WebSockets.csproj b/src/libraries/System.Net.WebSockets/src/System.Net.WebSockets.csproj index 70629c2a8cbe1..1b52202482161 100644 --- a/src/libraries/System.Net.WebSockets/src/System.Net.WebSockets.csproj +++ b/src/libraries/System.Net.WebSockets/src/System.Net.WebSockets.csproj @@ -3,7 +3,7 @@ System.Net.WebSockets True $(NoWarn);CS1573 - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release diff --git a/src/libraries/System.Net.WebSockets/tests/Configurations.props b/src/libraries/System.Net.WebSockets/tests/Configurations.props index 55d2de1d23f8d..7ac45c966c456 100644 --- a/src/libraries/System.Net.WebSockets/tests/Configurations.props +++ b/src/libraries/System.Net.WebSockets/tests/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Net.WebSockets/tests/System.Net.WebSockets.Tests.csproj b/src/libraries/System.Net.WebSockets/tests/System.Net.WebSockets.Tests.csproj index 0ca48819d9405..9c8d2b53806cf 100644 --- a/src/libraries/System.Net.WebSockets/tests/System.Net.WebSockets.Tests.csproj +++ b/src/libraries/System.Net.WebSockets/tests/System.Net.WebSockets.Tests.csproj @@ -1,6 +1,6 @@ - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release diff --git a/src/libraries/System.Numerics.Tensors/System.Numerics.Tensors.sln b/src/libraries/System.Numerics.Tensors/System.Numerics.Tensors.sln index 2ae0d0187d351..1c6e3ab6eedbb 100644 --- a/src/libraries/System.Numerics.Tensors/System.Numerics.Tensors.sln +++ b/src/libraries/System.Numerics.Tensors/System.Numerics.Tensors.sln @@ -26,10 +26,10 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {D4718CD3-8492-4734-94B7-E31A39AA6275}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {D4718CD3-8492-4734-94B7-E31A39AA6275}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {D4718CD3-8492-4734-94B7-E31A39AA6275}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {D4718CD3-8492-4734-94B7-E31A39AA6275}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU + {D4718CD3-8492-4734-94B7-E31A39AA6275}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {D4718CD3-8492-4734-94B7-E31A39AA6275}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {D4718CD3-8492-4734-94B7-E31A39AA6275}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {D4718CD3-8492-4734-94B7-E31A39AA6275}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU {BE0F13BE-9140-49A8-9FDD-994D0D8A3805}.Debug|Any CPU.ActiveCfg = netstandard2.0-Debug|Any CPU {BE0F13BE-9140-49A8-9FDD-994D0D8A3805}.Debug|Any CPU.Build.0 = netstandard2.0-Debug|Any CPU {BE0F13BE-9140-49A8-9FDD-994D0D8A3805}.Release|Any CPU.ActiveCfg = netstandard2.0-Release|Any CPU diff --git a/src/libraries/System.Numerics.Tensors/tests/Configurations.props b/src/libraries/System.Numerics.Tensors/tests/Configurations.props index 19236e72c58fb..b79c1d7c3d9a0 100644 --- a/src/libraries/System.Numerics.Tensors/tests/Configurations.props +++ b/src/libraries/System.Numerics.Tensors/tests/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); diff --git a/src/libraries/System.Numerics.Tensors/tests/System.Numerics.Tensors.Tests.csproj b/src/libraries/System.Numerics.Tensors/tests/System.Numerics.Tensors.Tests.csproj index a8a89be2d230b..48f953d75882e 100644 --- a/src/libraries/System.Numerics.Tensors/tests/System.Numerics.Tensors.Tests.csproj +++ b/src/libraries/System.Numerics.Tensors/tests/System.Numerics.Tensors.Tests.csproj @@ -1,7 +1,7 @@  True - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release diff --git a/src/libraries/System.Numerics.Vectors/System.Numerics.Vectors.sln b/src/libraries/System.Numerics.Vectors/System.Numerics.Vectors.sln index 364023c90e572..a419eb99b839d 100644 --- a/src/libraries/System.Numerics.Vectors/System.Numerics.Vectors.sln +++ b/src/libraries/System.Numerics.Vectors/System.Numerics.Vectors.sln @@ -26,18 +26,18 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {99E1E564-0EF4-4E33-BECE-8ABE64771349}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {99E1E564-0EF4-4E33-BECE-8ABE64771349}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {99E1E564-0EF4-4E33-BECE-8ABE64771349}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {99E1E564-0EF4-4E33-BECE-8ABE64771349}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU - {53134B0C-0D57-481B-B84E-D1991E8D54FF}.Debug|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Debug|Any CPU - {53134B0C-0D57-481B-B84E-D1991E8D54FF}.Debug|Any CPU.Build.0 = netcoreapp-Windows_NT-Debug|Any CPU - {53134B0C-0D57-481B-B84E-D1991E8D54FF}.Release|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Release|Any CPU - {53134B0C-0D57-481B-B84E-D1991E8D54FF}.Release|Any CPU.Build.0 = netcoreapp-Windows_NT-Release|Any CPU - {650277B5-9423-4ACE-BB54-2659995B21C7}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {650277B5-9423-4ACE-BB54-2659995B21C7}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {650277B5-9423-4ACE-BB54-2659995B21C7}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {650277B5-9423-4ACE-BB54-2659995B21C7}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU + {99E1E564-0EF4-4E33-BECE-8ABE64771349}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {99E1E564-0EF4-4E33-BECE-8ABE64771349}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {99E1E564-0EF4-4E33-BECE-8ABE64771349}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {99E1E564-0EF4-4E33-BECE-8ABE64771349}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU + {53134B0C-0D57-481B-B84E-D1991E8D54FF}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Debug|Any CPU + {53134B0C-0D57-481B-B84E-D1991E8D54FF}.Debug|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Debug|Any CPU + {53134B0C-0D57-481B-B84E-D1991E8D54FF}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Release|Any CPU + {53134B0C-0D57-481B-B84E-D1991E8D54FF}.Release|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Release|Any CPU + {650277B5-9423-4ACE-BB54-2659995B21C7}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {650277B5-9423-4ACE-BB54-2659995B21C7}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {650277B5-9423-4ACE-BB54-2659995B21C7}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {650277B5-9423-4ACE-BB54-2659995B21C7}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/src/libraries/System.Numerics.Vectors/ref/Configurations.props b/src/libraries/System.Numerics.Vectors/ref/Configurations.props index 19236e72c58fb..b79c1d7c3d9a0 100644 --- a/src/libraries/System.Numerics.Vectors/ref/Configurations.props +++ b/src/libraries/System.Numerics.Vectors/ref/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); diff --git a/src/libraries/System.Numerics.Vectors/ref/System.Numerics.Vectors.csproj b/src/libraries/System.Numerics.Vectors/ref/System.Numerics.Vectors.csproj index ee125f4d14411..6b717a31b0ee8 100644 --- a/src/libraries/System.Numerics.Vectors/ref/System.Numerics.Vectors.csproj +++ b/src/libraries/System.Numerics.Vectors/ref/System.Numerics.Vectors.csproj @@ -1,6 +1,6 @@ - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release enable diff --git a/src/libraries/System.Numerics.Vectors/src/Configurations.props b/src/libraries/System.Numerics.Vectors/src/Configurations.props index db389259c06b1..f3922475141ae 100644 --- a/src/libraries/System.Numerics.Vectors/src/Configurations.props +++ b/src/libraries/System.Numerics.Vectors/src/Configurations.props @@ -1,8 +1,8 @@  - netcoreapp-Windows_NT; - netcoreapp-Unix; + $(NetCoreAppCurrent)-Windows_NT; + $(NetCoreAppCurrent)-Unix; diff --git a/src/libraries/System.Numerics.Vectors/src/System.Numerics.Vectors.csproj b/src/libraries/System.Numerics.Vectors/src/System.Numerics.Vectors.csproj index 799f70e5860bf..c9c65cd8a60c5 100644 --- a/src/libraries/System.Numerics.Vectors/src/System.Numerics.Vectors.csproj +++ b/src/libraries/System.Numerics.Vectors/src/System.Numerics.Vectors.csproj @@ -1,7 +1,7 @@ true - netcoreapp-Unix-Debug;netcoreapp-Unix-Release;netcoreapp-Windows_NT-Debug;netcoreapp-Windows_NT-Release + $(NetCoreAppCurrent)-Unix-Debug;$(NetCoreAppCurrent)-Unix-Release;$(NetCoreAppCurrent)-Windows_NT-Debug;$(NetCoreAppCurrent)-Windows_NT-Release diff --git a/src/libraries/System.Numerics.Vectors/tests/Configurations.props b/src/libraries/System.Numerics.Vectors/tests/Configurations.props index 19236e72c58fb..b79c1d7c3d9a0 100644 --- a/src/libraries/System.Numerics.Vectors/tests/Configurations.props +++ b/src/libraries/System.Numerics.Vectors/tests/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); diff --git a/src/libraries/System.Numerics.Vectors/tests/System.Numerics.Vectors.Tests.csproj b/src/libraries/System.Numerics.Vectors/tests/System.Numerics.Vectors.Tests.csproj index 8ec2ddc974d6f..e7433e8b2af26 100644 --- a/src/libraries/System.Numerics.Vectors/tests/System.Numerics.Vectors.Tests.csproj +++ b/src/libraries/System.Numerics.Vectors/tests/System.Numerics.Vectors.Tests.csproj @@ -1,7 +1,7 @@ true - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release true diff --git a/src/libraries/System.ObjectModel/System.ObjectModel.sln b/src/libraries/System.ObjectModel/System.ObjectModel.sln index e1b14ad762ee9..4e1fffe826e7f 100644 --- a/src/libraries/System.ObjectModel/System.ObjectModel.sln +++ b/src/libraries/System.ObjectModel/System.ObjectModel.sln @@ -26,18 +26,18 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {43841228-2A2B-4215-B97F-33006995E486}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {43841228-2A2B-4215-B97F-33006995E486}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {43841228-2A2B-4215-B97F-33006995E486}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {43841228-2A2B-4215-B97F-33006995E486}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU - {F24D3391-2928-4E83-AADE-A4461E5CAE50}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {F24D3391-2928-4E83-AADE-A4461E5CAE50}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {F24D3391-2928-4E83-AADE-A4461E5CAE50}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {F24D3391-2928-4E83-AADE-A4461E5CAE50}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU - {72CD7613-337A-41C1-BE90-391973C25201}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {72CD7613-337A-41C1-BE90-391973C25201}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {72CD7613-337A-41C1-BE90-391973C25201}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {72CD7613-337A-41C1-BE90-391973C25201}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU + {43841228-2A2B-4215-B97F-33006995E486}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {43841228-2A2B-4215-B97F-33006995E486}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {43841228-2A2B-4215-B97F-33006995E486}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {43841228-2A2B-4215-B97F-33006995E486}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU + {F24D3391-2928-4E83-AADE-A4461E5CAE50}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {F24D3391-2928-4E83-AADE-A4461E5CAE50}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {F24D3391-2928-4E83-AADE-A4461E5CAE50}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {F24D3391-2928-4E83-AADE-A4461E5CAE50}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU + {72CD7613-337A-41C1-BE90-391973C25201}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {72CD7613-337A-41C1-BE90-391973C25201}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {72CD7613-337A-41C1-BE90-391973C25201}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {72CD7613-337A-41C1-BE90-391973C25201}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/src/libraries/System.ObjectModel/ref/Configurations.props b/src/libraries/System.ObjectModel/ref/Configurations.props index 55d2de1d23f8d..7ac45c966c456 100644 --- a/src/libraries/System.ObjectModel/ref/Configurations.props +++ b/src/libraries/System.ObjectModel/ref/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.ObjectModel/ref/System.ObjectModel.csproj b/src/libraries/System.ObjectModel/ref/System.ObjectModel.csproj index bafa956bddb2f..ce6d7a44060cd 100644 --- a/src/libraries/System.ObjectModel/ref/System.ObjectModel.csproj +++ b/src/libraries/System.ObjectModel/ref/System.ObjectModel.csproj @@ -1,6 +1,6 @@ - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release enable diff --git a/src/libraries/System.ObjectModel/src/Configurations.props b/src/libraries/System.ObjectModel/src/Configurations.props index 55d2de1d23f8d..7ac45c966c456 100644 --- a/src/libraries/System.ObjectModel/src/Configurations.props +++ b/src/libraries/System.ObjectModel/src/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.ObjectModel/src/System.ObjectModel.csproj b/src/libraries/System.ObjectModel/src/System.ObjectModel.csproj index d04f9eb4de574..0eb6d910c191f 100644 --- a/src/libraries/System.ObjectModel/src/System.ObjectModel.csproj +++ b/src/libraries/System.ObjectModel/src/System.ObjectModel.csproj @@ -2,7 +2,7 @@ System.ObjectModel true - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release enable diff --git a/src/libraries/System.ObjectModel/tests/Configurations.props b/src/libraries/System.ObjectModel/tests/Configurations.props index 55d2de1d23f8d..7ac45c966c456 100644 --- a/src/libraries/System.ObjectModel/tests/Configurations.props +++ b/src/libraries/System.ObjectModel/tests/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.ObjectModel/tests/System.ObjectModel.Tests.csproj b/src/libraries/System.ObjectModel/tests/System.ObjectModel.Tests.csproj index e11d165bf84b0..5935960db418e 100644 --- a/src/libraries/System.ObjectModel/tests/System.ObjectModel.Tests.csproj +++ b/src/libraries/System.ObjectModel/tests/System.ObjectModel.Tests.csproj @@ -1,6 +1,6 @@ - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release diff --git a/src/libraries/System.Private.DataContractSerialization/System.Private.DataContractSerialization.sln b/src/libraries/System.Private.DataContractSerialization/System.Private.DataContractSerialization.sln index 824729cf2883a..d62e824a954e1 100644 --- a/src/libraries/System.Private.DataContractSerialization/System.Private.DataContractSerialization.sln +++ b/src/libraries/System.Private.DataContractSerialization/System.Private.DataContractSerialization.sln @@ -12,10 +12,10 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {6B4C1660-D158-4820-BE1C-D7A29CEBEC9B}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {6B4C1660-D158-4820-BE1C-D7A29CEBEC9B}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {6B4C1660-D158-4820-BE1C-D7A29CEBEC9B}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {6B4C1660-D158-4820-BE1C-D7A29CEBEC9B}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU + {6B4C1660-D158-4820-BE1C-D7A29CEBEC9B}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {6B4C1660-D158-4820-BE1C-D7A29CEBEC9B}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {6B4C1660-D158-4820-BE1C-D7A29CEBEC9B}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {6B4C1660-D158-4820-BE1C-D7A29CEBEC9B}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/src/libraries/System.Private.DataContractSerialization/src/Configurations.props b/src/libraries/System.Private.DataContractSerialization/src/Configurations.props index 19236e72c58fb..b79c1d7c3d9a0 100644 --- a/src/libraries/System.Private.DataContractSerialization/src/Configurations.props +++ b/src/libraries/System.Private.DataContractSerialization/src/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); diff --git a/src/libraries/System.Private.DataContractSerialization/src/System.Private.DataContractSerialization.csproj b/src/libraries/System.Private.DataContractSerialization/src/System.Private.DataContractSerialization.csproj index 3185cc051435d..d4c921c3fc65d 100644 --- a/src/libraries/System.Private.DataContractSerialization/src/System.Private.DataContractSerialization.csproj +++ b/src/libraries/System.Private.DataContractSerialization/src/System.Private.DataContractSerialization.csproj @@ -8,7 +8,7 @@ true AnyCPU $(DefineConstants);FEATURE_SERIALIZATION - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release false diff --git a/src/libraries/System.Private.Uri/System.Private.Uri.sln b/src/libraries/System.Private.Uri/System.Private.Uri.sln index ed55d3227d489..390be114c05c2 100644 --- a/src/libraries/System.Private.Uri/System.Private.Uri.sln +++ b/src/libraries/System.Private.Uri/System.Private.Uri.sln @@ -29,22 +29,22 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {0febe054-68ac-446f-b999-9068736d3cec}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {0febe054-68ac-446f-b999-9068736d3cec}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {0febe054-68ac-446f-b999-9068736d3cec}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {0febe054-68ac-446f-b999-9068736d3cec}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU - {B0FFC4A8-BAC3-4A7F-8FD5-5B680209371C}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {B0FFC4A8-BAC3-4A7F-8FD5-5B680209371C}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {B0FFC4A8-BAC3-4A7F-8FD5-5B680209371C}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {B0FFC4A8-BAC3-4A7F-8FD5-5B680209371C}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU - {96AF3242-A368-4F13-B006-A722CC3B8517}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {96AF3242-A368-4F13-B006-A722CC3B8517}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {96AF3242-A368-4F13-B006-A722CC3B8517}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {96AF3242-A368-4F13-B006-A722CC3B8517}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU - {4AC5343E-6E31-4BA5-A795-0493AE7E9008}.Debug|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Debug|Any CPU - {4AC5343E-6E31-4BA5-A795-0493AE7E9008}.Debug|Any CPU.Build.0 = netcoreapp-Windows_NT-Debug|Any CPU - {4AC5343E-6E31-4BA5-A795-0493AE7E9008}.Release|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Release|Any CPU - {4AC5343E-6E31-4BA5-A795-0493AE7E9008}.Release|Any CPU.Build.0 = netcoreapp-Windows_NT-Release|Any CPU + {0febe054-68ac-446f-b999-9068736d3cec}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {0febe054-68ac-446f-b999-9068736d3cec}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {0febe054-68ac-446f-b999-9068736d3cec}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {0febe054-68ac-446f-b999-9068736d3cec}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU + {B0FFC4A8-BAC3-4A7F-8FD5-5B680209371C}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {B0FFC4A8-BAC3-4A7F-8FD5-5B680209371C}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {B0FFC4A8-BAC3-4A7F-8FD5-5B680209371C}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {B0FFC4A8-BAC3-4A7F-8FD5-5B680209371C}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU + {96AF3242-A368-4F13-B006-A722CC3B8517}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {96AF3242-A368-4F13-B006-A722CC3B8517}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {96AF3242-A368-4F13-B006-A722CC3B8517}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {96AF3242-A368-4F13-B006-A722CC3B8517}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU + {4AC5343E-6E31-4BA5-A795-0493AE7E9008}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Debug|Any CPU + {4AC5343E-6E31-4BA5-A795-0493AE7E9008}.Debug|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Debug|Any CPU + {4AC5343E-6E31-4BA5-A795-0493AE7E9008}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Release|Any CPU + {4AC5343E-6E31-4BA5-A795-0493AE7E9008}.Release|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/src/libraries/System.Private.Uri/src/Configurations.props b/src/libraries/System.Private.Uri/src/Configurations.props index 7e12b46ca40c5..c31cf2a4495cf 100644 --- a/src/libraries/System.Private.Uri/src/Configurations.props +++ b/src/libraries/System.Private.Uri/src/Configurations.props @@ -1,8 +1,8 @@  - netcoreapp-Unix; - netcoreapp-Windows_NT; + $(NetCoreAppCurrent)-Unix; + $(NetCoreAppCurrent)-Windows_NT; diff --git a/src/libraries/System.Private.Uri/src/System.Private.Uri.csproj b/src/libraries/System.Private.Uri/src/System.Private.Uri.csproj index 43f98928e7b36..a7e3afb423d3b 100644 --- a/src/libraries/System.Private.Uri/src/System.Private.Uri.csproj +++ b/src/libraries/System.Private.Uri/src/System.Private.Uri.csproj @@ -3,7 +3,7 @@ System.Private.Uri true enable - netcoreapp-Unix-Debug;netcoreapp-Unix-Release;netcoreapp-Windows_NT-Debug;netcoreapp-Windows_NT-Release + $(NetCoreAppCurrent)-Unix-Debug;$(NetCoreAppCurrent)-Unix-Release;$(NetCoreAppCurrent)-Windows_NT-Debug;$(NetCoreAppCurrent)-Windows_NT-Release diff --git a/src/libraries/System.Private.Uri/tests/ExtendedFunctionalTests/Configurations.props b/src/libraries/System.Private.Uri/tests/ExtendedFunctionalTests/Configurations.props index a1eadd7648d83..d3947cd2aa838 100644 --- a/src/libraries/System.Private.Uri/tests/ExtendedFunctionalTests/Configurations.props +++ b/src/libraries/System.Private.Uri/tests/ExtendedFunctionalTests/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); diff --git a/src/libraries/System.Private.Uri/tests/ExtendedFunctionalTests/System.Private.Uri.ExtendedFunctional.Tests.csproj b/src/libraries/System.Private.Uri/tests/ExtendedFunctionalTests/System.Private.Uri.ExtendedFunctional.Tests.csproj index 5d3ab19741bff..cc2a70143376a 100644 --- a/src/libraries/System.Private.Uri/tests/ExtendedFunctionalTests/System.Private.Uri.ExtendedFunctional.Tests.csproj +++ b/src/libraries/System.Private.Uri/tests/ExtendedFunctionalTests/System.Private.Uri.ExtendedFunctional.Tests.csproj @@ -1,6 +1,6 @@ - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release diff --git a/src/libraries/System.Private.Uri/tests/FunctionalTests/Configurations.props b/src/libraries/System.Private.Uri/tests/FunctionalTests/Configurations.props index a1eadd7648d83..d3947cd2aa838 100644 --- a/src/libraries/System.Private.Uri/tests/FunctionalTests/Configurations.props +++ b/src/libraries/System.Private.Uri/tests/FunctionalTests/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); diff --git a/src/libraries/System.Private.Uri/tests/FunctionalTests/System.Private.Uri.Functional.Tests.csproj b/src/libraries/System.Private.Uri/tests/FunctionalTests/System.Private.Uri.Functional.Tests.csproj index 0a0d0b1008316..d4459620e84fd 100644 --- a/src/libraries/System.Private.Uri/tests/FunctionalTests/System.Private.Uri.Functional.Tests.csproj +++ b/src/libraries/System.Private.Uri/tests/FunctionalTests/System.Private.Uri.Functional.Tests.csproj @@ -1,6 +1,6 @@ - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release diff --git a/src/libraries/System.Private.Uri/tests/UnitTests/Configurations.props b/src/libraries/System.Private.Uri/tests/UnitTests/Configurations.props index a1eadd7648d83..d3947cd2aa838 100644 --- a/src/libraries/System.Private.Uri/tests/UnitTests/Configurations.props +++ b/src/libraries/System.Private.Uri/tests/UnitTests/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); diff --git a/src/libraries/System.Private.Uri/tests/UnitTests/System.Private.Uri.Unit.Tests.csproj b/src/libraries/System.Private.Uri/tests/UnitTests/System.Private.Uri.Unit.Tests.csproj index 82fb2fe94dc35..d00150a98615b 100644 --- a/src/libraries/System.Private.Uri/tests/UnitTests/System.Private.Uri.Unit.Tests.csproj +++ b/src/libraries/System.Private.Uri/tests/UnitTests/System.Private.Uri.Unit.Tests.csproj @@ -3,7 +3,7 @@ true 436 ../../src/Resources/Strings.resx - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release enable diff --git a/src/libraries/System.Private.Xml.Linq/System.Private.Xml.Linq.sln b/src/libraries/System.Private.Xml.Linq/System.Private.Xml.Linq.sln index 4bc27e7942290..b9cf872602544 100644 --- a/src/libraries/System.Private.Xml.Linq/System.Private.Xml.Linq.sln +++ b/src/libraries/System.Private.Xml.Linq/System.Private.Xml.Linq.sln @@ -83,58 +83,58 @@ Global {6D9B0285-5E8A-4C20-9C53-9E2084EF64C4}.Debug|Any CPU.Build.0 = Debug|Any CPU {6D9B0285-5E8A-4C20-9C53-9E2084EF64C4}.Release|Any CPU.ActiveCfg = Release|Any CPU {6D9B0285-5E8A-4C20-9C53-9E2084EF64C4}.Release|Any CPU.Build.0 = Release|Any CPU - {C560E194-5B14-4112-ABC6-3208491E53E6}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {C560E194-5B14-4112-ABC6-3208491E53E6}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {C560E194-5B14-4112-ABC6-3208491E53E6}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {C560E194-5B14-4112-ABC6-3208491E53E6}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU - {35FA1FA9-A504-4B9E-93F0-E5D03C21BECA}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {35FA1FA9-A504-4B9E-93F0-E5D03C21BECA}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {35FA1FA9-A504-4B9E-93F0-E5D03C21BECA}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {35FA1FA9-A504-4B9E-93F0-E5D03C21BECA}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU - {D24E2563-7A46-4368-94D4-B3A39E9EF1B5}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {D24E2563-7A46-4368-94D4-B3A39E9EF1B5}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {D24E2563-7A46-4368-94D4-B3A39E9EF1B5}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {D24E2563-7A46-4368-94D4-B3A39E9EF1B5}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU + {C560E194-5B14-4112-ABC6-3208491E53E6}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {C560E194-5B14-4112-ABC6-3208491E53E6}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {C560E194-5B14-4112-ABC6-3208491E53E6}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {C560E194-5B14-4112-ABC6-3208491E53E6}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU + {35FA1FA9-A504-4B9E-93F0-E5D03C21BECA}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {35FA1FA9-A504-4B9E-93F0-E5D03C21BECA}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {35FA1FA9-A504-4B9E-93F0-E5D03C21BECA}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {35FA1FA9-A504-4B9E-93F0-E5D03C21BECA}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU + {D24E2563-7A46-4368-94D4-B3A39E9EF1B5}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {D24E2563-7A46-4368-94D4-B3A39E9EF1B5}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {D24E2563-7A46-4368-94D4-B3A39E9EF1B5}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {D24E2563-7A46-4368-94D4-B3A39E9EF1B5}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU {AFB408EA-2EF7-42B3-B98F-BA60F6481313}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {AFB408EA-2EF7-42B3-B98F-BA60F6481313}.Debug|Any CPU.Build.0 = Debug|Any CPU {AFB408EA-2EF7-42B3-B98F-BA60F6481313}.Release|Any CPU.ActiveCfg = Release|Any CPU {AFB408EA-2EF7-42B3-B98F-BA60F6481313}.Release|Any CPU.Build.0 = Release|Any CPU - {F6C73170-9333-4B52-B3FA-A536C5EA6A48}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {F6C73170-9333-4B52-B3FA-A536C5EA6A48}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {F6C73170-9333-4B52-B3FA-A536C5EA6A48}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {F6C73170-9333-4B52-B3FA-A536C5EA6A48}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU - {CB11B315-2567-4574-977D-89E3135243C4}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {CB11B315-2567-4574-977D-89E3135243C4}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {CB11B315-2567-4574-977D-89E3135243C4}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {CB11B315-2567-4574-977D-89E3135243C4}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU - {10EFE488-FAB4-43DA-847D-FF057BFF52AC}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {10EFE488-FAB4-43DA-847D-FF057BFF52AC}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {10EFE488-FAB4-43DA-847D-FF057BFF52AC}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {10EFE488-FAB4-43DA-847D-FF057BFF52AC}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU - {52666206-B6C9-49FA-A1D7-D0A0C68807B0}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {52666206-B6C9-49FA-A1D7-D0A0C68807B0}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {52666206-B6C9-49FA-A1D7-D0A0C68807B0}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {52666206-B6C9-49FA-A1D7-D0A0C68807B0}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU + {F6C73170-9333-4B52-B3FA-A536C5EA6A48}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {F6C73170-9333-4B52-B3FA-A536C5EA6A48}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {F6C73170-9333-4B52-B3FA-A536C5EA6A48}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {F6C73170-9333-4B52-B3FA-A536C5EA6A48}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU + {CB11B315-2567-4574-977D-89E3135243C4}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {CB11B315-2567-4574-977D-89E3135243C4}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {CB11B315-2567-4574-977D-89E3135243C4}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {CB11B315-2567-4574-977D-89E3135243C4}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU + {10EFE488-FAB4-43DA-847D-FF057BFF52AC}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {10EFE488-FAB4-43DA-847D-FF057BFF52AC}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {10EFE488-FAB4-43DA-847D-FF057BFF52AC}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {10EFE488-FAB4-43DA-847D-FF057BFF52AC}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU + {52666206-B6C9-49FA-A1D7-D0A0C68807B0}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {52666206-B6C9-49FA-A1D7-D0A0C68807B0}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {52666206-B6C9-49FA-A1D7-D0A0C68807B0}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {52666206-B6C9-49FA-A1D7-D0A0C68807B0}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU {979510CE-9042-4F8D-9C74-EE03B89194CC}.Debug|Any CPU.ActiveCfg = netstandard2.0-Debug|Any CPU {979510CE-9042-4F8D-9C74-EE03B89194CC}.Debug|Any CPU.Build.0 = netstandard2.0-Debug|Any CPU {979510CE-9042-4F8D-9C74-EE03B89194CC}.Release|Any CPU.ActiveCfg = netstandard2.0-Release|Any CPU {979510CE-9042-4F8D-9C74-EE03B89194CC}.Release|Any CPU.Build.0 = netstandard2.0-Release|Any CPU - {5D4FB9ED-C3AC-4EFA-9FEE-619ED4B4B92D}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {5D4FB9ED-C3AC-4EFA-9FEE-619ED4B4B92D}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {5D4FB9ED-C3AC-4EFA-9FEE-619ED4B4B92D}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {5D4FB9ED-C3AC-4EFA-9FEE-619ED4B4B92D}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU - {6E1C5358-7F04-4791-8B5F-6A5A4E42ABF1}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {6E1C5358-7F04-4791-8B5F-6A5A4E42ABF1}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {6E1C5358-7F04-4791-8B5F-6A5A4E42ABF1}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {6E1C5358-7F04-4791-8B5F-6A5A4E42ABF1}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU + {5D4FB9ED-C3AC-4EFA-9FEE-619ED4B4B92D}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {5D4FB9ED-C3AC-4EFA-9FEE-619ED4B4B92D}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {5D4FB9ED-C3AC-4EFA-9FEE-619ED4B4B92D}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {5D4FB9ED-C3AC-4EFA-9FEE-619ED4B4B92D}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU + {6E1C5358-7F04-4791-8B5F-6A5A4E42ABF1}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {6E1C5358-7F04-4791-8B5F-6A5A4E42ABF1}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {6E1C5358-7F04-4791-8B5F-6A5A4E42ABF1}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {6E1C5358-7F04-4791-8B5F-6A5A4E42ABF1}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU {10D52320-17B7-476E-BBD2-A1064DD38CBF}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {10D52320-17B7-476E-BBD2-A1064DD38CBF}.Debug|Any CPU.Build.0 = Debug|Any CPU {10D52320-17B7-476E-BBD2-A1064DD38CBF}.Release|Any CPU.ActiveCfg = Release|Any CPU {10D52320-17B7-476E-BBD2-A1064DD38CBF}.Release|Any CPU.Build.0 = Release|Any CPU - {BAC347A3-9841-44FC-B1E3-2344D1152C23}.Debug|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Debug|Any CPU - {BAC347A3-9841-44FC-B1E3-2344D1152C23}.Debug|Any CPU.Build.0 = netcoreapp-Windows_NT-Debug|Any CPU - {BAC347A3-9841-44FC-B1E3-2344D1152C23}.Release|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Release|Any CPU - {BAC347A3-9841-44FC-B1E3-2344D1152C23}.Release|Any CPU.Build.0 = netcoreapp-Windows_NT-Release|Any CPU + {BAC347A3-9841-44FC-B1E3-2344D1152C23}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Debug|Any CPU + {BAC347A3-9841-44FC-B1E3-2344D1152C23}.Debug|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Debug|Any CPU + {BAC347A3-9841-44FC-B1E3-2344D1152C23}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Release|Any CPU + {BAC347A3-9841-44FC-B1E3-2344D1152C23}.Release|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/src/libraries/System.Private.Xml.Linq/src/Configurations.props b/src/libraries/System.Private.Xml.Linq/src/Configurations.props index db389259c06b1..f3922475141ae 100644 --- a/src/libraries/System.Private.Xml.Linq/src/Configurations.props +++ b/src/libraries/System.Private.Xml.Linq/src/Configurations.props @@ -1,8 +1,8 @@  - netcoreapp-Windows_NT; - netcoreapp-Unix; + $(NetCoreAppCurrent)-Windows_NT; + $(NetCoreAppCurrent)-Unix; diff --git a/src/libraries/System.Private.Xml.Linq/src/System.Private.Xml.Linq.csproj b/src/libraries/System.Private.Xml.Linq/src/System.Private.Xml.Linq.csproj index dfb876006fb38..296f1a3a376e4 100644 --- a/src/libraries/System.Private.Xml.Linq/src/System.Private.Xml.Linq.csproj +++ b/src/libraries/System.Private.Xml.Linq/src/System.Private.Xml.Linq.csproj @@ -2,7 +2,7 @@ System.Private.Xml.Linq System.Xml - netcoreapp-Unix-Debug;netcoreapp-Unix-Release;netcoreapp-Windows_NT-Debug;netcoreapp-Windows_NT-Release + $(NetCoreAppCurrent)-Unix-Debug;$(NetCoreAppCurrent)-Unix-Release;$(NetCoreAppCurrent)-Windows_NT-Debug;$(NetCoreAppCurrent)-Windows_NT-Release diff --git a/src/libraries/System.Private.Xml.Linq/tests/Properties/Configurations.props b/src/libraries/System.Private.Xml.Linq/tests/Properties/Configurations.props index 7eb0e1133dd93..947de17d405eb 100644 --- a/src/libraries/System.Private.Xml.Linq/tests/Properties/Configurations.props +++ b/src/libraries/System.Private.Xml.Linq/tests/Properties/Configurations.props @@ -1,7 +1,7 @@ - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Private.Xml.Linq/tests/Properties/System.Xml.Linq.Properties.Tests.csproj b/src/libraries/System.Private.Xml.Linq/tests/Properties/System.Xml.Linq.Properties.Tests.csproj index 1e35c623a9516..1b1801382e5ae 100644 --- a/src/libraries/System.Private.Xml.Linq/tests/Properties/System.Xml.Linq.Properties.Tests.csproj +++ b/src/libraries/System.Private.Xml.Linq/tests/Properties/System.Xml.Linq.Properties.Tests.csproj @@ -1,6 +1,6 @@ - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release diff --git a/src/libraries/System.Private.Xml.Linq/tests/SDMSample/Configurations.props b/src/libraries/System.Private.Xml.Linq/tests/SDMSample/Configurations.props index beb53a974e680..c50114dc4221a 100644 --- a/src/libraries/System.Private.Xml.Linq/tests/SDMSample/Configurations.props +++ b/src/libraries/System.Private.Xml.Linq/tests/SDMSample/Configurations.props @@ -1,7 +1,7 @@ - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Private.Xml.Linq/tests/SDMSample/System.Xml.Linq.SDMSample.Tests.csproj b/src/libraries/System.Private.Xml.Linq/tests/SDMSample/System.Xml.Linq.SDMSample.Tests.csproj index 0a71ab2c2f58a..e9a725f018708 100644 --- a/src/libraries/System.Private.Xml.Linq/tests/SDMSample/System.Xml.Linq.SDMSample.Tests.csproj +++ b/src/libraries/System.Private.Xml.Linq/tests/SDMSample/System.Xml.Linq.SDMSample.Tests.csproj @@ -1,6 +1,6 @@ - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release diff --git a/src/libraries/System.Private.Xml.Linq/tests/Streaming/Configurations.props b/src/libraries/System.Private.Xml.Linq/tests/Streaming/Configurations.props index 7eb0e1133dd93..947de17d405eb 100644 --- a/src/libraries/System.Private.Xml.Linq/tests/Streaming/Configurations.props +++ b/src/libraries/System.Private.Xml.Linq/tests/Streaming/Configurations.props @@ -1,7 +1,7 @@ - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Private.Xml.Linq/tests/Streaming/System.Xml.Linq.Streaming.Tests.csproj b/src/libraries/System.Private.Xml.Linq/tests/Streaming/System.Xml.Linq.Streaming.Tests.csproj index ec534355d3ba4..1ebe87affd455 100644 --- a/src/libraries/System.Private.Xml.Linq/tests/Streaming/System.Xml.Linq.Streaming.Tests.csproj +++ b/src/libraries/System.Private.Xml.Linq/tests/Streaming/System.Xml.Linq.Streaming.Tests.csproj @@ -1,6 +1,6 @@ - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release diff --git a/src/libraries/System.Private.Xml.Linq/tests/TreeManipulation/Configurations.props b/src/libraries/System.Private.Xml.Linq/tests/TreeManipulation/Configurations.props index 7eb0e1133dd93..947de17d405eb 100644 --- a/src/libraries/System.Private.Xml.Linq/tests/TreeManipulation/Configurations.props +++ b/src/libraries/System.Private.Xml.Linq/tests/TreeManipulation/Configurations.props @@ -1,7 +1,7 @@ - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Private.Xml.Linq/tests/TreeManipulation/System.Xml.Linq.TreeManipulation.Tests.csproj b/src/libraries/System.Private.Xml.Linq/tests/TreeManipulation/System.Xml.Linq.TreeManipulation.Tests.csproj index 1acadbb0dbd85..1dc19747841a3 100644 --- a/src/libraries/System.Private.Xml.Linq/tests/TreeManipulation/System.Xml.Linq.TreeManipulation.Tests.csproj +++ b/src/libraries/System.Private.Xml.Linq/tests/TreeManipulation/System.Xml.Linq.TreeManipulation.Tests.csproj @@ -1,6 +1,6 @@ - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release diff --git a/src/libraries/System.Private.Xml.Linq/tests/XDocument.Common/Configurations.props b/src/libraries/System.Private.Xml.Linq/tests/XDocument.Common/Configurations.props index 89d6ac0f025b9..b6e0d3ce6383b 100644 --- a/src/libraries/System.Private.Xml.Linq/tests/XDocument.Common/Configurations.props +++ b/src/libraries/System.Private.Xml.Linq/tests/XDocument.Common/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Private.Xml.Linq/tests/XDocument.Common/XDocument.Common.csproj b/src/libraries/System.Private.Xml.Linq/tests/XDocument.Common/XDocument.Common.csproj index 16f6b5fded730..bb7f3a85afd98 100644 --- a/src/libraries/System.Private.Xml.Linq/tests/XDocument.Common/XDocument.Common.csproj +++ b/src/libraries/System.Private.Xml.Linq/tests/XDocument.Common/XDocument.Common.csproj @@ -2,7 +2,7 @@ XDocument.Common CoreXml.Test.XLinq - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release diff --git a/src/libraries/System.Private.Xml.Linq/tests/events/Configurations.props b/src/libraries/System.Private.Xml.Linq/tests/events/Configurations.props index 89d6ac0f025b9..b6e0d3ce6383b 100644 --- a/src/libraries/System.Private.Xml.Linq/tests/events/Configurations.props +++ b/src/libraries/System.Private.Xml.Linq/tests/events/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Private.Xml.Linq/tests/events/System.Xml.Linq.Events.Tests.csproj b/src/libraries/System.Private.Xml.Linq/tests/events/System.Xml.Linq.Events.Tests.csproj index a2fa00cc9acb0..d750900bad4d6 100644 --- a/src/libraries/System.Private.Xml.Linq/tests/events/System.Xml.Linq.Events.Tests.csproj +++ b/src/libraries/System.Private.Xml.Linq/tests/events/System.Xml.Linq.Events.Tests.csproj @@ -1,6 +1,6 @@ - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release diff --git a/src/libraries/System.Private.Xml.Linq/tests/misc/Configurations.props b/src/libraries/System.Private.Xml.Linq/tests/misc/Configurations.props index 7eb0e1133dd93..947de17d405eb 100644 --- a/src/libraries/System.Private.Xml.Linq/tests/misc/Configurations.props +++ b/src/libraries/System.Private.Xml.Linq/tests/misc/Configurations.props @@ -1,7 +1,7 @@ - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Private.Xml.Linq/tests/misc/System.Xml.Linq.Misc.Tests.csproj b/src/libraries/System.Private.Xml.Linq/tests/misc/System.Xml.Linq.Misc.Tests.csproj index 15577df5d2f84..289be82fa14ef 100644 --- a/src/libraries/System.Private.Xml.Linq/tests/misc/System.Xml.Linq.Misc.Tests.csproj +++ b/src/libraries/System.Private.Xml.Linq/tests/misc/System.Xml.Linq.Misc.Tests.csproj @@ -1,6 +1,6 @@ - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release diff --git a/src/libraries/System.Private.Xml.Linq/tests/xNodeBuilder/Configurations.props b/src/libraries/System.Private.Xml.Linq/tests/xNodeBuilder/Configurations.props index 7eb0e1133dd93..947de17d405eb 100644 --- a/src/libraries/System.Private.Xml.Linq/tests/xNodeBuilder/Configurations.props +++ b/src/libraries/System.Private.Xml.Linq/tests/xNodeBuilder/Configurations.props @@ -1,7 +1,7 @@ - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Private.Xml.Linq/tests/xNodeBuilder/System.Xml.Linq.xNodeBuilder.Tests.csproj b/src/libraries/System.Private.Xml.Linq/tests/xNodeBuilder/System.Xml.Linq.xNodeBuilder.Tests.csproj index 02aa3cf5c9d1c..40438787ea3cb 100644 --- a/src/libraries/System.Private.Xml.Linq/tests/xNodeBuilder/System.Xml.Linq.xNodeBuilder.Tests.csproj +++ b/src/libraries/System.Private.Xml.Linq/tests/xNodeBuilder/System.Xml.Linq.xNodeBuilder.Tests.csproj @@ -1,7 +1,7 @@ $(NoWarn);xUnit1013 - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release diff --git a/src/libraries/System.Private.Xml.Linq/tests/xNodeReader/Configurations.props b/src/libraries/System.Private.Xml.Linq/tests/xNodeReader/Configurations.props index 7eb0e1133dd93..947de17d405eb 100644 --- a/src/libraries/System.Private.Xml.Linq/tests/xNodeReader/Configurations.props +++ b/src/libraries/System.Private.Xml.Linq/tests/xNodeReader/Configurations.props @@ -1,7 +1,7 @@ - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Private.Xml.Linq/tests/xNodeReader/System.Xml.Linq.xNodeReader.Tests.csproj b/src/libraries/System.Private.Xml.Linq/tests/xNodeReader/System.Xml.Linq.xNodeReader.Tests.csproj index d21077266c9f2..f0af3fbbf5486 100644 --- a/src/libraries/System.Private.Xml.Linq/tests/xNodeReader/System.Xml.Linq.xNodeReader.Tests.csproj +++ b/src/libraries/System.Private.Xml.Linq/tests/xNodeReader/System.Xml.Linq.xNodeReader.Tests.csproj @@ -1,7 +1,7 @@ $(NoWarn);xUnit1013 - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release diff --git a/src/libraries/System.Private.Xml/System.Private.Xml.sln b/src/libraries/System.Private.Xml/System.Private.Xml.sln index 4c2f395f05e2e..cdfd60e8f4d80 100644 --- a/src/libraries/System.Private.Xml/System.Private.Xml.sln +++ b/src/libraries/System.Private.Xml/System.Private.Xml.sln @@ -154,122 +154,122 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {A30BBA60-647C-4565-A42F-BE60B2CA2E8E}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {A30BBA60-647C-4565-A42F-BE60B2CA2E8E}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {A30BBA60-647C-4565-A42F-BE60B2CA2E8E}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {A30BBA60-647C-4565-A42F-BE60B2CA2E8E}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU - {6DC15D23-8213-4700-9815-AD8DEED1CE5F}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {6DC15D23-8213-4700-9815-AD8DEED1CE5F}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {6DC15D23-8213-4700-9815-AD8DEED1CE5F}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {6DC15D23-8213-4700-9815-AD8DEED1CE5F}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU - {B51913C2-478E-46AA-A523-521BD4593651}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {B51913C2-478E-46AA-A523-521BD4593651}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {B51913C2-478E-46AA-A523-521BD4593651}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {B51913C2-478E-46AA-A523-521BD4593651}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU - {04C5492C-FA54-4F93-8698-44B8BB7C72E0}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {04C5492C-FA54-4F93-8698-44B8BB7C72E0}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {04C5492C-FA54-4F93-8698-44B8BB7C72E0}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {04C5492C-FA54-4F93-8698-44B8BB7C72E0}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU - {2CA30CA9-FADA-4AB6-81E3-EAE61EF44463}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {2CA30CA9-FADA-4AB6-81E3-EAE61EF44463}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {2CA30CA9-FADA-4AB6-81E3-EAE61EF44463}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {2CA30CA9-FADA-4AB6-81E3-EAE61EF44463}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU - {54B5F207-CC11-4AC3-B0D7-1E7A7E2F08DE}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {54B5F207-CC11-4AC3-B0D7-1E7A7E2F08DE}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {54B5F207-CC11-4AC3-B0D7-1E7A7E2F08DE}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {54B5F207-CC11-4AC3-B0D7-1E7A7E2F08DE}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU - {6DC919A7-CF8F-4CCD-A7E3-1AD9389FEC86}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {6DC919A7-CF8F-4CCD-A7E3-1AD9389FEC86}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {6DC919A7-CF8F-4CCD-A7E3-1AD9389FEC86}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {6DC919A7-CF8F-4CCD-A7E3-1AD9389FEC86}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU - {1C8F67D6-1953-49D3-B716-F298883A79C6}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {1C8F67D6-1953-49D3-B716-F298883A79C6}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {1C8F67D6-1953-49D3-B716-F298883A79C6}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {1C8F67D6-1953-49D3-B716-F298883A79C6}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU - {95C95878-A9CD-43D4-B1BB-D0DCAA54C3D7}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {95C95878-A9CD-43D4-B1BB-D0DCAA54C3D7}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {95C95878-A9CD-43D4-B1BB-D0DCAA54C3D7}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {95C95878-A9CD-43D4-B1BB-D0DCAA54C3D7}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU - {E6DAD59F-7CB7-4E70-B4C5-FCCBC3376EDE}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {E6DAD59F-7CB7-4E70-B4C5-FCCBC3376EDE}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {E6DAD59F-7CB7-4E70-B4C5-FCCBC3376EDE}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {E6DAD59F-7CB7-4E70-B4C5-FCCBC3376EDE}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU - {3F18D20D-0267-4381-857B-EEDB7B3FC549}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {3F18D20D-0267-4381-857B-EEDB7B3FC549}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {3F18D20D-0267-4381-857B-EEDB7B3FC549}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {3F18D20D-0267-4381-857B-EEDB7B3FC549}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU - {7EAFC2D8-48D2-4A56-A9C6-6BADF2053499}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {7EAFC2D8-48D2-4A56-A9C6-6BADF2053499}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {7EAFC2D8-48D2-4A56-A9C6-6BADF2053499}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {7EAFC2D8-48D2-4A56-A9C6-6BADF2053499}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU - {6C6F323D-054E-4723-9DEA-1C5E1E45DF88}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {6C6F323D-054E-4723-9DEA-1C5E1E45DF88}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {6C6F323D-054E-4723-9DEA-1C5E1E45DF88}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {6C6F323D-054E-4723-9DEA-1C5E1E45DF88}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU - {DA6A9B7F-F311-49A4-8BBE-42EF3152C37B}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {DA6A9B7F-F311-49A4-8BBE-42EF3152C37B}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {DA6A9B7F-F311-49A4-8BBE-42EF3152C37B}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {DA6A9B7F-F311-49A4-8BBE-42EF3152C37B}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU - {507DB29F-74F5-4B34-A240-ABE7BD168DF6}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {507DB29F-74F5-4B34-A240-ABE7BD168DF6}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {507DB29F-74F5-4B34-A240-ABE7BD168DF6}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {507DB29F-74F5-4B34-A240-ABE7BD168DF6}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU - {E4BC1A16-AD0A-4F70-BD2E-3346A4D9BC2B}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {E4BC1A16-AD0A-4F70-BD2E-3346A4D9BC2B}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {E4BC1A16-AD0A-4F70-BD2E-3346A4D9BC2B}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {E4BC1A16-AD0A-4F70-BD2E-3346A4D9BC2B}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU - {F05DE950-CA99-42A8-B44D-E7DAA5C3C783}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {F05DE950-CA99-42A8-B44D-E7DAA5C3C783}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {F05DE950-CA99-42A8-B44D-E7DAA5C3C783}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {F05DE950-CA99-42A8-B44D-E7DAA5C3C783}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU - {F011A6F5-BA48-4F8D-A20F-79CCE01CDE0E}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {F011A6F5-BA48-4F8D-A20F-79CCE01CDE0E}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {F011A6F5-BA48-4F8D-A20F-79CCE01CDE0E}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {F011A6F5-BA48-4F8D-A20F-79CCE01CDE0E}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU - {9EDAADA8-B658-430F-97EE-CCA494883D86}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {9EDAADA8-B658-430F-97EE-CCA494883D86}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {9EDAADA8-B658-430F-97EE-CCA494883D86}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {9EDAADA8-B658-430F-97EE-CCA494883D86}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU - {B0F53AAA-4ABC-44B2-9331-D3802340DD20}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {B0F53AAA-4ABC-44B2-9331-D3802340DD20}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {B0F53AAA-4ABC-44B2-9331-D3802340DD20}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {B0F53AAA-4ABC-44B2-9331-D3802340DD20}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU - {4050F1D1-1DD2-4B48-A17B-E3F955518C4B}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {4050F1D1-1DD2-4B48-A17B-E3F955518C4B}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {4050F1D1-1DD2-4B48-A17B-E3F955518C4B}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {4050F1D1-1DD2-4B48-A17B-E3F955518C4B}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU - {4050F1D1-1DD2-4B48-A17B-E3F90DD18C4B}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {4050F1D1-1DD2-4B48-A17B-E3F90DD18C4B}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {4050F1D1-1DD2-4B48-A17B-E3F90DD18C4B}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {4050F1D1-1DD2-4B48-A17B-E3F90DD18C4B}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU - {8CDE71C2-4DA4-4AF6-9897-CD953AE653C2}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {8CDE71C2-4DA4-4AF6-9897-CD953AE653C2}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {8CDE71C2-4DA4-4AF6-9897-CD953AE653C2}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {8CDE71C2-4DA4-4AF6-9897-CD953AE653C2}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU - {7B57D5F1-4E6C-4280-AD5B-C71C73B66B11}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {7B57D5F1-4E6C-4280-AD5B-C71C73B66B11}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {7B57D5F1-4E6C-4280-AD5B-C71C73B66B11}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {7B57D5F1-4E6C-4280-AD5B-C71C73B66B11}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU - {D0DF902A-2486-4A38-B7A7-232B9B6590E1}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {D0DF902A-2486-4A38-B7A7-232B9B6590E1}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {D0DF902A-2486-4A38-B7A7-232B9B6590E1}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {D0DF902A-2486-4A38-B7A7-232B9B6590E1}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU - {B01E2AE1-1B52-4518-B32E-016070356A7F}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {B01E2AE1-1B52-4518-B32E-016070356A7F}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {B01E2AE1-1B52-4518-B32E-016070356A7F}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {B01E2AE1-1B52-4518-B32E-016070356A7F}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU - {59B2167E-E2D6-4E7E-AFFE-4060E1F3843C}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {59B2167E-E2D6-4E7E-AFFE-4060E1F3843C}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {59B2167E-E2D6-4E7E-AFFE-4060E1F3843C}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {59B2167E-E2D6-4E7E-AFFE-4060E1F3843C}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU - {ACF79A18-2655-452C-B4AC-10125F0AD7A8}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {ACF79A18-2655-452C-B4AC-10125F0AD7A8}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {ACF79A18-2655-452C-B4AC-10125F0AD7A8}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {ACF79A18-2655-452C-B4AC-10125F0AD7A8}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU - {C427CE0D-0740-41F3-9C3A-552BEA3DDB0D}.Debug|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Debug|Any CPU - {C427CE0D-0740-41F3-9C3A-552BEA3DDB0D}.Debug|Any CPU.Build.0 = netcoreapp-Windows_NT-Debug|Any CPU - {C427CE0D-0740-41F3-9C3A-552BEA3DDB0D}.Release|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Release|Any CPU - {C427CE0D-0740-41F3-9C3A-552BEA3DDB0D}.Release|Any CPU.Build.0 = netcoreapp-Windows_NT-Release|Any CPU + {A30BBA60-647C-4565-A42F-BE60B2CA2E8E}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {A30BBA60-647C-4565-A42F-BE60B2CA2E8E}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {A30BBA60-647C-4565-A42F-BE60B2CA2E8E}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {A30BBA60-647C-4565-A42F-BE60B2CA2E8E}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU + {6DC15D23-8213-4700-9815-AD8DEED1CE5F}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {6DC15D23-8213-4700-9815-AD8DEED1CE5F}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {6DC15D23-8213-4700-9815-AD8DEED1CE5F}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {6DC15D23-8213-4700-9815-AD8DEED1CE5F}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU + {B51913C2-478E-46AA-A523-521BD4593651}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {B51913C2-478E-46AA-A523-521BD4593651}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {B51913C2-478E-46AA-A523-521BD4593651}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {B51913C2-478E-46AA-A523-521BD4593651}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU + {04C5492C-FA54-4F93-8698-44B8BB7C72E0}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {04C5492C-FA54-4F93-8698-44B8BB7C72E0}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {04C5492C-FA54-4F93-8698-44B8BB7C72E0}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {04C5492C-FA54-4F93-8698-44B8BB7C72E0}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU + {2CA30CA9-FADA-4AB6-81E3-EAE61EF44463}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {2CA30CA9-FADA-4AB6-81E3-EAE61EF44463}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {2CA30CA9-FADA-4AB6-81E3-EAE61EF44463}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {2CA30CA9-FADA-4AB6-81E3-EAE61EF44463}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU + {54B5F207-CC11-4AC3-B0D7-1E7A7E2F08DE}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {54B5F207-CC11-4AC3-B0D7-1E7A7E2F08DE}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {54B5F207-CC11-4AC3-B0D7-1E7A7E2F08DE}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {54B5F207-CC11-4AC3-B0D7-1E7A7E2F08DE}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU + {6DC919A7-CF8F-4CCD-A7E3-1AD9389FEC86}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {6DC919A7-CF8F-4CCD-A7E3-1AD9389FEC86}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {6DC919A7-CF8F-4CCD-A7E3-1AD9389FEC86}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {6DC919A7-CF8F-4CCD-A7E3-1AD9389FEC86}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU + {1C8F67D6-1953-49D3-B716-F298883A79C6}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {1C8F67D6-1953-49D3-B716-F298883A79C6}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {1C8F67D6-1953-49D3-B716-F298883A79C6}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {1C8F67D6-1953-49D3-B716-F298883A79C6}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU + {95C95878-A9CD-43D4-B1BB-D0DCAA54C3D7}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {95C95878-A9CD-43D4-B1BB-D0DCAA54C3D7}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {95C95878-A9CD-43D4-B1BB-D0DCAA54C3D7}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {95C95878-A9CD-43D4-B1BB-D0DCAA54C3D7}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU + {E6DAD59F-7CB7-4E70-B4C5-FCCBC3376EDE}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {E6DAD59F-7CB7-4E70-B4C5-FCCBC3376EDE}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {E6DAD59F-7CB7-4E70-B4C5-FCCBC3376EDE}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {E6DAD59F-7CB7-4E70-B4C5-FCCBC3376EDE}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU + {3F18D20D-0267-4381-857B-EEDB7B3FC549}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {3F18D20D-0267-4381-857B-EEDB7B3FC549}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {3F18D20D-0267-4381-857B-EEDB7B3FC549}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {3F18D20D-0267-4381-857B-EEDB7B3FC549}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU + {7EAFC2D8-48D2-4A56-A9C6-6BADF2053499}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {7EAFC2D8-48D2-4A56-A9C6-6BADF2053499}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {7EAFC2D8-48D2-4A56-A9C6-6BADF2053499}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {7EAFC2D8-48D2-4A56-A9C6-6BADF2053499}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU + {6C6F323D-054E-4723-9DEA-1C5E1E45DF88}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {6C6F323D-054E-4723-9DEA-1C5E1E45DF88}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {6C6F323D-054E-4723-9DEA-1C5E1E45DF88}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {6C6F323D-054E-4723-9DEA-1C5E1E45DF88}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU + {DA6A9B7F-F311-49A4-8BBE-42EF3152C37B}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {DA6A9B7F-F311-49A4-8BBE-42EF3152C37B}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {DA6A9B7F-F311-49A4-8BBE-42EF3152C37B}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {DA6A9B7F-F311-49A4-8BBE-42EF3152C37B}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU + {507DB29F-74F5-4B34-A240-ABE7BD168DF6}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {507DB29F-74F5-4B34-A240-ABE7BD168DF6}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {507DB29F-74F5-4B34-A240-ABE7BD168DF6}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {507DB29F-74F5-4B34-A240-ABE7BD168DF6}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU + {E4BC1A16-AD0A-4F70-BD2E-3346A4D9BC2B}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {E4BC1A16-AD0A-4F70-BD2E-3346A4D9BC2B}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {E4BC1A16-AD0A-4F70-BD2E-3346A4D9BC2B}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {E4BC1A16-AD0A-4F70-BD2E-3346A4D9BC2B}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU + {F05DE950-CA99-42A8-B44D-E7DAA5C3C783}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {F05DE950-CA99-42A8-B44D-E7DAA5C3C783}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {F05DE950-CA99-42A8-B44D-E7DAA5C3C783}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {F05DE950-CA99-42A8-B44D-E7DAA5C3C783}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU + {F011A6F5-BA48-4F8D-A20F-79CCE01CDE0E}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {F011A6F5-BA48-4F8D-A20F-79CCE01CDE0E}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {F011A6F5-BA48-4F8D-A20F-79CCE01CDE0E}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {F011A6F5-BA48-4F8D-A20F-79CCE01CDE0E}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU + {9EDAADA8-B658-430F-97EE-CCA494883D86}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {9EDAADA8-B658-430F-97EE-CCA494883D86}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {9EDAADA8-B658-430F-97EE-CCA494883D86}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {9EDAADA8-B658-430F-97EE-CCA494883D86}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU + {B0F53AAA-4ABC-44B2-9331-D3802340DD20}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {B0F53AAA-4ABC-44B2-9331-D3802340DD20}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {B0F53AAA-4ABC-44B2-9331-D3802340DD20}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {B0F53AAA-4ABC-44B2-9331-D3802340DD20}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU + {4050F1D1-1DD2-4B48-A17B-E3F955518C4B}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {4050F1D1-1DD2-4B48-A17B-E3F955518C4B}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {4050F1D1-1DD2-4B48-A17B-E3F955518C4B}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {4050F1D1-1DD2-4B48-A17B-E3F955518C4B}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU + {4050F1D1-1DD2-4B48-A17B-E3F90DD18C4B}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {4050F1D1-1DD2-4B48-A17B-E3F90DD18C4B}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {4050F1D1-1DD2-4B48-A17B-E3F90DD18C4B}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {4050F1D1-1DD2-4B48-A17B-E3F90DD18C4B}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU + {8CDE71C2-4DA4-4AF6-9897-CD953AE653C2}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {8CDE71C2-4DA4-4AF6-9897-CD953AE653C2}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {8CDE71C2-4DA4-4AF6-9897-CD953AE653C2}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {8CDE71C2-4DA4-4AF6-9897-CD953AE653C2}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU + {7B57D5F1-4E6C-4280-AD5B-C71C73B66B11}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {7B57D5F1-4E6C-4280-AD5B-C71C73B66B11}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {7B57D5F1-4E6C-4280-AD5B-C71C73B66B11}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {7B57D5F1-4E6C-4280-AD5B-C71C73B66B11}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU + {D0DF902A-2486-4A38-B7A7-232B9B6590E1}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {D0DF902A-2486-4A38-B7A7-232B9B6590E1}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {D0DF902A-2486-4A38-B7A7-232B9B6590E1}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {D0DF902A-2486-4A38-B7A7-232B9B6590E1}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU + {B01E2AE1-1B52-4518-B32E-016070356A7F}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {B01E2AE1-1B52-4518-B32E-016070356A7F}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {B01E2AE1-1B52-4518-B32E-016070356A7F}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {B01E2AE1-1B52-4518-B32E-016070356A7F}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU + {59B2167E-E2D6-4E7E-AFFE-4060E1F3843C}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {59B2167E-E2D6-4E7E-AFFE-4060E1F3843C}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {59B2167E-E2D6-4E7E-AFFE-4060E1F3843C}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {59B2167E-E2D6-4E7E-AFFE-4060E1F3843C}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU + {ACF79A18-2655-452C-B4AC-10125F0AD7A8}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {ACF79A18-2655-452C-B4AC-10125F0AD7A8}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {ACF79A18-2655-452C-B4AC-10125F0AD7A8}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {ACF79A18-2655-452C-B4AC-10125F0AD7A8}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU + {C427CE0D-0740-41F3-9C3A-552BEA3DDB0D}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Debug|Any CPU + {C427CE0D-0740-41F3-9C3A-552BEA3DDB0D}.Debug|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Debug|Any CPU + {C427CE0D-0740-41F3-9C3A-552BEA3DDB0D}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Release|Any CPU + {C427CE0D-0740-41F3-9C3A-552BEA3DDB0D}.Release|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/src/libraries/System.Private.Xml/src/Configurations.props b/src/libraries/System.Private.Xml/src/Configurations.props index db389259c06b1..f3922475141ae 100644 --- a/src/libraries/System.Private.Xml/src/Configurations.props +++ b/src/libraries/System.Private.Xml/src/Configurations.props @@ -1,8 +1,8 @@  - netcoreapp-Windows_NT; - netcoreapp-Unix; + $(NetCoreAppCurrent)-Windows_NT; + $(NetCoreAppCurrent)-Unix; diff --git a/src/libraries/System.Private.Xml/src/System.Private.Xml.csproj b/src/libraries/System.Private.Xml/src/System.Private.Xml.csproj index fba6be5d969c1..5ba65df4db1c6 100644 --- a/src/libraries/System.Private.Xml/src/System.Private.Xml.csproj +++ b/src/libraries/System.Private.Xml/src/System.Private.Xml.csproj @@ -5,7 +5,7 @@ true $(NoWarn);CS1573;649;169;414 $(DefineConstants);FEATURE_COMPILED_XSL - netcoreapp-Unix-Debug;netcoreapp-Unix-Release;netcoreapp-Windows_NT-Debug;netcoreapp-Windows_NT-Release + $(NetCoreAppCurrent)-Unix-Debug;$(NetCoreAppCurrent)-Unix-Release;$(NetCoreAppCurrent)-Windows_NT-Debug;$(NetCoreAppCurrent)-Windows_NT-Release diff --git a/src/libraries/System.Private.Xml/tests/Misc/Configurations.props b/src/libraries/System.Private.Xml/tests/Misc/Configurations.props index 89d6ac0f025b9..b6e0d3ce6383b 100644 --- a/src/libraries/System.Private.Xml/tests/Misc/Configurations.props +++ b/src/libraries/System.Private.Xml/tests/Misc/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Private.Xml/tests/Misc/System.Xml.Misc.Tests.csproj b/src/libraries/System.Private.Xml/tests/Misc/System.Xml.Misc.Tests.csproj index 0c944d6f5a2fc..fcc503532bbbb 100644 --- a/src/libraries/System.Private.Xml/tests/Misc/System.Xml.Misc.Tests.csproj +++ b/src/libraries/System.Private.Xml/tests/Misc/System.Xml.Misc.Tests.csproj @@ -1,7 +1,7 @@ XmlMiscTests - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release diff --git a/src/libraries/System.Private.Xml/tests/Readers/CharCheckingReader/Configurations.props b/src/libraries/System.Private.Xml/tests/Readers/CharCheckingReader/Configurations.props index 89d6ac0f025b9..b6e0d3ce6383b 100644 --- a/src/libraries/System.Private.Xml/tests/Readers/CharCheckingReader/Configurations.props +++ b/src/libraries/System.Private.Xml/tests/Readers/CharCheckingReader/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Private.Xml/tests/Readers/CharCheckingReader/System.Xml.RW.CharCheckingReader.Tests.csproj b/src/libraries/System.Private.Xml/tests/Readers/CharCheckingReader/System.Xml.RW.CharCheckingReader.Tests.csproj index 6a45e989f537d..87c1e3fa609d0 100644 --- a/src/libraries/System.Private.Xml/tests/Readers/CharCheckingReader/System.Xml.RW.CharCheckingReader.Tests.csproj +++ b/src/libraries/System.Private.Xml/tests/Readers/CharCheckingReader/System.Xml.RW.CharCheckingReader.Tests.csproj @@ -1,6 +1,6 @@ - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release diff --git a/src/libraries/System.Private.Xml/tests/Readers/CustomReader/Configurations.props b/src/libraries/System.Private.Xml/tests/Readers/CustomReader/Configurations.props index 89d6ac0f025b9..b6e0d3ce6383b 100644 --- a/src/libraries/System.Private.Xml/tests/Readers/CustomReader/Configurations.props +++ b/src/libraries/System.Private.Xml/tests/Readers/CustomReader/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Private.Xml/tests/Readers/CustomReader/System.Xml.RW.CustomReader.Tests.csproj b/src/libraries/System.Private.Xml/tests/Readers/CustomReader/System.Xml.RW.CustomReader.Tests.csproj index 905e58e212248..185998b2ec27d 100644 --- a/src/libraries/System.Private.Xml/tests/Readers/CustomReader/System.Xml.RW.CustomReader.Tests.csproj +++ b/src/libraries/System.Private.Xml/tests/Readers/CustomReader/System.Xml.RW.CustomReader.Tests.csproj @@ -1,6 +1,6 @@ - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release diff --git a/src/libraries/System.Private.Xml/tests/Readers/FactoryReader/Configurations.props b/src/libraries/System.Private.Xml/tests/Readers/FactoryReader/Configurations.props index 89d6ac0f025b9..b6e0d3ce6383b 100644 --- a/src/libraries/System.Private.Xml/tests/Readers/FactoryReader/Configurations.props +++ b/src/libraries/System.Private.Xml/tests/Readers/FactoryReader/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Private.Xml/tests/Readers/FactoryReader/System.Xml.RW.FactoryReader.Tests.csproj b/src/libraries/System.Private.Xml/tests/Readers/FactoryReader/System.Xml.RW.FactoryReader.Tests.csproj index 59240be4375f2..d5fd9cede912a 100644 --- a/src/libraries/System.Private.Xml/tests/Readers/FactoryReader/System.Xml.RW.FactoryReader.Tests.csproj +++ b/src/libraries/System.Private.Xml/tests/Readers/FactoryReader/System.Xml.RW.FactoryReader.Tests.csproj @@ -1,6 +1,6 @@ - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release diff --git a/src/libraries/System.Private.Xml/tests/Readers/NameTable/Configurations.props b/src/libraries/System.Private.Xml/tests/Readers/NameTable/Configurations.props index 89d6ac0f025b9..b6e0d3ce6383b 100644 --- a/src/libraries/System.Private.Xml/tests/Readers/NameTable/Configurations.props +++ b/src/libraries/System.Private.Xml/tests/Readers/NameTable/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Private.Xml/tests/Readers/NameTable/System.Xml.RW.NameTable.Tests.csproj b/src/libraries/System.Private.Xml/tests/Readers/NameTable/System.Xml.RW.NameTable.Tests.csproj index cb176fbc04ba4..b3b50f4dc590e 100644 --- a/src/libraries/System.Private.Xml/tests/Readers/NameTable/System.Xml.RW.NameTable.Tests.csproj +++ b/src/libraries/System.Private.Xml/tests/Readers/NameTable/System.Xml.RW.NameTable.Tests.csproj @@ -1,6 +1,6 @@ - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release diff --git a/src/libraries/System.Private.Xml/tests/Readers/ReaderSettings/Configurations.props b/src/libraries/System.Private.Xml/tests/Readers/ReaderSettings/Configurations.props index 89d6ac0f025b9..b6e0d3ce6383b 100644 --- a/src/libraries/System.Private.Xml/tests/Readers/ReaderSettings/Configurations.props +++ b/src/libraries/System.Private.Xml/tests/Readers/ReaderSettings/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Private.Xml/tests/Readers/ReaderSettings/System.Xml.RW.ReaderSettings.Tests.csproj b/src/libraries/System.Private.Xml/tests/Readers/ReaderSettings/System.Xml.RW.ReaderSettings.Tests.csproj index ac7c7289f7d9d..6e6960440667c 100644 --- a/src/libraries/System.Private.Xml/tests/Readers/ReaderSettings/System.Xml.RW.ReaderSettings.Tests.csproj +++ b/src/libraries/System.Private.Xml/tests/Readers/ReaderSettings/System.Xml.RW.ReaderSettings.Tests.csproj @@ -1,6 +1,6 @@ - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release diff --git a/src/libraries/System.Private.Xml/tests/Readers/SubtreeReader/Configurations.props b/src/libraries/System.Private.Xml/tests/Readers/SubtreeReader/Configurations.props index 89d6ac0f025b9..b6e0d3ce6383b 100644 --- a/src/libraries/System.Private.Xml/tests/Readers/SubtreeReader/Configurations.props +++ b/src/libraries/System.Private.Xml/tests/Readers/SubtreeReader/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Private.Xml/tests/Readers/SubtreeReader/System.Xml.RW.SubtreeReader.Tests.csproj b/src/libraries/System.Private.Xml/tests/Readers/SubtreeReader/System.Xml.RW.SubtreeReader.Tests.csproj index 1c35b276a79fd..4df5425f9e488 100644 --- a/src/libraries/System.Private.Xml/tests/Readers/SubtreeReader/System.Xml.RW.SubtreeReader.Tests.csproj +++ b/src/libraries/System.Private.Xml/tests/Readers/SubtreeReader/System.Xml.RW.SubtreeReader.Tests.csproj @@ -1,6 +1,6 @@ - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release diff --git a/src/libraries/System.Private.Xml/tests/Readers/WrappedReader/Configurations.props b/src/libraries/System.Private.Xml/tests/Readers/WrappedReader/Configurations.props index 89d6ac0f025b9..b6e0d3ce6383b 100644 --- a/src/libraries/System.Private.Xml/tests/Readers/WrappedReader/Configurations.props +++ b/src/libraries/System.Private.Xml/tests/Readers/WrappedReader/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Private.Xml/tests/Readers/WrappedReader/System.Xml.RW.WrappedReader.Tests.csproj b/src/libraries/System.Private.Xml/tests/Readers/WrappedReader/System.Xml.RW.WrappedReader.Tests.csproj index a6b4000266518..70c30798de86e 100644 --- a/src/libraries/System.Private.Xml/tests/Readers/WrappedReader/System.Xml.RW.WrappedReader.Tests.csproj +++ b/src/libraries/System.Private.Xml/tests/Readers/WrappedReader/System.Xml.RW.WrappedReader.Tests.csproj @@ -1,6 +1,6 @@ - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release diff --git a/src/libraries/System.Private.Xml/tests/Writers/RwFactory/Configurations.props b/src/libraries/System.Private.Xml/tests/Writers/RwFactory/Configurations.props index 89d6ac0f025b9..b6e0d3ce6383b 100644 --- a/src/libraries/System.Private.Xml/tests/Writers/RwFactory/Configurations.props +++ b/src/libraries/System.Private.Xml/tests/Writers/RwFactory/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Private.Xml/tests/Writers/RwFactory/System.Xml.RW.RwFactory.Tests.csproj b/src/libraries/System.Private.Xml/tests/Writers/RwFactory/System.Xml.RW.RwFactory.Tests.csproj index 6da209fa75a9e..cd7da40ce3654 100644 --- a/src/libraries/System.Private.Xml/tests/Writers/RwFactory/System.Xml.RW.RwFactory.Tests.csproj +++ b/src/libraries/System.Private.Xml/tests/Writers/RwFactory/System.Xml.RW.RwFactory.Tests.csproj @@ -1,6 +1,6 @@ - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release diff --git a/src/libraries/System.Private.Xml/tests/Writers/XmlWriterApi/Configurations.props b/src/libraries/System.Private.Xml/tests/Writers/XmlWriterApi/Configurations.props index 89d6ac0f025b9..b6e0d3ce6383b 100644 --- a/src/libraries/System.Private.Xml/tests/Writers/XmlWriterApi/Configurations.props +++ b/src/libraries/System.Private.Xml/tests/Writers/XmlWriterApi/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file 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 a91bb90dc3ad3..9bacce5c89cb2 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 @@ -1,6 +1,6 @@ - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release diff --git a/src/libraries/System.Private.Xml/tests/XPath/XPathDocument/Configurations.props b/src/libraries/System.Private.Xml/tests/XPath/XPathDocument/Configurations.props index 89d6ac0f025b9..b6e0d3ce6383b 100644 --- a/src/libraries/System.Private.Xml/tests/XPath/XPathDocument/Configurations.props +++ b/src/libraries/System.Private.Xml/tests/XPath/XPathDocument/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Private.Xml/tests/XPath/XPathDocument/System.Xml.XPath.Tests.csproj b/src/libraries/System.Private.Xml/tests/XPath/XPathDocument/System.Xml.XPath.Tests.csproj index 2c9db937d1221..61598a1c49b49 100644 --- a/src/libraries/System.Private.Xml/tests/XPath/XPathDocument/System.Xml.XPath.Tests.csproj +++ b/src/libraries/System.Private.Xml/tests/XPath/XPathDocument/System.Xml.XPath.Tests.csproj @@ -3,7 +3,7 @@ $(DefineConstants);FEATURE_XML_XPATH_ID System.Xml.XPath.Tests - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release $(CommonPath)System\Xml\XPath diff --git a/src/libraries/System.Private.Xml/tests/XPath/XmlDocument/Configurations.props b/src/libraries/System.Private.Xml/tests/XPath/XmlDocument/Configurations.props index 89d6ac0f025b9..b6e0d3ce6383b 100644 --- a/src/libraries/System.Private.Xml/tests/XPath/XmlDocument/Configurations.props +++ b/src/libraries/System.Private.Xml/tests/XPath/XmlDocument/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Private.Xml/tests/XPath/XmlDocument/System.Xml.XPath.XmlDocument.Tests.csproj b/src/libraries/System.Private.Xml/tests/XPath/XmlDocument/System.Xml.XPath.XmlDocument.Tests.csproj index b5af84feec532..1bc197733199f 100644 --- a/src/libraries/System.Private.Xml/tests/XPath/XmlDocument/System.Xml.XPath.XmlDocument.Tests.csproj +++ b/src/libraries/System.Private.Xml/tests/XPath/XmlDocument/System.Xml.XPath.XmlDocument.Tests.csproj @@ -3,7 +3,7 @@ $(DefineConstants);FEATURE_XML_XPATH_ID System.Xml.XPath.XmlDocument.Tests - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release $(CommonPath)System\Xml\XPath diff --git a/src/libraries/System.Private.Xml/tests/XmlConvert/Configurations.props b/src/libraries/System.Private.Xml/tests/XmlConvert/Configurations.props index 89d6ac0f025b9..b6e0d3ce6383b 100644 --- a/src/libraries/System.Private.Xml/tests/XmlConvert/Configurations.props +++ b/src/libraries/System.Private.Xml/tests/XmlConvert/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Private.Xml/tests/XmlConvert/System.Xml.RW.XmlConvert.Tests.csproj b/src/libraries/System.Private.Xml/tests/XmlConvert/System.Xml.RW.XmlConvert.Tests.csproj index 91284c5317fed..8908d55cf5fa6 100644 --- a/src/libraries/System.Private.Xml/tests/XmlConvert/System.Xml.RW.XmlConvert.Tests.csproj +++ b/src/libraries/System.Private.Xml/tests/XmlConvert/System.Xml.RW.XmlConvert.Tests.csproj @@ -1,6 +1,6 @@ - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release diff --git a/src/libraries/System.Private.Xml/tests/XmlDocument/Configurations.props b/src/libraries/System.Private.Xml/tests/XmlDocument/Configurations.props index 89d6ac0f025b9..b6e0d3ce6383b 100644 --- a/src/libraries/System.Private.Xml/tests/XmlDocument/Configurations.props +++ b/src/libraries/System.Private.Xml/tests/XmlDocument/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Private.Xml/tests/XmlDocument/System.Xml.XmlDocument.Tests.csproj b/src/libraries/System.Private.Xml/tests/XmlDocument/System.Xml.XmlDocument.Tests.csproj index 14a52a28b3815..0b573fd7ab9bf 100644 --- a/src/libraries/System.Private.Xml/tests/XmlDocument/System.Xml.XmlDocument.Tests.csproj +++ b/src/libraries/System.Private.Xml/tests/XmlDocument/System.Xml.XmlDocument.Tests.csproj @@ -1,7 +1,7 @@ - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release diff --git a/src/libraries/System.Private.Xml/tests/XmlNodeReader/System.Xml.XmlNodeReader.Tests/Configurations.props b/src/libraries/System.Private.Xml/tests/XmlNodeReader/System.Xml.XmlNodeReader.Tests/Configurations.props index 89d6ac0f025b9..b6e0d3ce6383b 100644 --- a/src/libraries/System.Private.Xml/tests/XmlNodeReader/System.Xml.XmlNodeReader.Tests/Configurations.props +++ b/src/libraries/System.Private.Xml/tests/XmlNodeReader/System.Xml.XmlNodeReader.Tests/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Private.Xml/tests/XmlNodeReader/System.Xml.XmlNodeReader.Tests/System.Xml.XmlNodeReader.Tests.csproj b/src/libraries/System.Private.Xml/tests/XmlNodeReader/System.Xml.XmlNodeReader.Tests/System.Xml.XmlNodeReader.Tests.csproj index 11e38e7a22fad..ece9c9e5b07cf 100644 --- a/src/libraries/System.Private.Xml/tests/XmlNodeReader/System.Xml.XmlNodeReader.Tests/System.Xml.XmlNodeReader.Tests.csproj +++ b/src/libraries/System.Private.Xml/tests/XmlNodeReader/System.Xml.XmlNodeReader.Tests/System.Xml.XmlNodeReader.Tests.csproj @@ -1,7 +1,7 @@  - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release diff --git a/src/libraries/System.Private.Xml/tests/XmlReader/ReadContentAs/Configurations.props b/src/libraries/System.Private.Xml/tests/XmlReader/ReadContentAs/Configurations.props index 89d6ac0f025b9..b6e0d3ce6383b 100644 --- a/src/libraries/System.Private.Xml/tests/XmlReader/ReadContentAs/Configurations.props +++ b/src/libraries/System.Private.Xml/tests/XmlReader/ReadContentAs/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Private.Xml/tests/XmlReader/ReadContentAs/System.Xml.RW.XmlReader.ReadContentAs.Tests.csproj b/src/libraries/System.Private.Xml/tests/XmlReader/ReadContentAs/System.Xml.RW.XmlReader.ReadContentAs.Tests.csproj index 28b3ad133c196..8b8c09ed3c212 100644 --- a/src/libraries/System.Private.Xml/tests/XmlReader/ReadContentAs/System.Xml.RW.XmlReader.ReadContentAs.Tests.csproj +++ b/src/libraries/System.Private.Xml/tests/XmlReader/ReadContentAs/System.Xml.RW.XmlReader.ReadContentAs.Tests.csproj @@ -1,6 +1,6 @@ - netcoreapp-Debug;netcoreapp-Release + $(TargetFrameworkVNext)-Debug;$(TargetFrameworkVNext)-Release diff --git a/src/libraries/System.Private.Xml/tests/XmlReader/Tests/Configurations.props b/src/libraries/System.Private.Xml/tests/XmlReader/Tests/Configurations.props index 89d6ac0f025b9..b6e0d3ce6383b 100644 --- a/src/libraries/System.Private.Xml/tests/XmlReader/Tests/Configurations.props +++ b/src/libraries/System.Private.Xml/tests/XmlReader/Tests/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Private.Xml/tests/XmlReader/Tests/System.Xml.RW.XmlReader.Tests.csproj b/src/libraries/System.Private.Xml/tests/XmlReader/Tests/System.Xml.RW.XmlReader.Tests.csproj index 2a5d83c4a7e70..0af6ff820dadd 100644 --- a/src/libraries/System.Private.Xml/tests/XmlReader/Tests/System.Xml.RW.XmlReader.Tests.csproj +++ b/src/libraries/System.Private.Xml/tests/XmlReader/Tests/System.Xml.RW.XmlReader.Tests.csproj @@ -1,6 +1,6 @@  - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release diff --git a/src/libraries/System.Private.Xml/tests/XmlReader/XmlResolver/Configurations.props b/src/libraries/System.Private.Xml/tests/XmlReader/XmlResolver/Configurations.props index 89d6ac0f025b9..b6e0d3ce6383b 100644 --- a/src/libraries/System.Private.Xml/tests/XmlReader/XmlResolver/Configurations.props +++ b/src/libraries/System.Private.Xml/tests/XmlReader/XmlResolver/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Private.Xml/tests/XmlReader/XmlResolver/System.Xml.RW.XmlSystemPathResolver.Tests.csproj b/src/libraries/System.Private.Xml/tests/XmlReader/XmlResolver/System.Xml.RW.XmlSystemPathResolver.Tests.csproj index 3c808fef2bd1d..3f93c89fcd433 100644 --- a/src/libraries/System.Private.Xml/tests/XmlReader/XmlResolver/System.Xml.RW.XmlSystemPathResolver.Tests.csproj +++ b/src/libraries/System.Private.Xml/tests/XmlReader/XmlResolver/System.Xml.RW.XmlSystemPathResolver.Tests.csproj @@ -1,6 +1,6 @@ - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release diff --git a/src/libraries/System.Private.Xml/tests/XmlReaderLib/Configurations.props b/src/libraries/System.Private.Xml/tests/XmlReaderLib/Configurations.props index 89d6ac0f025b9..b6e0d3ce6383b 100644 --- a/src/libraries/System.Private.Xml/tests/XmlReaderLib/Configurations.props +++ b/src/libraries/System.Private.Xml/tests/XmlReaderLib/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Private.Xml/tests/XmlReaderLib/System.Xml.RW.XmlReaderLib.csproj b/src/libraries/System.Private.Xml/tests/XmlReaderLib/System.Xml.RW.XmlReaderLib.csproj index a8d9c1d40b516..4dac5bcbdea49 100644 --- a/src/libraries/System.Private.Xml/tests/XmlReaderLib/System.Xml.RW.XmlReaderLib.csproj +++ b/src/libraries/System.Private.Xml/tests/XmlReaderLib/System.Xml.RW.XmlReaderLib.csproj @@ -1,7 +1,7 @@ XmlReaderTest.Common - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release diff --git a/src/libraries/System.Private.Xml/tests/XmlResolver/System.Xml.XmlResolver.Tests/Configurations.props b/src/libraries/System.Private.Xml/tests/XmlResolver/System.Xml.XmlResolver.Tests/Configurations.props index 89d6ac0f025b9..b6e0d3ce6383b 100644 --- a/src/libraries/System.Private.Xml/tests/XmlResolver/System.Xml.XmlResolver.Tests/Configurations.props +++ b/src/libraries/System.Private.Xml/tests/XmlResolver/System.Xml.XmlResolver.Tests/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Private.Xml/tests/XmlResolver/System.Xml.XmlResolver.Tests/System.Xml.XmlResolver.Tests.csproj b/src/libraries/System.Private.Xml/tests/XmlResolver/System.Xml.XmlResolver.Tests/System.Xml.XmlResolver.Tests.csproj index 53ceab7a71cfa..c7cf997402214 100644 --- a/src/libraries/System.Private.Xml/tests/XmlResolver/System.Xml.XmlResolver.Tests/System.Xml.XmlResolver.Tests.csproj +++ b/src/libraries/System.Private.Xml/tests/XmlResolver/System.Xml.XmlResolver.Tests/System.Xml.XmlResolver.Tests.csproj @@ -1,7 +1,7 @@  - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release diff --git a/src/libraries/System.Private.Xml/tests/XmlSchema/XmlSchemaSet/Configurations.props b/src/libraries/System.Private.Xml/tests/XmlSchema/XmlSchemaSet/Configurations.props index 89d6ac0f025b9..b6e0d3ce6383b 100644 --- a/src/libraries/System.Private.Xml/tests/XmlSchema/XmlSchemaSet/Configurations.props +++ b/src/libraries/System.Private.Xml/tests/XmlSchema/XmlSchemaSet/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Private.Xml/tests/XmlSchema/XmlSchemaSet/System.Xml.XmlSchemaSet.Tests.csproj b/src/libraries/System.Private.Xml/tests/XmlSchema/XmlSchemaSet/System.Xml.XmlSchemaSet.Tests.csproj index 86e10b295087e..c14cc67e2aeb1 100644 --- a/src/libraries/System.Private.Xml/tests/XmlSchema/XmlSchemaSet/System.Xml.XmlSchemaSet.Tests.csproj +++ b/src/libraries/System.Private.Xml/tests/XmlSchema/XmlSchemaSet/System.Xml.XmlSchemaSet.Tests.csproj @@ -1,6 +1,6 @@ - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release diff --git a/src/libraries/System.Private.Xml/tests/XmlSchema/XmlSchemaValidatorApi/Configurations.props b/src/libraries/System.Private.Xml/tests/XmlSchema/XmlSchemaValidatorApi/Configurations.props index 89d6ac0f025b9..b6e0d3ce6383b 100644 --- a/src/libraries/System.Private.Xml/tests/XmlSchema/XmlSchemaValidatorApi/Configurations.props +++ b/src/libraries/System.Private.Xml/tests/XmlSchema/XmlSchemaValidatorApi/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Private.Xml/tests/XmlSchema/XmlSchemaValidatorApi/System.Xml.XmlSchema.XmlSchemaValidatorApi.Tests.csproj b/src/libraries/System.Private.Xml/tests/XmlSchema/XmlSchemaValidatorApi/System.Xml.XmlSchema.XmlSchemaValidatorApi.Tests.csproj index 17486d9f818d9..7bc48bab6d855 100644 --- a/src/libraries/System.Private.Xml/tests/XmlSchema/XmlSchemaValidatorApi/System.Xml.XmlSchema.XmlSchemaValidatorApi.Tests.csproj +++ b/src/libraries/System.Private.Xml/tests/XmlSchema/XmlSchemaValidatorApi/System.Xml.XmlSchema.XmlSchemaValidatorApi.Tests.csproj @@ -1,6 +1,6 @@ - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release diff --git a/src/libraries/System.Private.Xml/tests/XmlSerializer/Configurations.props b/src/libraries/System.Private.Xml/tests/XmlSerializer/Configurations.props index 89d6ac0f025b9..b6e0d3ce6383b 100644 --- a/src/libraries/System.Private.Xml/tests/XmlSerializer/Configurations.props +++ b/src/libraries/System.Private.Xml/tests/XmlSerializer/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Private.Xml/tests/XmlSerializer/ReflectionOnly/Configurations.props b/src/libraries/System.Private.Xml/tests/XmlSerializer/ReflectionOnly/Configurations.props index 7997802166c60..4fead5c4154c3 100644 --- a/src/libraries/System.Private.Xml/tests/XmlSerializer/ReflectionOnly/Configurations.props +++ b/src/libraries/System.Private.Xml/tests/XmlSerializer/ReflectionOnly/Configurations.props @@ -1,7 +1,7 @@ - netcoreapp; + $(NetCoreAppCurrent); diff --git a/src/libraries/System.Private.Xml/tests/XmlSerializer/ReflectionOnly/System.Xml.XmlSerializer.ReflectionOnly.Tests.csproj b/src/libraries/System.Private.Xml/tests/XmlSerializer/ReflectionOnly/System.Xml.XmlSerializer.ReflectionOnly.Tests.csproj index 7e018919ada3f..d7bc135550514 100644 --- a/src/libraries/System.Private.Xml/tests/XmlSerializer/ReflectionOnly/System.Xml.XmlSerializer.ReflectionOnly.Tests.csproj +++ b/src/libraries/System.Private.Xml/tests/XmlSerializer/ReflectionOnly/System.Xml.XmlSerializer.ReflectionOnly.Tests.csproj @@ -1,7 +1,7 @@ $(DefineConstants);ReflectionOnly - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release diff --git a/src/libraries/System.Private.Xml/tests/XmlSerializer/System.Xml.XmlSerializer.Tests.csproj b/src/libraries/System.Private.Xml/tests/XmlSerializer/System.Xml.XmlSerializer.Tests.csproj index 9e0e1f4c5c48b..2385c476b0d9e 100644 --- a/src/libraries/System.Private.Xml/tests/XmlSerializer/System.Xml.XmlSerializer.Tests.csproj +++ b/src/libraries/System.Private.Xml/tests/XmlSerializer/System.Xml.XmlSerializer.Tests.csproj @@ -1,6 +1,6 @@ - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release diff --git a/src/libraries/System.Private.Xml/tests/XmlWriter/Configurations.props b/src/libraries/System.Private.Xml/tests/XmlWriter/Configurations.props index 89d6ac0f025b9..b6e0d3ce6383b 100644 --- a/src/libraries/System.Private.Xml/tests/XmlWriter/Configurations.props +++ b/src/libraries/System.Private.Xml/tests/XmlWriter/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Private.Xml/tests/XmlWriter/System.Xml.RW.XmlWriter.Tests.csproj b/src/libraries/System.Private.Xml/tests/XmlWriter/System.Xml.RW.XmlWriter.Tests.csproj index a5e77b1c47db9..230926b9e5608 100644 --- a/src/libraries/System.Private.Xml/tests/XmlWriter/System.Xml.RW.XmlWriter.Tests.csproj +++ b/src/libraries/System.Private.Xml/tests/XmlWriter/System.Xml.RW.XmlWriter.Tests.csproj @@ -1,6 +1,6 @@ - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release diff --git a/src/libraries/System.Private.Xml/tests/Xslt/XslCompiledTransformApi/Configurations.props b/src/libraries/System.Private.Xml/tests/Xslt/XslCompiledTransformApi/Configurations.props index 89d6ac0f025b9..b6e0d3ce6383b 100644 --- a/src/libraries/System.Private.Xml/tests/Xslt/XslCompiledTransformApi/Configurations.props +++ b/src/libraries/System.Private.Xml/tests/Xslt/XslCompiledTransformApi/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Private.Xml/tests/Xslt/XslCompiledTransformApi/System.Xml.Xsl.XslCompiledTransformApi.Tests.csproj b/src/libraries/System.Private.Xml/tests/Xslt/XslCompiledTransformApi/System.Xml.Xsl.XslCompiledTransformApi.Tests.csproj index 6e1f0c1b472b7..31831de679dcb 100644 --- a/src/libraries/System.Private.Xml/tests/Xslt/XslCompiledTransformApi/System.Xml.Xsl.XslCompiledTransformApi.Tests.csproj +++ b/src/libraries/System.Private.Xml/tests/Xslt/XslCompiledTransformApi/System.Xml.Xsl.XslCompiledTransformApi.Tests.csproj @@ -1,6 +1,6 @@ - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release diff --git a/src/libraries/System.Private.Xml/tests/Xslt/XslTransformApi/Configurations.props b/src/libraries/System.Private.Xml/tests/Xslt/XslTransformApi/Configurations.props index 89d6ac0f025b9..b6e0d3ce6383b 100644 --- a/src/libraries/System.Private.Xml/tests/Xslt/XslTransformApi/Configurations.props +++ b/src/libraries/System.Private.Xml/tests/Xslt/XslTransformApi/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Private.Xml/tests/Xslt/XslTransformApi/System.Xml.Xsl.XslTransformApi.Tests.csproj b/src/libraries/System.Private.Xml/tests/Xslt/XslTransformApi/System.Xml.Xsl.XslTransformApi.Tests.csproj index 41884f47c8438..df561579f57db 100644 --- a/src/libraries/System.Private.Xml/tests/Xslt/XslTransformApi/System.Xml.Xsl.XslTransformApi.Tests.csproj +++ b/src/libraries/System.Private.Xml/tests/Xslt/XslTransformApi/System.Xml.Xsl.XslTransformApi.Tests.csproj @@ -1,6 +1,6 @@ - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release diff --git a/src/libraries/System.Private.Xml/tests/Xslt/XsltCompiler/Configurations.props b/src/libraries/System.Private.Xml/tests/Xslt/XsltCompiler/Configurations.props index 89d6ac0f025b9..b6e0d3ce6383b 100644 --- a/src/libraries/System.Private.Xml/tests/Xslt/XsltCompiler/Configurations.props +++ b/src/libraries/System.Private.Xml/tests/Xslt/XsltCompiler/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Private.Xml/tests/Xslt/XsltCompiler/XsltCompiler.Tests.csproj b/src/libraries/System.Private.Xml/tests/Xslt/XsltCompiler/XsltCompiler.Tests.csproj index 9faa086d473e4..0c38b5bc67394 100644 --- a/src/libraries/System.Private.Xml/tests/Xslt/XsltCompiler/XsltCompiler.Tests.csproj +++ b/src/libraries/System.Private.Xml/tests/Xslt/XsltCompiler/XsltCompiler.Tests.csproj @@ -1,6 +1,6 @@ - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release diff --git a/src/libraries/System.Reflection.Context/System.Reflection.Context.sln b/src/libraries/System.Reflection.Context/System.Reflection.Context.sln index 3e23545c130fa..805ccb852aa93 100644 --- a/src/libraries/System.Reflection.Context/System.Reflection.Context.sln +++ b/src/libraries/System.Reflection.Context/System.Reflection.Context.sln @@ -26,10 +26,10 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {6183784D-CF12-476F-BA5F-CFAFF1EF1BE3}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {6183784D-CF12-476F-BA5F-CFAFF1EF1BE3}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {6183784D-CF12-476F-BA5F-CFAFF1EF1BE3}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {6183784D-CF12-476F-BA5F-CFAFF1EF1BE3}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU + {6183784D-CF12-476F-BA5F-CFAFF1EF1BE3}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {6183784D-CF12-476F-BA5F-CFAFF1EF1BE3}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {6183784D-CF12-476F-BA5F-CFAFF1EF1BE3}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {6183784D-CF12-476F-BA5F-CFAFF1EF1BE3}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU {404DB891-B5AF-41E6-B89D-29E3F4573C4F}.Debug|Any CPU.ActiveCfg = netstandard2.0-Debug|Any CPU {404DB891-B5AF-41E6-B89D-29E3F4573C4F}.Debug|Any CPU.Build.0 = netstandard2.0-Debug|Any CPU {404DB891-B5AF-41E6-B89D-29E3F4573C4F}.Release|Any CPU.ActiveCfg = netstandard2.0-Release|Any CPU diff --git a/src/libraries/System.Reflection.Context/tests/Configurations.props b/src/libraries/System.Reflection.Context/tests/Configurations.props index 55d2de1d23f8d..7ac45c966c456 100644 --- a/src/libraries/System.Reflection.Context/tests/Configurations.props +++ b/src/libraries/System.Reflection.Context/tests/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Reflection.Context/tests/System.Reflection.Context.Tests.csproj b/src/libraries/System.Reflection.Context/tests/System.Reflection.Context.Tests.csproj index 8718d63c952ef..fcf1b3fbb6751 100644 --- a/src/libraries/System.Reflection.Context/tests/System.Reflection.Context.Tests.csproj +++ b/src/libraries/System.Reflection.Context/tests/System.Reflection.Context.Tests.csproj @@ -1,6 +1,6 @@ - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release diff --git a/src/libraries/System.Reflection.DispatchProxy/System.Reflection.DispatchProxy.sln b/src/libraries/System.Reflection.DispatchProxy/System.Reflection.DispatchProxy.sln index b2fac594478d7..0e7a035beeb5d 100644 --- a/src/libraries/System.Reflection.DispatchProxy/System.Reflection.DispatchProxy.sln +++ b/src/libraries/System.Reflection.DispatchProxy/System.Reflection.DispatchProxy.sln @@ -26,18 +26,18 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {089444FE-8FF5-4D8F-A51B-32D026425F6B}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {089444FE-8FF5-4D8F-A51B-32D026425F6B}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {089444FE-8FF5-4D8F-A51B-32D026425F6B}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {089444FE-8FF5-4D8F-A51B-32D026425F6B}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU - {1E689C1B-690C-4799-BDE9-6E7990585894}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {1E689C1B-690C-4799-BDE9-6E7990585894}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {1E689C1B-690C-4799-BDE9-6E7990585894}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {1E689C1B-690C-4799-BDE9-6E7990585894}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU - {7DF3C428-AAD6-41C7-98E6-6CACFD5C391E}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {7DF3C428-AAD6-41C7-98E6-6CACFD5C391E}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {7DF3C428-AAD6-41C7-98E6-6CACFD5C391E}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {7DF3C428-AAD6-41C7-98E6-6CACFD5C391E}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU + {089444FE-8FF5-4D8F-A51B-32D026425F6B}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {089444FE-8FF5-4D8F-A51B-32D026425F6B}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {089444FE-8FF5-4D8F-A51B-32D026425F6B}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {089444FE-8FF5-4D8F-A51B-32D026425F6B}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU + {1E689C1B-690C-4799-BDE9-6E7990585894}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {1E689C1B-690C-4799-BDE9-6E7990585894}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {1E689C1B-690C-4799-BDE9-6E7990585894}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {1E689C1B-690C-4799-BDE9-6E7990585894}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU + {7DF3C428-AAD6-41C7-98E6-6CACFD5C391E}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {7DF3C428-AAD6-41C7-98E6-6CACFD5C391E}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {7DF3C428-AAD6-41C7-98E6-6CACFD5C391E}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {7DF3C428-AAD6-41C7-98E6-6CACFD5C391E}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/src/libraries/System.Reflection.DispatchProxy/ref/Configurations.props b/src/libraries/System.Reflection.DispatchProxy/ref/Configurations.props index 695058bd9c8b7..c11559c2e53db 100644 --- a/src/libraries/System.Reflection.DispatchProxy/ref/Configurations.props +++ b/src/libraries/System.Reflection.DispatchProxy/ref/Configurations.props @@ -5,7 +5,7 @@ $(PackageConfigurations) - netcoreapp; + $(NetCoreAppCurrent); diff --git a/src/libraries/System.Reflection.DispatchProxy/ref/System.Reflection.DispatchProxy.csproj b/src/libraries/System.Reflection.DispatchProxy/ref/System.Reflection.DispatchProxy.csproj index ec1035f0cc775..bc74ed24c0263 100644 --- a/src/libraries/System.Reflection.DispatchProxy/ref/System.Reflection.DispatchProxy.csproj +++ b/src/libraries/System.Reflection.DispatchProxy/ref/System.Reflection.DispatchProxy.csproj @@ -1,6 +1,6 @@ - netcoreapp-Debug;netcoreapp-Release;netstandard2.0-Debug;netstandard2.0-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release;netstandard2.0-Debug;netstandard2.0-Release enable diff --git a/src/libraries/System.Reflection.DispatchProxy/src/Configurations.props b/src/libraries/System.Reflection.DispatchProxy/src/Configurations.props index 3061f2a047336..6cb08340f454c 100644 --- a/src/libraries/System.Reflection.DispatchProxy/src/Configurations.props +++ b/src/libraries/System.Reflection.DispatchProxy/src/Configurations.props @@ -7,8 +7,8 @@ $(PackageConfigurations); - netcoreapp; - netfx; + $(NetCoreAppCurrent); + $(NetFrameworkCurrent); diff --git a/src/libraries/System.Reflection.DispatchProxy/src/System.Reflection.DispatchProxy.csproj b/src/libraries/System.Reflection.DispatchProxy/src/System.Reflection.DispatchProxy.csproj index de82669dc5cff..3304b67f9b46c 100644 --- a/src/libraries/System.Reflection.DispatchProxy/src/System.Reflection.DispatchProxy.csproj +++ b/src/libraries/System.Reflection.DispatchProxy/src/System.Reflection.DispatchProxy.csproj @@ -3,7 +3,7 @@ true SR.PlatformNotSupported_ReflectionDispatchProxy - net461-Debug;net461-Release;netcoreapp-Debug;netcoreapp-Release;netcoreapp2.0-Debug;netcoreapp2.0-Release;netfx-Debug;netfx-Release;netstandard2.0-Debug;netstandard2.0-Release + net461-Debug;net461-Release;$(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release;netcoreapp2.0-Debug;netcoreapp2.0-Release;$(NetFrameworkCurrent)-Debug;$(NetFrameworkCurrent)-Release;netstandard2.0-Debug;netstandard2.0-Release enable diff --git a/src/libraries/System.Reflection.DispatchProxy/tests/Configurations.props b/src/libraries/System.Reflection.DispatchProxy/tests/Configurations.props index 1a037adc3e7c1..f550cb30c4afd 100644 --- a/src/libraries/System.Reflection.DispatchProxy/tests/Configurations.props +++ b/src/libraries/System.Reflection.DispatchProxy/tests/Configurations.props @@ -1,8 +1,8 @@  - netcoreapp; - netfx; + $(NetCoreAppCurrent); + $(NetFrameworkCurrent); \ No newline at end of file diff --git a/src/libraries/System.Reflection.DispatchProxy/tests/System.Reflection.DispatchProxy.Tests.csproj b/src/libraries/System.Reflection.DispatchProxy/tests/System.Reflection.DispatchProxy.Tests.csproj index 61d5318eaa427..78c2a8f219686 100644 --- a/src/libraries/System.Reflection.DispatchProxy/tests/System.Reflection.DispatchProxy.Tests.csproj +++ b/src/libraries/System.Reflection.DispatchProxy/tests/System.Reflection.DispatchProxy.Tests.csproj @@ -1,6 +1,6 @@ - netcoreapp-Debug;netcoreapp-Release;netfx-Debug;netfx-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release;$(NetFrameworkCurrent)-Debug;$(NetFrameworkCurrent)-Release diff --git a/src/libraries/System.Reflection.Emit.ILGeneration/System.Reflection.Emit.ILGeneration.sln b/src/libraries/System.Reflection.Emit.ILGeneration/System.Reflection.Emit.ILGeneration.sln index 201f681acdaa2..d656bc421704a 100644 --- a/src/libraries/System.Reflection.Emit.ILGeneration/System.Reflection.Emit.ILGeneration.sln +++ b/src/libraries/System.Reflection.Emit.ILGeneration/System.Reflection.Emit.ILGeneration.sln @@ -26,18 +26,18 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {FB037640-0591-4DF4-A331-0BEFE50A200B}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {FB037640-0591-4DF4-A331-0BEFE50A200B}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {FB037640-0591-4DF4-A331-0BEFE50A200B}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {FB037640-0591-4DF4-A331-0BEFE50A200B}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU - {8F05FFD6-6697-41CA-B733-709F5A6D3BF1}.Debug|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Debug|Any CPU - {8F05FFD6-6697-41CA-B733-709F5A6D3BF1}.Debug|Any CPU.Build.0 = netcoreapp-Windows_NT-Debug|Any CPU - {8F05FFD6-6697-41CA-B733-709F5A6D3BF1}.Release|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Release|Any CPU - {8F05FFD6-6697-41CA-B733-709F5A6D3BF1}.Release|Any CPU.Build.0 = netcoreapp-Windows_NT-Release|Any CPU - {D8763A34-58C6-4229-AD75-6980EF382294}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {D8763A34-58C6-4229-AD75-6980EF382294}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {D8763A34-58C6-4229-AD75-6980EF382294}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {D8763A34-58C6-4229-AD75-6980EF382294}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU + {FB037640-0591-4DF4-A331-0BEFE50A200B}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {FB037640-0591-4DF4-A331-0BEFE50A200B}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {FB037640-0591-4DF4-A331-0BEFE50A200B}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {FB037640-0591-4DF4-A331-0BEFE50A200B}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU + {8F05FFD6-6697-41CA-B733-709F5A6D3BF1}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Debug|Any CPU + {8F05FFD6-6697-41CA-B733-709F5A6D3BF1}.Debug|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Debug|Any CPU + {8F05FFD6-6697-41CA-B733-709F5A6D3BF1}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Release|Any CPU + {8F05FFD6-6697-41CA-B733-709F5A6D3BF1}.Release|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Release|Any CPU + {D8763A34-58C6-4229-AD75-6980EF382294}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {D8763A34-58C6-4229-AD75-6980EF382294}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {D8763A34-58C6-4229-AD75-6980EF382294}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {D8763A34-58C6-4229-AD75-6980EF382294}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/src/libraries/System.Reflection.Emit.ILGeneration/ref/Configurations.props b/src/libraries/System.Reflection.Emit.ILGeneration/ref/Configurations.props index 68bafe2df7f9e..a6e54763152f6 100644 --- a/src/libraries/System.Reflection.Emit.ILGeneration/ref/Configurations.props +++ b/src/libraries/System.Reflection.Emit.ILGeneration/ref/Configurations.props @@ -5,9 +5,9 @@ $(PackageConfigurations); - netcoreapp; - - _netfx; + $(NetCoreAppCurrent); + + _$(NetFrameworkCurrent); \ No newline at end of file diff --git a/src/libraries/System.Reflection.Emit.ILGeneration/ref/System.Reflection.Emit.ILGeneration.csproj b/src/libraries/System.Reflection.Emit.ILGeneration/ref/System.Reflection.Emit.ILGeneration.csproj index cba246439af86..5eacc5c933450 100644 --- a/src/libraries/System.Reflection.Emit.ILGeneration/ref/System.Reflection.Emit.ILGeneration.csproj +++ b/src/libraries/System.Reflection.Emit.ILGeneration/ref/System.Reflection.Emit.ILGeneration.csproj @@ -1,6 +1,6 @@ - netcoreapp-Debug;netcoreapp-Release;netstandard2.0-Debug;netstandard2.0-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release;netstandard2.0-Debug;netstandard2.0-Release enable diff --git a/src/libraries/System.Reflection.Emit.ILGeneration/src/Configurations.props b/src/libraries/System.Reflection.Emit.ILGeneration/src/Configurations.props index 4609ba0450302..8831f2e0e2441 100644 --- a/src/libraries/System.Reflection.Emit.ILGeneration/src/Configurations.props +++ b/src/libraries/System.Reflection.Emit.ILGeneration/src/Configurations.props @@ -5,8 +5,8 @@ netstandard1.0; - netcoreapp-Windows_NT; - netcoreapp-Unix; + $(NetCoreAppCurrent)-Windows_NT; + $(NetCoreAppCurrent)-Unix; $(PackageConfigurations); diff --git a/src/libraries/System.Reflection.Emit.ILGeneration/src/System.Reflection.Emit.ILGeneration.csproj b/src/libraries/System.Reflection.Emit.ILGeneration/src/System.Reflection.Emit.ILGeneration.csproj index 2d128cf3404bb..cf58d210454cd 100644 --- a/src/libraries/System.Reflection.Emit.ILGeneration/src/System.Reflection.Emit.ILGeneration.csproj +++ b/src/libraries/System.Reflection.Emit.ILGeneration/src/System.Reflection.Emit.ILGeneration.csproj @@ -4,7 +4,7 @@ true SR.PlatformNotSupported_RefEmitILGeneration $(IsPartialFacadeAssembly) - netcoreapp-Unix-Debug;netcoreapp-Unix-Release;netcoreapp-Windows_NT-Debug;netcoreapp-Windows_NT-Release;netstandard2.0-Debug;netstandard2.0-Release;netstandard1.0-Debug;netstandard1.0-Release + $(NetCoreAppCurrent)-Unix-Debug;$(NetCoreAppCurrent)-Unix-Release;$(NetCoreAppCurrent)-Windows_NT-Debug;$(NetCoreAppCurrent)-Windows_NT-Release;netstandard2.0-Debug;netstandard2.0-Release;netstandard1.0-Debug;netstandard1.0-Release enable diff --git a/src/libraries/System.Reflection.Emit.ILGeneration/tests/Configurations.props b/src/libraries/System.Reflection.Emit.ILGeneration/tests/Configurations.props index 55d2de1d23f8d..7ac45c966c456 100644 --- a/src/libraries/System.Reflection.Emit.ILGeneration/tests/Configurations.props +++ b/src/libraries/System.Reflection.Emit.ILGeneration/tests/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Reflection.Emit.ILGeneration/tests/System.Reflection.Emit.ILGeneration.Tests.csproj b/src/libraries/System.Reflection.Emit.ILGeneration/tests/System.Reflection.Emit.ILGeneration.Tests.csproj index ebc4ffe62b12f..f5dc108eb2f2c 100644 --- a/src/libraries/System.Reflection.Emit.ILGeneration/tests/System.Reflection.Emit.ILGeneration.Tests.csproj +++ b/src/libraries/System.Reflection.Emit.ILGeneration/tests/System.Reflection.Emit.ILGeneration.Tests.csproj @@ -1,6 +1,6 @@ - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release true diff --git a/src/libraries/System.Reflection.Emit.Lightweight/System.Reflection.Emit.Lightweight.sln b/src/libraries/System.Reflection.Emit.Lightweight/System.Reflection.Emit.Lightweight.sln index 2722531908fbd..bc3028f6bbf27 100644 --- a/src/libraries/System.Reflection.Emit.Lightweight/System.Reflection.Emit.Lightweight.sln +++ b/src/libraries/System.Reflection.Emit.Lightweight/System.Reflection.Emit.Lightweight.sln @@ -26,18 +26,18 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {C338DCF7-FB75-407B-A2ED-117FBF3AAA18}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {C338DCF7-FB75-407B-A2ED-117FBF3AAA18}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {C338DCF7-FB75-407B-A2ED-117FBF3AAA18}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {C338DCF7-FB75-407B-A2ED-117FBF3AAA18}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU - {FEF9FF32-8DE5-4C52-BC4E-8725A1FAA1E9}.Debug|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Debug|Any CPU - {FEF9FF32-8DE5-4C52-BC4E-8725A1FAA1E9}.Debug|Any CPU.Build.0 = netcoreapp-Windows_NT-Debug|Any CPU - {FEF9FF32-8DE5-4C52-BC4E-8725A1FAA1E9}.Release|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Release|Any CPU - {FEF9FF32-8DE5-4C52-BC4E-8725A1FAA1E9}.Release|Any CPU.Build.0 = netcoreapp-Windows_NT-Release|Any CPU - {293B8D9F-361F-4DED-B95E-3EB2D7C5FBAD}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {293B8D9F-361F-4DED-B95E-3EB2D7C5FBAD}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {293B8D9F-361F-4DED-B95E-3EB2D7C5FBAD}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {293B8D9F-361F-4DED-B95E-3EB2D7C5FBAD}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU + {C338DCF7-FB75-407B-A2ED-117FBF3AAA18}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {C338DCF7-FB75-407B-A2ED-117FBF3AAA18}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {C338DCF7-FB75-407B-A2ED-117FBF3AAA18}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {C338DCF7-FB75-407B-A2ED-117FBF3AAA18}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU + {FEF9FF32-8DE5-4C52-BC4E-8725A1FAA1E9}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Debug|Any CPU + {FEF9FF32-8DE5-4C52-BC4E-8725A1FAA1E9}.Debug|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Debug|Any CPU + {FEF9FF32-8DE5-4C52-BC4E-8725A1FAA1E9}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Release|Any CPU + {FEF9FF32-8DE5-4C52-BC4E-8725A1FAA1E9}.Release|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Release|Any CPU + {293B8D9F-361F-4DED-B95E-3EB2D7C5FBAD}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {293B8D9F-361F-4DED-B95E-3EB2D7C5FBAD}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {293B8D9F-361F-4DED-B95E-3EB2D7C5FBAD}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {293B8D9F-361F-4DED-B95E-3EB2D7C5FBAD}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/src/libraries/System.Reflection.Emit.Lightweight/ref/Configurations.props b/src/libraries/System.Reflection.Emit.Lightweight/ref/Configurations.props index 68bafe2df7f9e..a6e54763152f6 100644 --- a/src/libraries/System.Reflection.Emit.Lightweight/ref/Configurations.props +++ b/src/libraries/System.Reflection.Emit.Lightweight/ref/Configurations.props @@ -5,9 +5,9 @@ $(PackageConfigurations); - netcoreapp; - - _netfx; + $(NetCoreAppCurrent); + + _$(NetFrameworkCurrent); \ No newline at end of file diff --git a/src/libraries/System.Reflection.Emit.Lightweight/ref/System.Reflection.Emit.Lightweight.csproj b/src/libraries/System.Reflection.Emit.Lightweight/ref/System.Reflection.Emit.Lightweight.csproj index 7200f6dbe51b7..d515ef5790fa7 100644 --- a/src/libraries/System.Reflection.Emit.Lightweight/ref/System.Reflection.Emit.Lightweight.csproj +++ b/src/libraries/System.Reflection.Emit.Lightweight/ref/System.Reflection.Emit.Lightweight.csproj @@ -1,6 +1,6 @@ - netcoreapp-Debug;netcoreapp-Release;netstandard2.0-Debug;netstandard2.0-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release;netstandard2.0-Debug;netstandard2.0-Release true enable diff --git a/src/libraries/System.Reflection.Emit.Lightweight/src/Configurations.props b/src/libraries/System.Reflection.Emit.Lightweight/src/Configurations.props index 4609ba0450302..8831f2e0e2441 100644 --- a/src/libraries/System.Reflection.Emit.Lightweight/src/Configurations.props +++ b/src/libraries/System.Reflection.Emit.Lightweight/src/Configurations.props @@ -5,8 +5,8 @@ netstandard1.0; - netcoreapp-Windows_NT; - netcoreapp-Unix; + $(NetCoreAppCurrent)-Windows_NT; + $(NetCoreAppCurrent)-Unix; $(PackageConfigurations); diff --git a/src/libraries/System.Reflection.Emit.Lightweight/src/System.Reflection.Emit.Lightweight.csproj b/src/libraries/System.Reflection.Emit.Lightweight/src/System.Reflection.Emit.Lightweight.csproj index 3763c421fe561..3d1d4b74e3a62 100644 --- a/src/libraries/System.Reflection.Emit.Lightweight/src/System.Reflection.Emit.Lightweight.csproj +++ b/src/libraries/System.Reflection.Emit.Lightweight/src/System.Reflection.Emit.Lightweight.csproj @@ -5,7 +5,7 @@ true SR.PlatformNotSupported_RefEmitLightweight $(IsPartialFacadeAssembly) - netcoreapp-Unix-Debug;netcoreapp-Unix-Release;netcoreapp-Windows_NT-Debug;netcoreapp-Windows_NT-Release;netstandard2.0-Debug;netstandard2.0-Release;netstandard1.0-Debug;netstandard1.0-Release + $(NetCoreAppCurrent)-Unix-Debug;$(NetCoreAppCurrent)-Unix-Release;$(NetCoreAppCurrent)-Windows_NT-Debug;$(NetCoreAppCurrent)-Windows_NT-Release;netstandard2.0-Debug;netstandard2.0-Release;netstandard1.0-Debug;netstandard1.0-Release enable diff --git a/src/libraries/System.Reflection.Emit.Lightweight/tests/Configurations.props b/src/libraries/System.Reflection.Emit.Lightweight/tests/Configurations.props index 55d2de1d23f8d..7ac45c966c456 100644 --- a/src/libraries/System.Reflection.Emit.Lightweight/tests/Configurations.props +++ b/src/libraries/System.Reflection.Emit.Lightweight/tests/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Reflection.Emit.Lightweight/tests/System.Reflection.Emit.Lightweight.Tests.csproj b/src/libraries/System.Reflection.Emit.Lightweight/tests/System.Reflection.Emit.Lightweight.Tests.csproj index 15bb61d5e163a..c2226d25c0514 100644 --- a/src/libraries/System.Reflection.Emit.Lightweight/tests/System.Reflection.Emit.Lightweight.Tests.csproj +++ b/src/libraries/System.Reflection.Emit.Lightweight/tests/System.Reflection.Emit.Lightweight.Tests.csproj @@ -1,7 +1,7 @@ true - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release true diff --git a/src/libraries/System.Reflection.Emit/System.Reflection.Emit.sln b/src/libraries/System.Reflection.Emit/System.Reflection.Emit.sln index 99a449afdb77a..4a1001d66df79 100644 --- a/src/libraries/System.Reflection.Emit/System.Reflection.Emit.sln +++ b/src/libraries/System.Reflection.Emit/System.Reflection.Emit.sln @@ -26,18 +26,18 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {1104A263-331A-4CA0-B541-759BD20F7B1D}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {1104A263-331A-4CA0-B541-759BD20F7B1D}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {1104A263-331A-4CA0-B541-759BD20F7B1D}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {1104A263-331A-4CA0-B541-759BD20F7B1D}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU - {19D670F6-6029-43DB-9F43-CB291EB358F4}.Debug|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Debug|Any CPU - {19D670F6-6029-43DB-9F43-CB291EB358F4}.Debug|Any CPU.Build.0 = netcoreapp-Windows_NT-Debug|Any CPU - {19D670F6-6029-43DB-9F43-CB291EB358F4}.Release|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Release|Any CPU - {19D670F6-6029-43DB-9F43-CB291EB358F4}.Release|Any CPU.Build.0 = netcoreapp-Windows_NT-Release|Any CPU - {4FBD1556-7B96-414E-9EA4-85281956D60E}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {4FBD1556-7B96-414E-9EA4-85281956D60E}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {4FBD1556-7B96-414E-9EA4-85281956D60E}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {4FBD1556-7B96-414E-9EA4-85281956D60E}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU + {1104A263-331A-4CA0-B541-759BD20F7B1D}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {1104A263-331A-4CA0-B541-759BD20F7B1D}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {1104A263-331A-4CA0-B541-759BD20F7B1D}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {1104A263-331A-4CA0-B541-759BD20F7B1D}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU + {19D670F6-6029-43DB-9F43-CB291EB358F4}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Debug|Any CPU + {19D670F6-6029-43DB-9F43-CB291EB358F4}.Debug|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Debug|Any CPU + {19D670F6-6029-43DB-9F43-CB291EB358F4}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Release|Any CPU + {19D670F6-6029-43DB-9F43-CB291EB358F4}.Release|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Release|Any CPU + {4FBD1556-7B96-414E-9EA4-85281956D60E}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {4FBD1556-7B96-414E-9EA4-85281956D60E}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {4FBD1556-7B96-414E-9EA4-85281956D60E}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {4FBD1556-7B96-414E-9EA4-85281956D60E}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/src/libraries/System.Reflection.Emit/ref/Configurations.props b/src/libraries/System.Reflection.Emit/ref/Configurations.props index 68bafe2df7f9e..a6e54763152f6 100644 --- a/src/libraries/System.Reflection.Emit/ref/Configurations.props +++ b/src/libraries/System.Reflection.Emit/ref/Configurations.props @@ -5,9 +5,9 @@ $(PackageConfigurations); - netcoreapp; - - _netfx; + $(NetCoreAppCurrent); + + _$(NetFrameworkCurrent); \ No newline at end of file diff --git a/src/libraries/System.Reflection.Emit/ref/System.Reflection.Emit.csproj b/src/libraries/System.Reflection.Emit/ref/System.Reflection.Emit.csproj index 1637fce2f0e3b..c223f301e72e5 100644 --- a/src/libraries/System.Reflection.Emit/ref/System.Reflection.Emit.csproj +++ b/src/libraries/System.Reflection.Emit/ref/System.Reflection.Emit.csproj @@ -1,6 +1,6 @@ - netcoreapp-Debug;netcoreapp-Release;netstandard2.0-Debug;netstandard2.0-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release;netstandard2.0-Debug;netstandard2.0-Release enable diff --git a/src/libraries/System.Reflection.Emit/src/Configurations.props b/src/libraries/System.Reflection.Emit/src/Configurations.props index 9653f71bc62b2..9f7e388fdd821 100644 --- a/src/libraries/System.Reflection.Emit/src/Configurations.props +++ b/src/libraries/System.Reflection.Emit/src/Configurations.props @@ -5,8 +5,8 @@ netstandard1.1; - netcoreapp-Windows_NT; - netcoreapp-Unix; + $(NetCoreAppCurrent)-Windows_NT; + $(NetCoreAppCurrent)-Unix; $(PackageConfigurations); diff --git a/src/libraries/System.Reflection.Emit/src/System.Reflection.Emit.csproj b/src/libraries/System.Reflection.Emit/src/System.Reflection.Emit.csproj index d068dcfb7a592..62efb315bda4b 100644 --- a/src/libraries/System.Reflection.Emit/src/System.Reflection.Emit.csproj +++ b/src/libraries/System.Reflection.Emit/src/System.Reflection.Emit.csproj @@ -4,7 +4,7 @@ true SR.PlatformNotSupported_RefEmit $(IsPartialFacadeAssembly) - netcoreapp-Unix-Debug;netcoreapp-Unix-Release;netcoreapp-Windows_NT-Debug;netcoreapp-Windows_NT-Release;netstandard2.0-Debug;netstandard2.0-Release;netstandard1.1-Debug;netstandard1.1-Release + $(NetCoreAppCurrent)-Unix-Debug;$(NetCoreAppCurrent)-Unix-Release;$(NetCoreAppCurrent)-Windows_NT-Debug;$(NetCoreAppCurrent)-Windows_NT-Release;netstandard2.0-Debug;netstandard2.0-Release;netstandard1.1-Debug;netstandard1.1-Release enable diff --git a/src/libraries/System.Reflection.Emit/tests/Configurations.props b/src/libraries/System.Reflection.Emit/tests/Configurations.props index 55d2de1d23f8d..7ac45c966c456 100644 --- a/src/libraries/System.Reflection.Emit/tests/Configurations.props +++ b/src/libraries/System.Reflection.Emit/tests/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Reflection.Emit/tests/System.Reflection.Emit.Tests.csproj b/src/libraries/System.Reflection.Emit/tests/System.Reflection.Emit.Tests.csproj index 3b2680e173e96..1199277e4f024 100644 --- a/src/libraries/System.Reflection.Emit/tests/System.Reflection.Emit.Tests.csproj +++ b/src/libraries/System.Reflection.Emit/tests/System.Reflection.Emit.Tests.csproj @@ -1,6 +1,6 @@ - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release true diff --git a/src/libraries/System.Reflection.Extensions/System.Reflection.Extensions.sln b/src/libraries/System.Reflection.Extensions/System.Reflection.Extensions.sln index a8fcaefddb661..d2b947bd1dd2b 100644 --- a/src/libraries/System.Reflection.Extensions/System.Reflection.Extensions.sln +++ b/src/libraries/System.Reflection.Extensions/System.Reflection.Extensions.sln @@ -26,18 +26,18 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {A5E6F8C2-8E71-4148-8806-12FFBDBE2974}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {A5E6F8C2-8E71-4148-8806-12FFBDBE2974}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {A5E6F8C2-8E71-4148-8806-12FFBDBE2974}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {A5E6F8C2-8E71-4148-8806-12FFBDBE2974}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU - {26699AB1-DBAC-4819-A1C0-185AB37CF127}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {26699AB1-DBAC-4819-A1C0-185AB37CF127}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {26699AB1-DBAC-4819-A1C0-185AB37CF127}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {26699AB1-DBAC-4819-A1C0-185AB37CF127}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU - {72E89A6C-1F60-4170-AB7B-14AAD82E293D}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {72E89A6C-1F60-4170-AB7B-14AAD82E293D}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {72E89A6C-1F60-4170-AB7B-14AAD82E293D}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {72E89A6C-1F60-4170-AB7B-14AAD82E293D}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU + {A5E6F8C2-8E71-4148-8806-12FFBDBE2974}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {A5E6F8C2-8E71-4148-8806-12FFBDBE2974}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {A5E6F8C2-8E71-4148-8806-12FFBDBE2974}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {A5E6F8C2-8E71-4148-8806-12FFBDBE2974}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU + {26699AB1-DBAC-4819-A1C0-185AB37CF127}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {26699AB1-DBAC-4819-A1C0-185AB37CF127}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {26699AB1-DBAC-4819-A1C0-185AB37CF127}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {26699AB1-DBAC-4819-A1C0-185AB37CF127}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU + {72E89A6C-1F60-4170-AB7B-14AAD82E293D}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {72E89A6C-1F60-4170-AB7B-14AAD82E293D}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {72E89A6C-1F60-4170-AB7B-14AAD82E293D}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {72E89A6C-1F60-4170-AB7B-14AAD82E293D}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/src/libraries/System.Reflection.Extensions/ref/Configurations.props b/src/libraries/System.Reflection.Extensions/ref/Configurations.props index 55d2de1d23f8d..7ac45c966c456 100644 --- a/src/libraries/System.Reflection.Extensions/ref/Configurations.props +++ b/src/libraries/System.Reflection.Extensions/ref/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Reflection.Extensions/ref/System.Reflection.Extensions.csproj b/src/libraries/System.Reflection.Extensions/ref/System.Reflection.Extensions.csproj index 923eaab356c25..518f45df895c3 100644 --- a/src/libraries/System.Reflection.Extensions/ref/System.Reflection.Extensions.csproj +++ b/src/libraries/System.Reflection.Extensions/ref/System.Reflection.Extensions.csproj @@ -1,6 +1,6 @@ - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release diff --git a/src/libraries/System.Reflection.Extensions/src/Configurations.props b/src/libraries/System.Reflection.Extensions/src/Configurations.props index 19236e72c58fb..b79c1d7c3d9a0 100644 --- a/src/libraries/System.Reflection.Extensions/src/Configurations.props +++ b/src/libraries/System.Reflection.Extensions/src/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); diff --git a/src/libraries/System.Reflection.Extensions/src/System.Reflection.Extensions.csproj b/src/libraries/System.Reflection.Extensions/src/System.Reflection.Extensions.csproj index 38b330b5f744c..d318392dea583 100644 --- a/src/libraries/System.Reflection.Extensions/src/System.Reflection.Extensions.csproj +++ b/src/libraries/System.Reflection.Extensions/src/System.Reflection.Extensions.csproj @@ -2,7 +2,7 @@ System.Reflection.Extensions true - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release diff --git a/src/libraries/System.Reflection.Extensions/tests/Configurations.props b/src/libraries/System.Reflection.Extensions/tests/Configurations.props index 55d2de1d23f8d..7ac45c966c456 100644 --- a/src/libraries/System.Reflection.Extensions/tests/Configurations.props +++ b/src/libraries/System.Reflection.Extensions/tests/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Reflection.Extensions/tests/System.Reflection.Extensions.Tests.csproj b/src/libraries/System.Reflection.Extensions/tests/System.Reflection.Extensions.Tests.csproj index aab4562895c3a..ef9a008ddcc0c 100644 --- a/src/libraries/System.Reflection.Extensions/tests/System.Reflection.Extensions.Tests.csproj +++ b/src/libraries/System.Reflection.Extensions/tests/System.Reflection.Extensions.Tests.csproj @@ -1,6 +1,6 @@ - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release true diff --git a/src/libraries/System.Reflection.Metadata/System.Reflection.Metadata.sln b/src/libraries/System.Reflection.Metadata/System.Reflection.Metadata.sln index a0abbae409642..2350c03c5c15c 100644 --- a/src/libraries/System.Reflection.Metadata/System.Reflection.Metadata.sln +++ b/src/libraries/System.Reflection.Metadata/System.Reflection.Metadata.sln @@ -26,18 +26,18 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {7061832A-E8CF-4AB6-A8DC-44D2F5A43A13}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {7061832A-E8CF-4AB6-A8DC-44D2F5A43A13}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {7061832A-E8CF-4AB6-A8DC-44D2F5A43A13}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {7061832A-E8CF-4AB6-A8DC-44D2F5A43A13}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU - {F3E433C8-352F-4944-BF7F-765CE435370D}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {F3E433C8-352F-4944-BF7F-765CE435370D}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {F3E433C8-352F-4944-BF7F-765CE435370D}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {F3E433C8-352F-4944-BF7F-765CE435370D}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU - {69B25962-B4C2-4295-8809-5653CD03FC75}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {69B25962-B4C2-4295-8809-5653CD03FC75}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {69B25962-B4C2-4295-8809-5653CD03FC75}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {69B25962-B4C2-4295-8809-5653CD03FC75}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU + {7061832A-E8CF-4AB6-A8DC-44D2F5A43A13}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {7061832A-E8CF-4AB6-A8DC-44D2F5A43A13}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {7061832A-E8CF-4AB6-A8DC-44D2F5A43A13}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {7061832A-E8CF-4AB6-A8DC-44D2F5A43A13}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU + {F3E433C8-352F-4944-BF7F-765CE435370D}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {F3E433C8-352F-4944-BF7F-765CE435370D}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {F3E433C8-352F-4944-BF7F-765CE435370D}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {F3E433C8-352F-4944-BF7F-765CE435370D}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU + {69B25962-B4C2-4295-8809-5653CD03FC75}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {69B25962-B4C2-4295-8809-5653CD03FC75}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {69B25962-B4C2-4295-8809-5653CD03FC75}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {69B25962-B4C2-4295-8809-5653CD03FC75}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/src/libraries/System.Reflection.Metadata/ref/Configurations.props b/src/libraries/System.Reflection.Metadata/ref/Configurations.props index e52079078d3c7..64bee43c2ad4d 100644 --- a/src/libraries/System.Reflection.Metadata/ref/Configurations.props +++ b/src/libraries/System.Reflection.Metadata/ref/Configurations.props @@ -6,7 +6,7 @@ $(PackageConfigurations); - netcoreapp; + $(NetCoreAppCurrent); diff --git a/src/libraries/System.Reflection.Metadata/ref/System.Reflection.Metadata.csproj b/src/libraries/System.Reflection.Metadata/ref/System.Reflection.Metadata.csproj index 0279a62448804..fde9f2a591e92 100644 --- a/src/libraries/System.Reflection.Metadata/ref/System.Reflection.Metadata.csproj +++ b/src/libraries/System.Reflection.Metadata/ref/System.Reflection.Metadata.csproj @@ -2,7 +2,7 @@ true false - netcoreapp-Debug;netcoreapp-Release;netstandard2.0-Debug;netstandard2.0-Release;netstandard1.1-Debug;netstandard1.1-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release;netstandard2.0-Debug;netstandard2.0-Release;netstandard1.1-Debug;netstandard1.1-Release diff --git a/src/libraries/System.Reflection.Metadata/src/Configurations.props b/src/libraries/System.Reflection.Metadata/src/Configurations.props index e52079078d3c7..64bee43c2ad4d 100644 --- a/src/libraries/System.Reflection.Metadata/src/Configurations.props +++ b/src/libraries/System.Reflection.Metadata/src/Configurations.props @@ -6,7 +6,7 @@ $(PackageConfigurations); - netcoreapp; + $(NetCoreAppCurrent); diff --git a/src/libraries/System.Reflection.Metadata/src/System.Reflection.Metadata.csproj b/src/libraries/System.Reflection.Metadata/src/System.Reflection.Metadata.csproj index 19ca6c5c389e6..fcfb202a93f0b 100644 --- a/src/libraries/System.Reflection.Metadata/src/System.Reflection.Metadata.csproj +++ b/src/libraries/System.Reflection.Metadata/src/System.Reflection.Metadata.csproj @@ -5,7 +5,7 @@ en-US false netstandard1.1;portable-net45+win8 - netcoreapp-Debug;netcoreapp-Release;netstandard2.0-Debug;netstandard2.0-Release;netstandard1.1-Debug;netstandard1.1-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release;netstandard2.0-Debug;netstandard2.0-Release;netstandard1.1-Debug;netstandard1.1-Release diff --git a/src/libraries/System.Reflection.Metadata/tests/Configurations.props b/src/libraries/System.Reflection.Metadata/tests/Configurations.props index 1a037adc3e7c1..f550cb30c4afd 100644 --- a/src/libraries/System.Reflection.Metadata/tests/Configurations.props +++ b/src/libraries/System.Reflection.Metadata/tests/Configurations.props @@ -1,8 +1,8 @@  - netcoreapp; - netfx; + $(NetCoreAppCurrent); + $(NetFrameworkCurrent); \ No newline at end of file diff --git a/src/libraries/System.Reflection.Metadata/tests/System.Reflection.Metadata.Tests.csproj b/src/libraries/System.Reflection.Metadata/tests/System.Reflection.Metadata.Tests.csproj index 9f736adb37f0a..99b1c37336cb6 100644 --- a/src/libraries/System.Reflection.Metadata/tests/System.Reflection.Metadata.Tests.csproj +++ b/src/libraries/System.Reflection.Metadata/tests/System.Reflection.Metadata.Tests.csproj @@ -3,7 +3,7 @@ true false 436 - netcoreapp-Debug;netcoreapp-Release;netfx-Debug;netfx-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release;$(NetFrameworkCurrent)-Debug;$(NetFrameworkCurrent)-Release diff --git a/src/libraries/System.Reflection.MetadataLoadContext/System.Reflection.MetadataLoadContext.sln b/src/libraries/System.Reflection.MetadataLoadContext/System.Reflection.MetadataLoadContext.sln index 833c4f84febc3..f912e17d77049 100644 --- a/src/libraries/System.Reflection.MetadataLoadContext/System.Reflection.MetadataLoadContext.sln +++ b/src/libraries/System.Reflection.MetadataLoadContext/System.Reflection.MetadataLoadContext.sln @@ -26,14 +26,14 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {443B7659-B3FA-4B32-88BA-3A0517E21018}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {443B7659-B3FA-4B32-88BA-3A0517E21018}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {443B7659-B3FA-4B32-88BA-3A0517E21018}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {443B7659-B3FA-4B32-88BA-3A0517E21018}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU - {DBB18588-DD89-4F41-9852-484FD4726F0F}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {DBB18588-DD89-4F41-9852-484FD4726F0F}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {DBB18588-DD89-4F41-9852-484FD4726F0F}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {DBB18588-DD89-4F41-9852-484FD4726F0F}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU + {443B7659-B3FA-4B32-88BA-3A0517E21018}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {443B7659-B3FA-4B32-88BA-3A0517E21018}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {443B7659-B3FA-4B32-88BA-3A0517E21018}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {443B7659-B3FA-4B32-88BA-3A0517E21018}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU + {DBB18588-DD89-4F41-9852-484FD4726F0F}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {DBB18588-DD89-4F41-9852-484FD4726F0F}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {DBB18588-DD89-4F41-9852-484FD4726F0F}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {DBB18588-DD89-4F41-9852-484FD4726F0F}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU {EC84D608-71BC-4FE4-86C8-CA30F3B0CC7D}.Debug|Any CPU.ActiveCfg = netstandard2.0-Debug|Any CPU {EC84D608-71BC-4FE4-86C8-CA30F3B0CC7D}.Debug|Any CPU.Build.0 = netstandard2.0-Debug|Any CPU {EC84D608-71BC-4FE4-86C8-CA30F3B0CC7D}.Release|Any CPU.ActiveCfg = netstandard2.0-Release|Any CPU diff --git a/src/libraries/System.Reflection.MetadataLoadContext/src/Configurations.props b/src/libraries/System.Reflection.MetadataLoadContext/src/Configurations.props index e70c45072df39..c251fdc04f43f 100644 --- a/src/libraries/System.Reflection.MetadataLoadContext/src/Configurations.props +++ b/src/libraries/System.Reflection.MetadataLoadContext/src/Configurations.props @@ -6,7 +6,7 @@ $(PackageConfigurations); - netcoreapp; + $(NetCoreAppCurrent); diff --git a/src/libraries/System.Reflection.MetadataLoadContext/src/System.Reflection.MetadataLoadContext.csproj b/src/libraries/System.Reflection.MetadataLoadContext/src/System.Reflection.MetadataLoadContext.csproj index 9f6dc6f5085c2..241d33c70c39c 100644 --- a/src/libraries/System.Reflection.MetadataLoadContext/src/System.Reflection.MetadataLoadContext.csproj +++ b/src/libraries/System.Reflection.MetadataLoadContext/src/System.Reflection.MetadataLoadContext.csproj @@ -5,7 +5,7 @@ true $(NoWarn);CS1573 - netcoreapp-Debug;netcoreapp-Release;netcoreapp3.0-Debug;netcoreapp3.0-Release;netstandard2.0-Debug;netstandard2.0-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release;netcoreapp3.0-Debug;netcoreapp3.0-Release;netstandard2.0-Debug;netstandard2.0-Release diff --git a/src/libraries/System.Reflection.MetadataLoadContext/tests/Configurations.props b/src/libraries/System.Reflection.MetadataLoadContext/tests/Configurations.props index 1a037adc3e7c1..f550cb30c4afd 100644 --- a/src/libraries/System.Reflection.MetadataLoadContext/tests/Configurations.props +++ b/src/libraries/System.Reflection.MetadataLoadContext/tests/Configurations.props @@ -1,8 +1,8 @@  - netcoreapp; - netfx; + $(NetCoreAppCurrent); + $(NetFrameworkCurrent); \ No newline at end of file diff --git a/src/libraries/System.Reflection.MetadataLoadContext/tests/System.Reflection.MetadataLoadContext.Tests.csproj b/src/libraries/System.Reflection.MetadataLoadContext/tests/System.Reflection.MetadataLoadContext.Tests.csproj index 3e78bca6f2092..8e6f789527672 100644 --- a/src/libraries/System.Reflection.MetadataLoadContext/tests/System.Reflection.MetadataLoadContext.Tests.csproj +++ b/src/libraries/System.Reflection.MetadataLoadContext/tests/System.Reflection.MetadataLoadContext.Tests.csproj @@ -1,7 +1,7 @@ true - netcoreapp-Debug;netcoreapp-Release;netfx-Debug;netfx-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release;$(NetFrameworkCurrent)-Debug;$(NetFrameworkCurrent)-Release diff --git a/src/libraries/System.Reflection.Primitives/System.Reflection.Primitives.sln b/src/libraries/System.Reflection.Primitives/System.Reflection.Primitives.sln index 6415e49d20e0e..a380317c884cc 100644 --- a/src/libraries/System.Reflection.Primitives/System.Reflection.Primitives.sln +++ b/src/libraries/System.Reflection.Primitives/System.Reflection.Primitives.sln @@ -19,14 +19,14 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {CCE47F37-2C51-44EB-8F54-0474D7831515}.Debug|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Debug|Any CPU - {CCE47F37-2C51-44EB-8F54-0474D7831515}.Debug|Any CPU.Build.0 = netcoreapp-Windows_NT-Debug|Any CPU - {CCE47F37-2C51-44EB-8F54-0474D7831515}.Release|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Release|Any CPU - {CCE47F37-2C51-44EB-8F54-0474D7831515}.Release|Any CPU.Build.0 = netcoreapp-Windows_NT-Release|Any CPU - {F512184F-76E5-4AE5-8AB5-395AF9D18712}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {F512184F-76E5-4AE5-8AB5-395AF9D18712}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {F512184F-76E5-4AE5-8AB5-395AF9D18712}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {F512184F-76E5-4AE5-8AB5-395AF9D18712}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU + {CCE47F37-2C51-44EB-8F54-0474D7831515}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Debug|Any CPU + {CCE47F37-2C51-44EB-8F54-0474D7831515}.Debug|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Debug|Any CPU + {CCE47F37-2C51-44EB-8F54-0474D7831515}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Release|Any CPU + {CCE47F37-2C51-44EB-8F54-0474D7831515}.Release|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Release|Any CPU + {F512184F-76E5-4AE5-8AB5-395AF9D18712}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {F512184F-76E5-4AE5-8AB5-395AF9D18712}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {F512184F-76E5-4AE5-8AB5-395AF9D18712}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {F512184F-76E5-4AE5-8AB5-395AF9D18712}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/src/libraries/System.Reflection.Primitives/ref/Configurations.props b/src/libraries/System.Reflection.Primitives/ref/Configurations.props index 55d2de1d23f8d..7ac45c966c456 100644 --- a/src/libraries/System.Reflection.Primitives/ref/Configurations.props +++ b/src/libraries/System.Reflection.Primitives/ref/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Reflection.Primitives/ref/System.Reflection.Primitives.csproj b/src/libraries/System.Reflection.Primitives/ref/System.Reflection.Primitives.csproj index c521133e5403b..4e7be5bba8755 100644 --- a/src/libraries/System.Reflection.Primitives/ref/System.Reflection.Primitives.csproj +++ b/src/libraries/System.Reflection.Primitives/ref/System.Reflection.Primitives.csproj @@ -1,6 +1,6 @@ - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release enable diff --git a/src/libraries/System.Reflection.Primitives/src/Configurations.props b/src/libraries/System.Reflection.Primitives/src/Configurations.props index db389259c06b1..f3922475141ae 100644 --- a/src/libraries/System.Reflection.Primitives/src/Configurations.props +++ b/src/libraries/System.Reflection.Primitives/src/Configurations.props @@ -1,8 +1,8 @@  - netcoreapp-Windows_NT; - netcoreapp-Unix; + $(NetCoreAppCurrent)-Windows_NT; + $(NetCoreAppCurrent)-Unix; diff --git a/src/libraries/System.Reflection.Primitives/src/System.Reflection.Primitives.csproj b/src/libraries/System.Reflection.Primitives/src/System.Reflection.Primitives.csproj index 016f39db5848f..6882ffe73f106 100644 --- a/src/libraries/System.Reflection.Primitives/src/System.Reflection.Primitives.csproj +++ b/src/libraries/System.Reflection.Primitives/src/System.Reflection.Primitives.csproj @@ -2,7 +2,7 @@ System.Reflection.Primitives true - netcoreapp-Unix-Debug;netcoreapp-Unix-Release;netcoreapp-Windows_NT-Debug;netcoreapp-Windows_NT-Release + $(NetCoreAppCurrent)-Unix-Debug;$(NetCoreAppCurrent)-Unix-Release;$(NetCoreAppCurrent)-Windows_NT-Debug;$(NetCoreAppCurrent)-Windows_NT-Release diff --git a/src/libraries/System.Reflection.TypeExtensions/System.Reflection.TypeExtensions.sln b/src/libraries/System.Reflection.TypeExtensions/System.Reflection.TypeExtensions.sln index 1242730f44503..66006bb91d7a9 100644 --- a/src/libraries/System.Reflection.TypeExtensions/System.Reflection.TypeExtensions.sln +++ b/src/libraries/System.Reflection.TypeExtensions/System.Reflection.TypeExtensions.sln @@ -31,18 +31,18 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {EC8FFAA7-CA1E-4631-A375-D54B1FC764F6}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {EC8FFAA7-CA1E-4631-A375-D54B1FC764F6}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {EC8FFAA7-CA1E-4631-A375-D54B1FC764F6}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {EC8FFAA7-CA1E-4631-A375-D54B1FC764F6}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU + {EC8FFAA7-CA1E-4631-A375-D54B1FC764F6}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {EC8FFAA7-CA1E-4631-A375-D54B1FC764F6}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {EC8FFAA7-CA1E-4631-A375-D54B1FC764F6}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {EC8FFAA7-CA1E-4631-A375-D54B1FC764F6}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU {BED9F8D5-7420-404E-9EAD-D9148C16EAC1}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {BED9F8D5-7420-404E-9EAD-D9148C16EAC1}.Debug|Any CPU.Build.0 = Debug|Any CPU {BED9F8D5-7420-404E-9EAD-D9148C16EAC1}.Release|Any CPU.ActiveCfg = Release|Any CPU {BED9F8D5-7420-404E-9EAD-D9148C16EAC1}.Release|Any CPU.Build.0 = Release|Any CPU - {A9EF5E88-1AD9-4545-8AFE-CA0F5F00E2CB}.Debug|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Debug|Any CPU - {A9EF5E88-1AD9-4545-8AFE-CA0F5F00E2CB}.Debug|Any CPU.Build.0 = netcoreapp-Windows_NT-Debug|Any CPU - {A9EF5E88-1AD9-4545-8AFE-CA0F5F00E2CB}.Release|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Release|Any CPU - {A9EF5E88-1AD9-4545-8AFE-CA0F5F00E2CB}.Release|Any CPU.Build.0 = netcoreapp-Windows_NT-Release|Any CPU + {A9EF5E88-1AD9-4545-8AFE-CA0F5F00E2CB}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Debug|Any CPU + {A9EF5E88-1AD9-4545-8AFE-CA0F5F00E2CB}.Debug|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Debug|Any CPU + {A9EF5E88-1AD9-4545-8AFE-CA0F5F00E2CB}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Release|Any CPU + {A9EF5E88-1AD9-4545-8AFE-CA0F5F00E2CB}.Release|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Release|Any CPU {C303A051-8D54-4460-8BFD-DE10F0473BDB}.Debug|Any CPU.ActiveCfg = netstandard2.0-Debug|Any CPU {C303A051-8D54-4460-8BFD-DE10F0473BDB}.Debug|Any CPU.Build.0 = netstandard2.0-Debug|Any CPU {C303A051-8D54-4460-8BFD-DE10F0473BDB}.Release|Any CPU.ActiveCfg = netstandard2.0-Release|Any CPU diff --git a/src/libraries/System.Reflection.TypeExtensions/ref/Configurations.props b/src/libraries/System.Reflection.TypeExtensions/ref/Configurations.props index e34056edb775c..b4029b347f0a2 100644 --- a/src/libraries/System.Reflection.TypeExtensions/ref/Configurations.props +++ b/src/libraries/System.Reflection.TypeExtensions/ref/Configurations.props @@ -2,7 +2,7 @@ netstandard2.0; - netfx; + $(NetFrameworkCurrent); net461; diff --git a/src/libraries/System.Reflection.TypeExtensions/ref/System.Reflection.TypeExtensions.csproj b/src/libraries/System.Reflection.TypeExtensions/ref/System.Reflection.TypeExtensions.csproj index d261f9e59ff04..cee31f5355c93 100644 --- a/src/libraries/System.Reflection.TypeExtensions/ref/System.Reflection.TypeExtensions.csproj +++ b/src/libraries/System.Reflection.TypeExtensions/ref/System.Reflection.TypeExtensions.csproj @@ -1,7 +1,7 @@  enable - net461-Debug;net461-Release;netfx-Debug;netfx-Release;netstandard2.0-Debug;netstandard2.0-Release + net461-Debug;net461-Release;$(NetFrameworkCurrent)-Debug;$(NetFrameworkCurrent)-Release;netstandard2.0-Debug;netstandard2.0-Release diff --git a/src/libraries/System.Reflection.TypeExtensions/src/Configurations.props b/src/libraries/System.Reflection.TypeExtensions/src/Configurations.props index a13646511b94b..44811b416c8b7 100644 --- a/src/libraries/System.Reflection.TypeExtensions/src/Configurations.props +++ b/src/libraries/System.Reflection.TypeExtensions/src/Configurations.props @@ -8,9 +8,9 @@ $(PackageConfigurations); - netfx; - netcoreapp-Windows_NT; - netcoreapp-Unix; + $(NetFrameworkCurrent); + $(NetCoreAppCurrent)-Windows_NT; + $(NetCoreAppCurrent)-Unix; diff --git a/src/libraries/System.Reflection.TypeExtensions/src/System.Reflection.TypeExtensions.csproj b/src/libraries/System.Reflection.TypeExtensions/src/System.Reflection.TypeExtensions.csproj index a477c0be46c9e..69077b07f0b96 100644 --- a/src/libraries/System.Reflection.TypeExtensions/src/System.Reflection.TypeExtensions.csproj +++ b/src/libraries/System.Reflection.TypeExtensions/src/System.Reflection.TypeExtensions.csproj @@ -3,7 +3,7 @@ System.Reflection.TypeExtensions true enable - net461-Debug;net461-Release;netcoreapp-Unix-Debug;netcoreapp-Unix-Release;netcoreapp-Windows_NT-Debug;netcoreapp-Windows_NT-Release;netfx-Debug;netfx-Release;netstandard2.0-Debug;netstandard2.0-Release;netstandard1.3-Debug;netstandard1.3-Release;netstandard1.5-Debug;netstandard1.5-Release + net461-Debug;net461-Release;$(NetCoreAppCurrent)-Unix-Debug;$(NetCoreAppCurrent)-Unix-Release;$(NetCoreAppCurrent)-Windows_NT-Debug;$(NetCoreAppCurrent)-Windows_NT-Release;$(NetFrameworkCurrent)-Debug;$(NetFrameworkCurrent)-Release;netstandard2.0-Debug;netstandard2.0-Release;netstandard1.3-Debug;netstandard1.3-Release;netstandard1.5-Debug;netstandard1.5-Release SR.PlatformNotSupported_ReflectionTypeExtensions diff --git a/src/libraries/System.Reflection.TypeExtensions/tests/Configurations.props b/src/libraries/System.Reflection.TypeExtensions/tests/Configurations.props index 1a037adc3e7c1..f550cb30c4afd 100644 --- a/src/libraries/System.Reflection.TypeExtensions/tests/Configurations.props +++ b/src/libraries/System.Reflection.TypeExtensions/tests/Configurations.props @@ -1,8 +1,8 @@  - netcoreapp; - netfx; + $(NetCoreAppCurrent); + $(NetFrameworkCurrent); \ No newline at end of file diff --git a/src/libraries/System.Reflection.TypeExtensions/tests/System.Reflection.TypeExtensions.Tests.csproj b/src/libraries/System.Reflection.TypeExtensions/tests/System.Reflection.TypeExtensions.Tests.csproj index ea64f4bcded81..b55aa2b61f156 100644 --- a/src/libraries/System.Reflection.TypeExtensions/tests/System.Reflection.TypeExtensions.Tests.csproj +++ b/src/libraries/System.Reflection.TypeExtensions/tests/System.Reflection.TypeExtensions.Tests.csproj @@ -1,6 +1,6 @@ - netcoreapp-Debug;netcoreapp-Release;netfx-Debug;netfx-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release;$(NetFrameworkCurrent)-Debug;$(NetFrameworkCurrent)-Release true diff --git a/src/libraries/System.Reflection/System.Reflection.sln b/src/libraries/System.Reflection/System.Reflection.sln index 65925cade56c4..601bf5d734f7b 100644 --- a/src/libraries/System.Reflection/System.Reflection.sln +++ b/src/libraries/System.Reflection/System.Reflection.sln @@ -106,10 +106,10 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {B027C72E-F04E-42E0-A7F7-993AEF8400D2}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {B027C72E-F04E-42E0-A7F7-993AEF8400D2}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {B027C72E-F04E-42E0-A7F7-993AEF8400D2}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {B027C72E-F04E-42E0-A7F7-993AEF8400D2}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU + {B027C72E-F04E-42E0-A7F7-993AEF8400D2}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {B027C72E-F04E-42E0-A7F7-993AEF8400D2}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {B027C72E-F04E-42E0-A7F7-993AEF8400D2}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {B027C72E-F04E-42E0-A7F7-993AEF8400D2}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU {5B003EB4-DD06-4BC6-B2E9-A9F0E445CB86}.Debug|Any CPU.ActiveCfg = netstandard2.0-Debug|Any CPU {5B003EB4-DD06-4BC6-B2E9-A9F0E445CB86}.Debug|Any CPU.Build.0 = netstandard2.0-Debug|Any CPU {5B003EB4-DD06-4BC6-B2E9-A9F0E445CB86}.Release|Any CPU.ActiveCfg = netstandard2.0-Release|Any CPU @@ -154,10 +154,10 @@ Global {42E66302-6F46-47BE-936B-4264DFD6004F}.Debug|Any CPU.Build.0 = netstandard2.0-Debug|Any CPU {42E66302-6F46-47BE-936B-4264DFD6004F}.Release|Any CPU.ActiveCfg = netstandard2.0-Release|Any CPU {42E66302-6F46-47BE-936B-4264DFD6004F}.Release|Any CPU.Build.0 = netstandard2.0-Release|Any CPU - {C8049356-559D-4F34-AC17-56F3AE62C897}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {C8049356-559D-4F34-AC17-56F3AE62C897}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {C8049356-559D-4F34-AC17-56F3AE62C897}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {C8049356-559D-4F34-AC17-56F3AE62C897}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU + {C8049356-559D-4F34-AC17-56F3AE62C897}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {C8049356-559D-4F34-AC17-56F3AE62C897}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {C8049356-559D-4F34-AC17-56F3AE62C897}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {C8049356-559D-4F34-AC17-56F3AE62C897}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU {FA12CC14-C4A5-495D-B7AA-651E4BCC1027}.Debug|Any CPU.ActiveCfg = netstandard2.0-Debug|Any CPU {FA12CC14-C4A5-495D-B7AA-651E4BCC1027}.Debug|Any CPU.Build.0 = netstandard2.0-Debug|Any CPU {FA12CC14-C4A5-495D-B7AA-651E4BCC1027}.Release|Any CPU.ActiveCfg = netstandard2.0-Release|Any CPU @@ -166,22 +166,22 @@ Global {0CD33916-DD1D-4DF3-B579-2896ACE43E45}.Debug|Any CPU.Build.0 = netstandard2.0-Debug|Any CPU {0CD33916-DD1D-4DF3-B579-2896ACE43E45}.Release|Any CPU.ActiveCfg = netstandard2.0-Release|Any CPU {0CD33916-DD1D-4DF3-B579-2896ACE43E45}.Release|Any CPU.Build.0 = netstandard2.0-Release|Any CPU - {8C19B991-41E9-4B38-9602-E19375397F1D}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {8C19B991-41E9-4B38-9602-E19375397F1D}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {8C19B991-41E9-4B38-9602-E19375397F1D}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {8C19B991-41E9-4B38-9602-E19375397F1D}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU + {8C19B991-41E9-4B38-9602-E19375397F1D}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {8C19B991-41E9-4B38-9602-E19375397F1D}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {8C19B991-41E9-4B38-9602-E19375397F1D}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {8C19B991-41E9-4B38-9602-E19375397F1D}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU {7FFD1B55-D69A-4469-B775-6CBEB1CE50B0}.Debug|Any CPU.ActiveCfg = netstandard2.0-Debug|Any CPU {7FFD1B55-D69A-4469-B775-6CBEB1CE50B0}.Debug|Any CPU.Build.0 = netstandard2.0-Debug|Any CPU {7FFD1B55-D69A-4469-B775-6CBEB1CE50B0}.Release|Any CPU.ActiveCfg = netstandard2.0-Release|Any CPU {7FFD1B55-D69A-4469-B775-6CBEB1CE50B0}.Release|Any CPU.Build.0 = netstandard2.0-Release|Any CPU - {68F87E68-E13F-4354-A6D6-B44727FE53EE}.Debug|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Debug|Any CPU - {68F87E68-E13F-4354-A6D6-B44727FE53EE}.Debug|Any CPU.Build.0 = netcoreapp-Windows_NT-Debug|Any CPU - {68F87E68-E13F-4354-A6D6-B44727FE53EE}.Release|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Release|Any CPU - {68F87E68-E13F-4354-A6D6-B44727FE53EE}.Release|Any CPU.Build.0 = netcoreapp-Windows_NT-Release|Any CPU - {23B83DCB-45FD-4C8F-A6FB-C6799FB52BA6}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {23B83DCB-45FD-4C8F-A6FB-C6799FB52BA6}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {23B83DCB-45FD-4C8F-A6FB-C6799FB52BA6}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {23B83DCB-45FD-4C8F-A6FB-C6799FB52BA6}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU + {68F87E68-E13F-4354-A6D6-B44727FE53EE}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Debug|Any CPU + {68F87E68-E13F-4354-A6D6-B44727FE53EE}.Debug|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Debug|Any CPU + {68F87E68-E13F-4354-A6D6-B44727FE53EE}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Release|Any CPU + {68F87E68-E13F-4354-A6D6-B44727FE53EE}.Release|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Release|Any CPU + {23B83DCB-45FD-4C8F-A6FB-C6799FB52BA6}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {23B83DCB-45FD-4C8F-A6FB-C6799FB52BA6}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {23B83DCB-45FD-4C8F-A6FB-C6799FB52BA6}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {23B83DCB-45FD-4C8F-A6FB-C6799FB52BA6}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/src/libraries/System.Reflection/ref/Configurations.props b/src/libraries/System.Reflection/ref/Configurations.props index 55d2de1d23f8d..7ac45c966c456 100644 --- a/src/libraries/System.Reflection/ref/Configurations.props +++ b/src/libraries/System.Reflection/ref/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Reflection/ref/System.Reflection.csproj b/src/libraries/System.Reflection/ref/System.Reflection.csproj index d94bfdf01be65..a5ec6b40c5a19 100644 --- a/src/libraries/System.Reflection/ref/System.Reflection.csproj +++ b/src/libraries/System.Reflection/ref/System.Reflection.csproj @@ -1,6 +1,6 @@ - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release diff --git a/src/libraries/System.Reflection/src/Configurations.props b/src/libraries/System.Reflection/src/Configurations.props index db389259c06b1..f3922475141ae 100644 --- a/src/libraries/System.Reflection/src/Configurations.props +++ b/src/libraries/System.Reflection/src/Configurations.props @@ -1,8 +1,8 @@  - netcoreapp-Windows_NT; - netcoreapp-Unix; + $(NetCoreAppCurrent)-Windows_NT; + $(NetCoreAppCurrent)-Unix; diff --git a/src/libraries/System.Reflection/src/System.Reflection.csproj b/src/libraries/System.Reflection/src/System.Reflection.csproj index cce5365f9ecdc..3763294984877 100644 --- a/src/libraries/System.Reflection/src/System.Reflection.csproj +++ b/src/libraries/System.Reflection/src/System.Reflection.csproj @@ -2,7 +2,7 @@ System.Reflection true - netcoreapp-Unix-Debug;netcoreapp-Unix-Release;netcoreapp-Windows_NT-Debug;netcoreapp-Windows_NT-Release + $(NetCoreAppCurrent)-Unix-Debug;$(NetCoreAppCurrent)-Unix-Release;$(NetCoreAppCurrent)-Windows_NT-Debug;$(NetCoreAppCurrent)-Windows_NT-Release diff --git a/src/libraries/System.Reflection/tests/Configurations.props b/src/libraries/System.Reflection/tests/Configurations.props index 55d2de1d23f8d..7ac45c966c456 100644 --- a/src/libraries/System.Reflection/tests/Configurations.props +++ b/src/libraries/System.Reflection/tests/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Reflection/tests/CoreCLR/Configurations.props b/src/libraries/System.Reflection/tests/CoreCLR/Configurations.props index 89d6ac0f025b9..b6e0d3ce6383b 100644 --- a/src/libraries/System.Reflection/tests/CoreCLR/Configurations.props +++ b/src/libraries/System.Reflection/tests/CoreCLR/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Reflection/tests/CoreCLR/System.Reflection.CoreCLR.Tests.csproj b/src/libraries/System.Reflection/tests/CoreCLR/System.Reflection.CoreCLR.Tests.csproj index 9b10dc4663672..dffdcde32636b 100644 --- a/src/libraries/System.Reflection/tests/CoreCLR/System.Reflection.CoreCLR.Tests.csproj +++ b/src/libraries/System.Reflection/tests/CoreCLR/System.Reflection.CoreCLR.Tests.csproj @@ -1,6 +1,6 @@ - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release true diff --git a/src/libraries/System.Reflection/tests/System.Reflection.Tests.csproj b/src/libraries/System.Reflection/tests/System.Reflection.Tests.csproj index 2d56093b26f95..39548d720c80a 100644 --- a/src/libraries/System.Reflection/tests/System.Reflection.Tests.csproj +++ b/src/libraries/System.Reflection/tests/System.Reflection.Tests.csproj @@ -1,6 +1,6 @@ - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release true false diff --git a/src/libraries/System.Reflection/tests/TestExe/Configurations.props b/src/libraries/System.Reflection/tests/TestExe/Configurations.props index 89d6ac0f025b9..b6e0d3ce6383b 100644 --- a/src/libraries/System.Reflection/tests/TestExe/Configurations.props +++ b/src/libraries/System.Reflection/tests/TestExe/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Reflection/tests/TestExe/System.Reflection.TestExe.csproj b/src/libraries/System.Reflection/tests/TestExe/System.Reflection.TestExe.csproj index c55e3906401c1..e38b56de5bf24 100644 --- a/src/libraries/System.Reflection/tests/TestExe/System.Reflection.TestExe.csproj +++ b/src/libraries/System.Reflection/tests/TestExe/System.Reflection.TestExe.csproj @@ -1,7 +1,7 @@ Exe - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release diff --git a/src/libraries/System.Resources.Extensions/System.Resources.Extensions.sln b/src/libraries/System.Resources.Extensions/System.Resources.Extensions.sln index 241a164eb91ad..77dfb1d9c5587 100644 --- a/src/libraries/System.Resources.Extensions/System.Resources.Extensions.sln +++ b/src/libraries/System.Resources.Extensions/System.Resources.Extensions.sln @@ -26,10 +26,10 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {9003846C-EE54-4E58-B01E-6AA177E046C5}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {9003846C-EE54-4E58-B01E-6AA177E046C5}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {9003846C-EE54-4E58-B01E-6AA177E046C5}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {9003846C-EE54-4E58-B01E-6AA177E046C5}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU + {9003846C-EE54-4E58-B01E-6AA177E046C5}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {9003846C-EE54-4E58-B01E-6AA177E046C5}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {9003846C-EE54-4E58-B01E-6AA177E046C5}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {9003846C-EE54-4E58-B01E-6AA177E046C5}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU {6773D354-A573-4D9C-9A67-C7FAE579DA50}.Debug|Any CPU.ActiveCfg = netstandard2.0-Debug|Any CPU {6773D354-A573-4D9C-9A67-C7FAE579DA50}.Debug|Any CPU.Build.0 = netstandard2.0-Debug|Any CPU {6773D354-A573-4D9C-9A67-C7FAE579DA50}.Release|Any CPU.ActiveCfg = netstandard2.0-Release|Any CPU diff --git a/src/libraries/System.Resources.Extensions/tests/Configurations.props b/src/libraries/System.Resources.Extensions/tests/Configurations.props index 1a037adc3e7c1..f550cb30c4afd 100644 --- a/src/libraries/System.Resources.Extensions/tests/Configurations.props +++ b/src/libraries/System.Resources.Extensions/tests/Configurations.props @@ -1,8 +1,8 @@  - netcoreapp; - netfx; + $(NetCoreAppCurrent); + $(NetFrameworkCurrent); \ 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 667334743fcec..e044f3a75cf68 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 @@ -1,6 +1,6 @@  - netcoreapp-Debug;netcoreapp-Release;netfx-Debug;netfx-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release;$(NetFrameworkCurrent)-Debug;$(NetFrameworkCurrent)-Release true diff --git a/src/libraries/System.Resources.Reader/System.Resources.Reader.sln b/src/libraries/System.Resources.Reader/System.Resources.Reader.sln index 129492f884983..d5bcc8c8733c6 100644 --- a/src/libraries/System.Resources.Reader/System.Resources.Reader.sln +++ b/src/libraries/System.Resources.Reader/System.Resources.Reader.sln @@ -26,18 +26,18 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {8D7202E8-084A-4C20-AB93-3BF70D2E0651}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {8D7202E8-084A-4C20-AB93-3BF70D2E0651}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {8D7202E8-084A-4C20-AB93-3BF70D2E0651}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {8D7202E8-084A-4C20-AB93-3BF70D2E0651}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU - {5C13260D-C55D-46AF-9DCB-1B015D48E2E4}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {5C13260D-C55D-46AF-9DCB-1B015D48E2E4}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {5C13260D-C55D-46AF-9DCB-1B015D48E2E4}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {5C13260D-C55D-46AF-9DCB-1B015D48E2E4}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU - {99A66A70-7055-48FC-9BE1-36ED2B392E0D}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {99A66A70-7055-48FC-9BE1-36ED2B392E0D}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {99A66A70-7055-48FC-9BE1-36ED2B392E0D}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {99A66A70-7055-48FC-9BE1-36ED2B392E0D}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU + {8D7202E8-084A-4C20-AB93-3BF70D2E0651}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {8D7202E8-084A-4C20-AB93-3BF70D2E0651}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {8D7202E8-084A-4C20-AB93-3BF70D2E0651}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {8D7202E8-084A-4C20-AB93-3BF70D2E0651}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU + {5C13260D-C55D-46AF-9DCB-1B015D48E2E4}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {5C13260D-C55D-46AF-9DCB-1B015D48E2E4}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {5C13260D-C55D-46AF-9DCB-1B015D48E2E4}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {5C13260D-C55D-46AF-9DCB-1B015D48E2E4}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU + {99A66A70-7055-48FC-9BE1-36ED2B392E0D}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {99A66A70-7055-48FC-9BE1-36ED2B392E0D}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {99A66A70-7055-48FC-9BE1-36ED2B392E0D}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {99A66A70-7055-48FC-9BE1-36ED2B392E0D}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/src/libraries/System.Resources.Reader/ref/Configurations.props b/src/libraries/System.Resources.Reader/ref/Configurations.props index 55d2de1d23f8d..7ac45c966c456 100644 --- a/src/libraries/System.Resources.Reader/ref/Configurations.props +++ b/src/libraries/System.Resources.Reader/ref/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Resources.Reader/ref/System.Resources.Reader.csproj b/src/libraries/System.Resources.Reader/ref/System.Resources.Reader.csproj index b6a036a9b396c..9d57ba476eef7 100644 --- a/src/libraries/System.Resources.Reader/ref/System.Resources.Reader.csproj +++ b/src/libraries/System.Resources.Reader/ref/System.Resources.Reader.csproj @@ -1,6 +1,6 @@ - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release diff --git a/src/libraries/System.Resources.Reader/src/Configurations.props b/src/libraries/System.Resources.Reader/src/Configurations.props index 55d2de1d23f8d..7ac45c966c456 100644 --- a/src/libraries/System.Resources.Reader/src/Configurations.props +++ b/src/libraries/System.Resources.Reader/src/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Resources.Reader/src/System.Resources.Reader.csproj b/src/libraries/System.Resources.Reader/src/System.Resources.Reader.csproj index d38d008d88f7f..70e7eace7eb51 100644 --- a/src/libraries/System.Resources.Reader/src/System.Resources.Reader.csproj +++ b/src/libraries/System.Resources.Reader/src/System.Resources.Reader.csproj @@ -4,7 +4,7 @@ System.Resources.Reader System.Resources true - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release diff --git a/src/libraries/System.Resources.Reader/tests/Configurations.props b/src/libraries/System.Resources.Reader/tests/Configurations.props index 55d2de1d23f8d..7ac45c966c456 100644 --- a/src/libraries/System.Resources.Reader/tests/Configurations.props +++ b/src/libraries/System.Resources.Reader/tests/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Resources.Reader/tests/System.Resources.Reader.Tests.csproj b/src/libraries/System.Resources.Reader/tests/System.Resources.Reader.Tests.csproj index dbe02dd97452a..1d9752078158f 100644 --- a/src/libraries/System.Resources.Reader/tests/System.Resources.Reader.Tests.csproj +++ b/src/libraries/System.Resources.Reader/tests/System.Resources.Reader.Tests.csproj @@ -1,7 +1,7 @@ - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release true diff --git a/src/libraries/System.Resources.ResourceManager/System.Resources.ResourceManager.sln b/src/libraries/System.Resources.ResourceManager/System.Resources.ResourceManager.sln index f9dce38c11512..39c681cca2424 100644 --- a/src/libraries/System.Resources.ResourceManager/System.Resources.ResourceManager.sln +++ b/src/libraries/System.Resources.ResourceManager/System.Resources.ResourceManager.sln @@ -26,18 +26,18 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {1D51A16C-B6D8-4E8F-98DE-21AD9A7062A1}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {1D51A16C-B6D8-4E8F-98DE-21AD9A7062A1}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {1D51A16C-B6D8-4E8F-98DE-21AD9A7062A1}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {1D51A16C-B6D8-4E8F-98DE-21AD9A7062A1}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU - {3E7810B2-2802-4867-B223-30427F3F2D5B}.Debug|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Debug|Any CPU - {3E7810B2-2802-4867-B223-30427F3F2D5B}.Debug|Any CPU.Build.0 = netcoreapp-Windows_NT-Debug|Any CPU - {3E7810B2-2802-4867-B223-30427F3F2D5B}.Release|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Release|Any CPU - {3E7810B2-2802-4867-B223-30427F3F2D5B}.Release|Any CPU.Build.0 = netcoreapp-Windows_NT-Release|Any CPU - {97CFE337-C57E-4B2E-B495-65B917E1282E}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {97CFE337-C57E-4B2E-B495-65B917E1282E}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {97CFE337-C57E-4B2E-B495-65B917E1282E}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {97CFE337-C57E-4B2E-B495-65B917E1282E}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU + {1D51A16C-B6D8-4E8F-98DE-21AD9A7062A1}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {1D51A16C-B6D8-4E8F-98DE-21AD9A7062A1}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {1D51A16C-B6D8-4E8F-98DE-21AD9A7062A1}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {1D51A16C-B6D8-4E8F-98DE-21AD9A7062A1}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU + {3E7810B2-2802-4867-B223-30427F3F2D5B}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Debug|Any CPU + {3E7810B2-2802-4867-B223-30427F3F2D5B}.Debug|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Debug|Any CPU + {3E7810B2-2802-4867-B223-30427F3F2D5B}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Release|Any CPU + {3E7810B2-2802-4867-B223-30427F3F2D5B}.Release|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Release|Any CPU + {97CFE337-C57E-4B2E-B495-65B917E1282E}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {97CFE337-C57E-4B2E-B495-65B917E1282E}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {97CFE337-C57E-4B2E-B495-65B917E1282E}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {97CFE337-C57E-4B2E-B495-65B917E1282E}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/src/libraries/System.Resources.ResourceManager/ref/Configurations.props b/src/libraries/System.Resources.ResourceManager/ref/Configurations.props index 55d2de1d23f8d..7ac45c966c456 100644 --- a/src/libraries/System.Resources.ResourceManager/ref/Configurations.props +++ b/src/libraries/System.Resources.ResourceManager/ref/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Resources.ResourceManager/ref/System.Resources.ResourceManager.csproj b/src/libraries/System.Resources.ResourceManager/ref/System.Resources.ResourceManager.csproj index 1924ed382a737..d7c699f2a9976 100644 --- a/src/libraries/System.Resources.ResourceManager/ref/System.Resources.ResourceManager.csproj +++ b/src/libraries/System.Resources.ResourceManager/ref/System.Resources.ResourceManager.csproj @@ -1,6 +1,6 @@ - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release enable diff --git a/src/libraries/System.Resources.ResourceManager/src/Configurations.props b/src/libraries/System.Resources.ResourceManager/src/Configurations.props index db389259c06b1..f3922475141ae 100644 --- a/src/libraries/System.Resources.ResourceManager/src/Configurations.props +++ b/src/libraries/System.Resources.ResourceManager/src/Configurations.props @@ -1,8 +1,8 @@  - netcoreapp-Windows_NT; - netcoreapp-Unix; + $(NetCoreAppCurrent)-Windows_NT; + $(NetCoreAppCurrent)-Unix; diff --git a/src/libraries/System.Resources.ResourceManager/src/System.Resources.ResourceManager.csproj b/src/libraries/System.Resources.ResourceManager/src/System.Resources.ResourceManager.csproj index 1672be4427abe..f8140addfd5d0 100644 --- a/src/libraries/System.Resources.ResourceManager/src/System.Resources.ResourceManager.csproj +++ b/src/libraries/System.Resources.ResourceManager/src/System.Resources.ResourceManager.csproj @@ -2,7 +2,7 @@ System.Resources.ResourceManager true - netcoreapp-Unix-Debug;netcoreapp-Unix-Release;netcoreapp-Windows_NT-Debug;netcoreapp-Windows_NT-Release + $(NetCoreAppCurrent)-Unix-Debug;$(NetCoreAppCurrent)-Unix-Release;$(NetCoreAppCurrent)-Windows_NT-Debug;$(NetCoreAppCurrent)-Windows_NT-Release diff --git a/src/libraries/System.Resources.ResourceManager/tests/Configurations.props b/src/libraries/System.Resources.ResourceManager/tests/Configurations.props index 19236e72c58fb..b79c1d7c3d9a0 100644 --- a/src/libraries/System.Resources.ResourceManager/tests/Configurations.props +++ b/src/libraries/System.Resources.ResourceManager/tests/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); diff --git a/src/libraries/System.Resources.ResourceManager/tests/System.Resources.ResourceManager.Tests.csproj b/src/libraries/System.Resources.ResourceManager/tests/System.Resources.ResourceManager.Tests.csproj index de5321797d65e..b04102e30d71e 100644 --- a/src/libraries/System.Resources.ResourceManager/tests/System.Resources.ResourceManager.Tests.csproj +++ b/src/libraries/System.Resources.ResourceManager/tests/System.Resources.ResourceManager.Tests.csproj @@ -4,7 +4,7 @@ true true true - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release diff --git a/src/libraries/System.Resources.Writer/System.Resources.Writer.sln b/src/libraries/System.Resources.Writer/System.Resources.Writer.sln index afc8a4853f9e8..b12136bc1ec5f 100644 --- a/src/libraries/System.Resources.Writer/System.Resources.Writer.sln +++ b/src/libraries/System.Resources.Writer/System.Resources.Writer.sln @@ -26,18 +26,18 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {EFA745C2-3741-4D54-B2A1-1979E43354E4}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {EFA745C2-3741-4D54-B2A1-1979E43354E4}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {EFA745C2-3741-4D54-B2A1-1979E43354E4}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {EFA745C2-3741-4D54-B2A1-1979E43354E4}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU - {98CA9A7F-AD5C-418B-BC22-735AC2BE21A6}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {98CA9A7F-AD5C-418B-BC22-735AC2BE21A6}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {98CA9A7F-AD5C-418B-BC22-735AC2BE21A6}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {98CA9A7F-AD5C-418B-BC22-735AC2BE21A6}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU - {7A1466AF-8BBA-4CB5-8D98-1DFE06853ED3}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {7A1466AF-8BBA-4CB5-8D98-1DFE06853ED3}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {7A1466AF-8BBA-4CB5-8D98-1DFE06853ED3}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {7A1466AF-8BBA-4CB5-8D98-1DFE06853ED3}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU + {EFA745C2-3741-4D54-B2A1-1979E43354E4}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {EFA745C2-3741-4D54-B2A1-1979E43354E4}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {EFA745C2-3741-4D54-B2A1-1979E43354E4}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {EFA745C2-3741-4D54-B2A1-1979E43354E4}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU + {98CA9A7F-AD5C-418B-BC22-735AC2BE21A6}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {98CA9A7F-AD5C-418B-BC22-735AC2BE21A6}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {98CA9A7F-AD5C-418B-BC22-735AC2BE21A6}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {98CA9A7F-AD5C-418B-BC22-735AC2BE21A6}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU + {7A1466AF-8BBA-4CB5-8D98-1DFE06853ED3}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {7A1466AF-8BBA-4CB5-8D98-1DFE06853ED3}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {7A1466AF-8BBA-4CB5-8D98-1DFE06853ED3}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {7A1466AF-8BBA-4CB5-8D98-1DFE06853ED3}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/src/libraries/System.Resources.Writer/ref/Configurations.props b/src/libraries/System.Resources.Writer/ref/Configurations.props index 55d2de1d23f8d..7ac45c966c456 100644 --- a/src/libraries/System.Resources.Writer/ref/Configurations.props +++ b/src/libraries/System.Resources.Writer/ref/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Resources.Writer/ref/System.Resources.Writer.csproj b/src/libraries/System.Resources.Writer/ref/System.Resources.Writer.csproj index 9bbe0797fc96c..48c8a6806e540 100644 --- a/src/libraries/System.Resources.Writer/ref/System.Resources.Writer.csproj +++ b/src/libraries/System.Resources.Writer/ref/System.Resources.Writer.csproj @@ -1,7 +1,7 @@ enable - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release diff --git a/src/libraries/System.Resources.Writer/src/Configurations.props b/src/libraries/System.Resources.Writer/src/Configurations.props index 55d2de1d23f8d..7ac45c966c456 100644 --- a/src/libraries/System.Resources.Writer/src/Configurations.props +++ b/src/libraries/System.Resources.Writer/src/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Resources.Writer/src/System.Resources.Writer.csproj b/src/libraries/System.Resources.Writer/src/System.Resources.Writer.csproj index 50785a237b210..81a7916c342a6 100644 --- a/src/libraries/System.Resources.Writer/src/System.Resources.Writer.csproj +++ b/src/libraries/System.Resources.Writer/src/System.Resources.Writer.csproj @@ -4,7 +4,7 @@ System.Resources.Writer System.Resources enable - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release diff --git a/src/libraries/System.Resources.Writer/tests/Configurations.props b/src/libraries/System.Resources.Writer/tests/Configurations.props index 55d2de1d23f8d..7ac45c966c456 100644 --- a/src/libraries/System.Resources.Writer/tests/Configurations.props +++ b/src/libraries/System.Resources.Writer/tests/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Resources.Writer/tests/System.Resources.Writer.Tests.csproj b/src/libraries/System.Resources.Writer/tests/System.Resources.Writer.Tests.csproj index 0a9948a043bcb..73c4006b84f4c 100644 --- a/src/libraries/System.Resources.Writer/tests/System.Resources.Writer.Tests.csproj +++ b/src/libraries/System.Resources.Writer/tests/System.Resources.Writer.Tests.csproj @@ -1,6 +1,6 @@ - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release diff --git a/src/libraries/System.Runtime.Caching/System.Runtime.Caching.sln b/src/libraries/System.Runtime.Caching/System.Runtime.Caching.sln index 4075e885b051f..9c175aded0ff7 100644 --- a/src/libraries/System.Runtime.Caching/System.Runtime.Caching.sln +++ b/src/libraries/System.Runtime.Caching/System.Runtime.Caching.sln @@ -26,10 +26,10 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {397E49A7-EB26-4368-8F46-D78B98F4A971}.Debug|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Debug|Any CPU - {397E49A7-EB26-4368-8F46-D78B98F4A971}.Debug|Any CPU.Build.0 = netcoreapp-Windows_NT-Debug|Any CPU - {397E49A7-EB26-4368-8F46-D78B98F4A971}.Release|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Release|Any CPU - {397E49A7-EB26-4368-8F46-D78B98F4A971}.Release|Any CPU.Build.0 = netcoreapp-Windows_NT-Release|Any CPU + {397E49A7-EB26-4368-8F46-D78B98F4A971}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Debug|Any CPU + {397E49A7-EB26-4368-8F46-D78B98F4A971}.Debug|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Debug|Any CPU + {397E49A7-EB26-4368-8F46-D78B98F4A971}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Release|Any CPU + {397E49A7-EB26-4368-8F46-D78B98F4A971}.Release|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Release|Any CPU {A7B6FB6E-F484-42D7-8A5E-F7D0DCC03829}.Debug|Any CPU.ActiveCfg = netstandard2.0-Windows_NT-Debug|Any CPU {A7B6FB6E-F484-42D7-8A5E-F7D0DCC03829}.Debug|Any CPU.Build.0 = netstandard2.0-Windows_NT-Debug|Any CPU {A7B6FB6E-F484-42D7-8A5E-F7D0DCC03829}.Release|Any CPU.ActiveCfg = netstandard2.0-Windows_NT-Release|Any CPU diff --git a/src/libraries/System.Runtime.Caching/src/Configurations.props b/src/libraries/System.Runtime.Caching/src/Configurations.props index 02c3fed72212a..864e8bc199d1a 100644 --- a/src/libraries/System.Runtime.Caching/src/Configurations.props +++ b/src/libraries/System.Runtime.Caching/src/Configurations.props @@ -3,7 +3,7 @@ netstandard2.0; netstandard2.0-Windows_NT; - _netfx; + _$(NetFrameworkCurrent); \ No newline at end of file diff --git a/src/libraries/System.Runtime.Caching/tests/Configurations.props b/src/libraries/System.Runtime.Caching/tests/Configurations.props index 2afdc55d7f2c0..4dbe0add6ca9c 100644 --- a/src/libraries/System.Runtime.Caching/tests/Configurations.props +++ b/src/libraries/System.Runtime.Caching/tests/Configurations.props @@ -1,8 +1,8 @@  - netcoreapp-Windows_NT; - netfx; + $(NetCoreAppCurrent)-Windows_NT; + $(NetFrameworkCurrent); \ No newline at end of file diff --git a/src/libraries/System.Runtime.Caching/tests/System.Runtime.Caching.Tests.csproj b/src/libraries/System.Runtime.Caching/tests/System.Runtime.Caching.Tests.csproj index 66b16ea56dee3..5a7e44e45c42b 100644 --- a/src/libraries/System.Runtime.Caching/tests/System.Runtime.Caching.Tests.csproj +++ b/src/libraries/System.Runtime.Caching/tests/System.Runtime.Caching.Tests.csproj @@ -1,6 +1,6 @@ - netcoreapp-Windows_NT-Debug;netcoreapp-Windows_NT-Release;netfx-Debug;netfx-Release + $(NetCoreAppCurrent)-Windows_NT-Debug;$(NetCoreAppCurrent)-Windows_NT-Release;$(NetFrameworkCurrent)-Debug;$(NetFrameworkCurrent)-Release diff --git a/src/libraries/System.Runtime.CompilerServices.Unsafe/System.Runtime.CompilerServices.Unsafe.sln b/src/libraries/System.Runtime.CompilerServices.Unsafe/System.Runtime.CompilerServices.Unsafe.sln index d769b543443a5..bdebba0bce6aa 100644 --- a/src/libraries/System.Runtime.CompilerServices.Unsafe/System.Runtime.CompilerServices.Unsafe.sln +++ b/src/libraries/System.Runtime.CompilerServices.Unsafe/System.Runtime.CompilerServices.Unsafe.sln @@ -26,14 +26,14 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {8012DD70-A6D7-45C0-BC8E-DFFB48D86E08}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {8012DD70-A6D7-45C0-BC8E-DFFB48D86E08}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {8012DD70-A6D7-45C0-BC8E-DFFB48D86E08}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {8012DD70-A6D7-45C0-BC8E-DFFB48D86E08}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU - {04BA3E3C-6979-4792-B19E-C797AD607F42}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {04BA3E3C-6979-4792-B19E-C797AD607F42}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {04BA3E3C-6979-4792-B19E-C797AD607F42}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {04BA3E3C-6979-4792-B19E-C797AD607F42}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU + {8012DD70-A6D7-45C0-BC8E-DFFB48D86E08}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {8012DD70-A6D7-45C0-BC8E-DFFB48D86E08}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {8012DD70-A6D7-45C0-BC8E-DFFB48D86E08}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {8012DD70-A6D7-45C0-BC8E-DFFB48D86E08}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU + {04BA3E3C-6979-4792-B19E-C797AD607F42}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {04BA3E3C-6979-4792-B19E-C797AD607F42}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {04BA3E3C-6979-4792-B19E-C797AD607F42}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {04BA3E3C-6979-4792-B19E-C797AD607F42}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU {649A377C-1E07-4105-B01F-7F1044D3356C}.Debug|Any CPU.ActiveCfg = netstandard2.0-Debug|Any CPU {649A377C-1E07-4105-B01F-7F1044D3356C}.Debug|Any CPU.Build.0 = netstandard2.0-Debug|Any CPU {649A377C-1E07-4105-B01F-7F1044D3356C}.Release|Any CPU.ActiveCfg = netstandard2.0-Release|Any CPU diff --git a/src/libraries/System.Runtime.CompilerServices.Unsafe/src/Configurations.props b/src/libraries/System.Runtime.CompilerServices.Unsafe/src/Configurations.props index 31eca17f7a43b..c1442f51b2978 100644 --- a/src/libraries/System.Runtime.CompilerServices.Unsafe/src/Configurations.props +++ b/src/libraries/System.Runtime.CompilerServices.Unsafe/src/Configurations.props @@ -8,8 +8,8 @@ $(PackageConfigurations); - netcoreapp; - netfx; + $(NetCoreAppCurrent); + $(NetFrameworkCurrent); diff --git a/src/libraries/System.Runtime.CompilerServices.Unsafe/src/System.Runtime.CompilerServices.Unsafe.ilproj b/src/libraries/System.Runtime.CompilerServices.Unsafe/src/System.Runtime.CompilerServices.Unsafe.ilproj index 64f2b6424709e..fa6c7b602da08 100644 --- a/src/libraries/System.Runtime.CompilerServices.Unsafe/src/System.Runtime.CompilerServices.Unsafe.ilproj +++ b/src/libraries/System.Runtime.CompilerServices.Unsafe/src/System.Runtime.CompilerServices.Unsafe.ilproj @@ -11,7 +11,7 @@ include\netcoreapp include\netfx $(IlasmFlags) -INCLUDE=$(IncludePath) -DEBUG=$(DebugOptimization) - netcoreapp-Debug;netcoreapp-Release;netcoreapp2.0-Debug;netcoreapp2.0-Release;netstandard2.0-Debug;netstandard2.0-Release;netstandard1.0-Debug;netstandard1.0-Release;net45-Debug;net45-Release;netfx-Debug;netfx-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release;netcoreapp2.0-Debug;netcoreapp2.0-Release;netstandard2.0-Debug;netstandard2.0-Release;netstandard1.0-Debug;netstandard1.0-Release;net45-Debug;net45-Release;netfx-Debug;netfx-Release diff --git a/src/libraries/System.Runtime.CompilerServices.Unsafe/tests/Configurations.props b/src/libraries/System.Runtime.CompilerServices.Unsafe/tests/Configurations.props index 61b88ac2cb16e..671d43c80c973 100644 --- a/src/libraries/System.Runtime.CompilerServices.Unsafe/tests/Configurations.props +++ b/src/libraries/System.Runtime.CompilerServices.Unsafe/tests/Configurations.props @@ -1,8 +1,8 @@  - netcoreapp; - netfx; + $(NetCoreAppCurrent); + $(NetFrameworkCurrent); diff --git a/src/libraries/System.Runtime.CompilerServices.Unsafe/tests/System.Runtime.CompilerServices.Unsafe.Tests.csproj b/src/libraries/System.Runtime.CompilerServices.Unsafe/tests/System.Runtime.CompilerServices.Unsafe.Tests.csproj index 58b67ce488115..e886646cdf122 100644 --- a/src/libraries/System.Runtime.CompilerServices.Unsafe/tests/System.Runtime.CompilerServices.Unsafe.Tests.csproj +++ b/src/libraries/System.Runtime.CompilerServices.Unsafe/tests/System.Runtime.CompilerServices.Unsafe.Tests.csproj @@ -1,7 +1,7 @@ true - netcoreapp-Debug;netcoreapp-Release;netfx-Debug;netfx-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release;$(NetFrameworkCurrent)-Debug;$(NetFrameworkCurrent)-Release diff --git a/src/libraries/System.Runtime.CompilerServices.VisualC/System.Runtime.CompilerServices.VisualC.sln b/src/libraries/System.Runtime.CompilerServices.VisualC/System.Runtime.CompilerServices.VisualC.sln index 2ebc5db48011f..3dcb2438d14ae 100644 --- a/src/libraries/System.Runtime.CompilerServices.VisualC/System.Runtime.CompilerServices.VisualC.sln +++ b/src/libraries/System.Runtime.CompilerServices.VisualC/System.Runtime.CompilerServices.VisualC.sln @@ -26,18 +26,18 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {057BF9A0-199B-4EB5-85D5-84982259C7BC}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {057BF9A0-199B-4EB5-85D5-84982259C7BC}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {057BF9A0-199B-4EB5-85D5-84982259C7BC}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {057BF9A0-199B-4EB5-85D5-84982259C7BC}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU - {F8C8FBFC-CA6E-4BDA-A1B3-FA4E17C10D9E}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {F8C8FBFC-CA6E-4BDA-A1B3-FA4E17C10D9E}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {F8C8FBFC-CA6E-4BDA-A1B3-FA4E17C10D9E}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {F8C8FBFC-CA6E-4BDA-A1B3-FA4E17C10D9E}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU - {2122228D-ADAD-43D8-BC56-6A061DE8B25C}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {2122228D-ADAD-43D8-BC56-6A061DE8B25C}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {2122228D-ADAD-43D8-BC56-6A061DE8B25C}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {2122228D-ADAD-43D8-BC56-6A061DE8B25C}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU + {057BF9A0-199B-4EB5-85D5-84982259C7BC}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {057BF9A0-199B-4EB5-85D5-84982259C7BC}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {057BF9A0-199B-4EB5-85D5-84982259C7BC}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {057BF9A0-199B-4EB5-85D5-84982259C7BC}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU + {F8C8FBFC-CA6E-4BDA-A1B3-FA4E17C10D9E}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {F8C8FBFC-CA6E-4BDA-A1B3-FA4E17C10D9E}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {F8C8FBFC-CA6E-4BDA-A1B3-FA4E17C10D9E}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {F8C8FBFC-CA6E-4BDA-A1B3-FA4E17C10D9E}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU + {2122228D-ADAD-43D8-BC56-6A061DE8B25C}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {2122228D-ADAD-43D8-BC56-6A061DE8B25C}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {2122228D-ADAD-43D8-BC56-6A061DE8B25C}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {2122228D-ADAD-43D8-BC56-6A061DE8B25C}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/src/libraries/System.Runtime.CompilerServices.VisualC/ref/Configurations.props b/src/libraries/System.Runtime.CompilerServices.VisualC/ref/Configurations.props index 55d2de1d23f8d..7ac45c966c456 100644 --- a/src/libraries/System.Runtime.CompilerServices.VisualC/ref/Configurations.props +++ b/src/libraries/System.Runtime.CompilerServices.VisualC/ref/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Runtime.CompilerServices.VisualC/ref/System.Runtime.CompilerServices.VisualC.csproj b/src/libraries/System.Runtime.CompilerServices.VisualC/ref/System.Runtime.CompilerServices.VisualC.csproj index 0fba717a73861..4d0f62663aa15 100644 --- a/src/libraries/System.Runtime.CompilerServices.VisualC/ref/System.Runtime.CompilerServices.VisualC.csproj +++ b/src/libraries/System.Runtime.CompilerServices.VisualC/ref/System.Runtime.CompilerServices.VisualC.csproj @@ -1,7 +1,7 @@ enable - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release diff --git a/src/libraries/System.Runtime.CompilerServices.VisualC/src/Configurations.props b/src/libraries/System.Runtime.CompilerServices.VisualC/src/Configurations.props index 55d2de1d23f8d..7ac45c966c456 100644 --- a/src/libraries/System.Runtime.CompilerServices.VisualC/src/Configurations.props +++ b/src/libraries/System.Runtime.CompilerServices.VisualC/src/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Runtime.CompilerServices.VisualC/src/System.Runtime.CompilerServices.VisualC.csproj b/src/libraries/System.Runtime.CompilerServices.VisualC/src/System.Runtime.CompilerServices.VisualC.csproj index 902803134f4dd..27f88ad57db33 100644 --- a/src/libraries/System.Runtime.CompilerServices.VisualC/src/System.Runtime.CompilerServices.VisualC.csproj +++ b/src/libraries/System.Runtime.CompilerServices.VisualC/src/System.Runtime.CompilerServices.VisualC.csproj @@ -2,7 +2,7 @@ System.Runtime.CompilerServices.VisualC enable - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release diff --git a/src/libraries/System.Runtime.CompilerServices.VisualC/tests/Configurations.props b/src/libraries/System.Runtime.CompilerServices.VisualC/tests/Configurations.props index 89d6ac0f025b9..b6e0d3ce6383b 100644 --- a/src/libraries/System.Runtime.CompilerServices.VisualC/tests/Configurations.props +++ b/src/libraries/System.Runtime.CompilerServices.VisualC/tests/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Runtime.CompilerServices.VisualC/tests/System.Runtime.CompilerServices.VisualC.Tests.csproj b/src/libraries/System.Runtime.CompilerServices.VisualC/tests/System.Runtime.CompilerServices.VisualC.Tests.csproj index ce3c54ddeb9cd..543a0efedb924 100644 --- a/src/libraries/System.Runtime.CompilerServices.VisualC/tests/System.Runtime.CompilerServices.VisualC.Tests.csproj +++ b/src/libraries/System.Runtime.CompilerServices.VisualC/tests/System.Runtime.CompilerServices.VisualC.Tests.csproj @@ -1,7 +1,7 @@ true - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release diff --git a/src/libraries/System.Runtime.Extensions/System.Runtime.Extensions.sln b/src/libraries/System.Runtime.Extensions/System.Runtime.Extensions.sln index 14e3e069caf43..24edff10330be 100644 --- a/src/libraries/System.Runtime.Extensions/System.Runtime.Extensions.sln +++ b/src/libraries/System.Runtime.Extensions/System.Runtime.Extensions.sln @@ -46,34 +46,34 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {6C314C9B-3D28-4B05-9B4C-B57A00A9B3B9}.Debug|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Debug|Any CPU - {6C314C9B-3D28-4B05-9B4C-B57A00A9B3B9}.Debug|Any CPU.Build.0 = netcoreapp-Windows_NT-Debug|Any CPU - {6C314C9B-3D28-4B05-9B4C-B57A00A9B3B9}.Release|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Release|Any CPU - {6C314C9B-3D28-4B05-9B4C-B57A00A9B3B9}.Release|Any CPU.Build.0 = netcoreapp-Windows_NT-Release|Any CPU + {6C314C9B-3D28-4B05-9B4C-B57A00A9B3B9}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Debug|Any CPU + {6C314C9B-3D28-4B05-9B4C-B57A00A9B3B9}.Debug|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Debug|Any CPU + {6C314C9B-3D28-4B05-9B4C-B57A00A9B3B9}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Release|Any CPU + {6C314C9B-3D28-4B05-9B4C-B57A00A9B3B9}.Release|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Release|Any CPU {E60AFAE8-2EA7-471C-9E24-52A99453B26B}.Debug|Any CPU.ActiveCfg = netstandard2.0-Debug|Any CPU {E60AFAE8-2EA7-471C-9E24-52A99453B26B}.Debug|Any CPU.Build.0 = netstandard2.0-Debug|Any CPU {E60AFAE8-2EA7-471C-9E24-52A99453B26B}.Release|Any CPU.ActiveCfg = netstandard2.0-Release|Any CPU {E60AFAE8-2EA7-471C-9E24-52A99453B26B}.Release|Any CPU.Build.0 = netstandard2.0-Release|Any CPU - {24BCEC6B-B9D2-47BC-9D66-725BD6B526FA}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {24BCEC6B-B9D2-47BC-9D66-725BD6B526FA}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {24BCEC6B-B9D2-47BC-9D66-725BD6B526FA}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {24BCEC6B-B9D2-47BC-9D66-725BD6B526FA}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU - {C44B33E3-F89F-40B9-B353-D380C1524988}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {C44B33E3-F89F-40B9-B353-D380C1524988}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {C44B33E3-F89F-40B9-B353-D380C1524988}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {C44B33E3-F89F-40B9-B353-D380C1524988}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU - {9F312D76-9AF1-4E90-B3B0-815A1EC6C346}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {9F312D76-9AF1-4E90-B3B0-815A1EC6C346}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {9F312D76-9AF1-4E90-B3B0-815A1EC6C346}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {9F312D76-9AF1-4E90-B3B0-815A1EC6C346}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU - {845D2B72-D8A4-42E5-9BE9-17639EC4FC1A}.Debug|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Debug|Any CPU - {845D2B72-D8A4-42E5-9BE9-17639EC4FC1A}.Debug|Any CPU.Build.0 = netcoreapp-Windows_NT-Debug|Any CPU - {845D2B72-D8A4-42E5-9BE9-17639EC4FC1A}.Release|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Release|Any CPU - {845D2B72-D8A4-42E5-9BE9-17639EC4FC1A}.Release|Any CPU.Build.0 = netcoreapp-Windows_NT-Release|Any CPU - {33B27785-02FD-4544-8E7D-EB802248BEC3}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {33B27785-02FD-4544-8E7D-EB802248BEC3}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {33B27785-02FD-4544-8E7D-EB802248BEC3}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {33B27785-02FD-4544-8E7D-EB802248BEC3}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU + {24BCEC6B-B9D2-47BC-9D66-725BD6B526FA}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {24BCEC6B-B9D2-47BC-9D66-725BD6B526FA}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {24BCEC6B-B9D2-47BC-9D66-725BD6B526FA}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {24BCEC6B-B9D2-47BC-9D66-725BD6B526FA}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU + {C44B33E3-F89F-40B9-B353-D380C1524988}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {C44B33E3-F89F-40B9-B353-D380C1524988}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {C44B33E3-F89F-40B9-B353-D380C1524988}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {C44B33E3-F89F-40B9-B353-D380C1524988}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU + {9F312D76-9AF1-4E90-B3B0-815A1EC6C346}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {9F312D76-9AF1-4E90-B3B0-815A1EC6C346}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {9F312D76-9AF1-4E90-B3B0-815A1EC6C346}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {9F312D76-9AF1-4E90-B3B0-815A1EC6C346}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU + {845D2B72-D8A4-42E5-9BE9-17639EC4FC1A}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Debug|Any CPU + {845D2B72-D8A4-42E5-9BE9-17639EC4FC1A}.Debug|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Debug|Any CPU + {845D2B72-D8A4-42E5-9BE9-17639EC4FC1A}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Release|Any CPU + {845D2B72-D8A4-42E5-9BE9-17639EC4FC1A}.Release|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Release|Any CPU + {33B27785-02FD-4544-8E7D-EB802248BEC3}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {33B27785-02FD-4544-8E7D-EB802248BEC3}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {33B27785-02FD-4544-8E7D-EB802248BEC3}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {33B27785-02FD-4544-8E7D-EB802248BEC3}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/src/libraries/System.Runtime.Extensions/ref/Configurations.props b/src/libraries/System.Runtime.Extensions/ref/Configurations.props index 89d6ac0f025b9..b6e0d3ce6383b 100644 --- a/src/libraries/System.Runtime.Extensions/ref/Configurations.props +++ b/src/libraries/System.Runtime.Extensions/ref/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Runtime.Extensions/ref/System.Runtime.Extensions.csproj b/src/libraries/System.Runtime.Extensions/ref/System.Runtime.Extensions.csproj index cb1e24c19c6b7..387ecd1450477 100644 --- a/src/libraries/System.Runtime.Extensions/ref/System.Runtime.Extensions.csproj +++ b/src/libraries/System.Runtime.Extensions/ref/System.Runtime.Extensions.csproj @@ -1,6 +1,6 @@ - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release enable diff --git a/src/libraries/System.Runtime.Extensions/src/Configurations.props b/src/libraries/System.Runtime.Extensions/src/Configurations.props index ee16a95ad965e..d59c116cfe1ab 100644 --- a/src/libraries/System.Runtime.Extensions/src/Configurations.props +++ b/src/libraries/System.Runtime.Extensions/src/Configurations.props @@ -1,8 +1,8 @@  - netcoreapp-Unix; - netcoreapp-Windows_NT; + $(NetCoreAppCurrent)-Unix; + $(NetCoreAppCurrent)-Windows_NT; diff --git a/src/libraries/System.Runtime.Extensions/src/System.Runtime.Extensions.csproj b/src/libraries/System.Runtime.Extensions/src/System.Runtime.Extensions.csproj index 7f08047ab8e78..64a58886476a2 100644 --- a/src/libraries/System.Runtime.Extensions/src/System.Runtime.Extensions.csproj +++ b/src/libraries/System.Runtime.Extensions/src/System.Runtime.Extensions.csproj @@ -5,7 +5,7 @@ true true true - netcoreapp-Unix-Debug;netcoreapp-Unix-Release;netcoreapp-Windows_NT-Debug;netcoreapp-Windows_NT-Release + $(NetCoreAppCurrent)-Unix-Debug;$(NetCoreAppCurrent)-Unix-Release;$(NetCoreAppCurrent)-Windows_NT-Debug;$(NetCoreAppCurrent)-Windows_NT-Release enable diff --git a/src/libraries/System.Runtime.Extensions/tests/Configurations.props b/src/libraries/System.Runtime.Extensions/tests/Configurations.props index ad8296d246d1f..eca4299792e25 100644 --- a/src/libraries/System.Runtime.Extensions/tests/Configurations.props +++ b/src/libraries/System.Runtime.Extensions/tests/Configurations.props @@ -1,8 +1,8 @@  - netcoreapp-Windows_NT; - netcoreapp-Unix; + $(NetCoreAppCurrent)-Windows_NT; + $(NetCoreAppCurrent)-Unix; \ No newline at end of file diff --git a/src/libraries/System.Runtime.Extensions/tests/System.Runtime.Extensions.Tests.csproj b/src/libraries/System.Runtime.Extensions/tests/System.Runtime.Extensions.Tests.csproj index 207da51a2b829..08e9d40178d9b 100644 --- a/src/libraries/System.Runtime.Extensions/tests/System.Runtime.Extensions.Tests.csproj +++ b/src/libraries/System.Runtime.Extensions/tests/System.Runtime.Extensions.Tests.csproj @@ -4,7 +4,7 @@ $(DefineConstants);Unix true true - netcoreapp-Unix-Debug;netcoreapp-Unix-Release;netcoreapp-Windows_NT-Debug;netcoreapp-Windows_NT-Release + $(NetCoreAppCurrent)-Unix-Debug;$(NetCoreAppCurrent)-Unix-Release;$(NetCoreAppCurrent)-Windows_NT-Debug;$(NetCoreAppCurrent)-Windows_NT-Release diff --git a/src/libraries/System.Runtime.Extensions/tests/TargetFrameworkNameTestApp/Configurations.props b/src/libraries/System.Runtime.Extensions/tests/TargetFrameworkNameTestApp/Configurations.props index 89d6ac0f025b9..b6e0d3ce6383b 100644 --- a/src/libraries/System.Runtime.Extensions/tests/TargetFrameworkNameTestApp/Configurations.props +++ b/src/libraries/System.Runtime.Extensions/tests/TargetFrameworkNameTestApp/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Runtime.Extensions/tests/TargetFrameworkNameTestApp/TargetFrameworkNameTestApp.csproj b/src/libraries/System.Runtime.Extensions/tests/TargetFrameworkNameTestApp/TargetFrameworkNameTestApp.csproj index 0fa0d036d2a97..241801481426e 100644 --- a/src/libraries/System.Runtime.Extensions/tests/TargetFrameworkNameTestApp/TargetFrameworkNameTestApp.csproj +++ b/src/libraries/System.Runtime.Extensions/tests/TargetFrameworkNameTestApp/TargetFrameworkNameTestApp.csproj @@ -4,7 +4,7 @@ false true - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release diff --git a/src/libraries/System.Runtime.Extensions/tests/TestApp/Configurations.props b/src/libraries/System.Runtime.Extensions/tests/TestApp/Configurations.props index 89d6ac0f025b9..b6e0d3ce6383b 100644 --- a/src/libraries/System.Runtime.Extensions/tests/TestApp/Configurations.props +++ b/src/libraries/System.Runtime.Extensions/tests/TestApp/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Runtime.Extensions/tests/TestApp/TestApp.csproj b/src/libraries/System.Runtime.Extensions/tests/TestApp/TestApp.csproj index bc1b9832b8587..a72e50b53b394 100644 --- a/src/libraries/System.Runtime.Extensions/tests/TestApp/TestApp.csproj +++ b/src/libraries/System.Runtime.Extensions/tests/TestApp/TestApp.csproj @@ -1,10 +1,10 @@  Exe - + .exe true - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release diff --git a/src/libraries/System.Runtime.Extensions/tests/TestAppOutsideOfTPA/Configurations.props b/src/libraries/System.Runtime.Extensions/tests/TestAppOutsideOfTPA/Configurations.props index 89d6ac0f025b9..b6e0d3ce6383b 100644 --- a/src/libraries/System.Runtime.Extensions/tests/TestAppOutsideOfTPA/Configurations.props +++ b/src/libraries/System.Runtime.Extensions/tests/TestAppOutsideOfTPA/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Runtime.Extensions/tests/TestAppOutsideOfTPA/TestAppOutsideOfTPA.csproj b/src/libraries/System.Runtime.Extensions/tests/TestAppOutsideOfTPA/TestAppOutsideOfTPA.csproj index 4fe910db9382c..d6942721a8d11 100644 --- a/src/libraries/System.Runtime.Extensions/tests/TestAppOutsideOfTPA/TestAppOutsideOfTPA.csproj +++ b/src/libraries/System.Runtime.Extensions/tests/TestAppOutsideOfTPA/TestAppOutsideOfTPA.csproj @@ -1,10 +1,10 @@  Exe - + .exe true - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release diff --git a/src/libraries/System.Runtime.Extensions/tests/VoidMainWithExitCodeApp/Configurations.props b/src/libraries/System.Runtime.Extensions/tests/VoidMainWithExitCodeApp/Configurations.props index 89d6ac0f025b9..b6e0d3ce6383b 100644 --- a/src/libraries/System.Runtime.Extensions/tests/VoidMainWithExitCodeApp/Configurations.props +++ b/src/libraries/System.Runtime.Extensions/tests/VoidMainWithExitCodeApp/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Runtime.Extensions/tests/VoidMainWithExitCodeApp/VoidMainWithExitCodeApp.csproj b/src/libraries/System.Runtime.Extensions/tests/VoidMainWithExitCodeApp/VoidMainWithExitCodeApp.csproj index e4b6cc83e5bd6..ac7952744e676 100644 --- a/src/libraries/System.Runtime.Extensions/tests/VoidMainWithExitCodeApp/VoidMainWithExitCodeApp.csproj +++ b/src/libraries/System.Runtime.Extensions/tests/VoidMainWithExitCodeApp/VoidMainWithExitCodeApp.csproj @@ -1,10 +1,10 @@  Exe - + .exe true - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release diff --git a/src/libraries/System.Runtime.Handles/System.Runtime.Handles.sln b/src/libraries/System.Runtime.Handles/System.Runtime.Handles.sln index 78b04ca0c14b4..515f3dab539a6 100644 --- a/src/libraries/System.Runtime.Handles/System.Runtime.Handles.sln +++ b/src/libraries/System.Runtime.Handles/System.Runtime.Handles.sln @@ -26,18 +26,18 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {9C77C3CA-7067-4D45-BDFE-CC62AB5C1ED5}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {9C77C3CA-7067-4D45-BDFE-CC62AB5C1ED5}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {9C77C3CA-7067-4D45-BDFE-CC62AB5C1ED5}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {9C77C3CA-7067-4D45-BDFE-CC62AB5C1ED5}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU - {D85EE71C-F05B-4331-9300-8E2833D49E19}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {D85EE71C-F05B-4331-9300-8E2833D49E19}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {D85EE71C-F05B-4331-9300-8E2833D49E19}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {D85EE71C-F05B-4331-9300-8E2833D49E19}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU - {46C4C03C-3055-4E97-858B-3E83CB862262}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {46C4C03C-3055-4E97-858B-3E83CB862262}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {46C4C03C-3055-4E97-858B-3E83CB862262}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {46C4C03C-3055-4E97-858B-3E83CB862262}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU + {9C77C3CA-7067-4D45-BDFE-CC62AB5C1ED5}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {9C77C3CA-7067-4D45-BDFE-CC62AB5C1ED5}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {9C77C3CA-7067-4D45-BDFE-CC62AB5C1ED5}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {9C77C3CA-7067-4D45-BDFE-CC62AB5C1ED5}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU + {D85EE71C-F05B-4331-9300-8E2833D49E19}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {D85EE71C-F05B-4331-9300-8E2833D49E19}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {D85EE71C-F05B-4331-9300-8E2833D49E19}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {D85EE71C-F05B-4331-9300-8E2833D49E19}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU + {46C4C03C-3055-4E97-858B-3E83CB862262}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {46C4C03C-3055-4E97-858B-3E83CB862262}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {46C4C03C-3055-4E97-858B-3E83CB862262}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {46C4C03C-3055-4E97-858B-3E83CB862262}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/src/libraries/System.Runtime.Handles/ref/Configurations.props b/src/libraries/System.Runtime.Handles/ref/Configurations.props index 89d6ac0f025b9..b6e0d3ce6383b 100644 --- a/src/libraries/System.Runtime.Handles/ref/Configurations.props +++ b/src/libraries/System.Runtime.Handles/ref/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Runtime.Handles/ref/System.Runtime.Handles.csproj b/src/libraries/System.Runtime.Handles/ref/System.Runtime.Handles.csproj index 041effbb16d81..7e4240479e36e 100644 --- a/src/libraries/System.Runtime.Handles/ref/System.Runtime.Handles.csproj +++ b/src/libraries/System.Runtime.Handles/ref/System.Runtime.Handles.csproj @@ -1,6 +1,6 @@ - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release diff --git a/src/libraries/System.Runtime.Handles/src/Configurations.props b/src/libraries/System.Runtime.Handles/src/Configurations.props index 89d6ac0f025b9..b6e0d3ce6383b 100644 --- a/src/libraries/System.Runtime.Handles/src/Configurations.props +++ b/src/libraries/System.Runtime.Handles/src/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Runtime.Handles/src/System.Runtime.Handles.csproj b/src/libraries/System.Runtime.Handles/src/System.Runtime.Handles.csproj index c715bdca20ec0..d71c490e6320d 100644 --- a/src/libraries/System.Runtime.Handles/src/System.Runtime.Handles.csproj +++ b/src/libraries/System.Runtime.Handles/src/System.Runtime.Handles.csproj @@ -2,7 +2,7 @@ System.Runtime.Handles true - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release diff --git a/src/libraries/System.Runtime.Handles/tests/Configurations.props b/src/libraries/System.Runtime.Handles/tests/Configurations.props index 89d6ac0f025b9..b6e0d3ce6383b 100644 --- a/src/libraries/System.Runtime.Handles/tests/Configurations.props +++ b/src/libraries/System.Runtime.Handles/tests/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Runtime.Handles/tests/System.Runtime.Handles.Tests.csproj b/src/libraries/System.Runtime.Handles/tests/System.Runtime.Handles.Tests.csproj index b2078333e3482..8d209e8963764 100644 --- a/src/libraries/System.Runtime.Handles/tests/System.Runtime.Handles.Tests.csproj +++ b/src/libraries/System.Runtime.Handles/tests/System.Runtime.Handles.Tests.csproj @@ -1,6 +1,6 @@ - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release true diff --git a/src/libraries/System.Runtime.InteropServices.RuntimeInformation/System.Runtime.InteropServices.RuntimeInformation.sln b/src/libraries/System.Runtime.InteropServices.RuntimeInformation/System.Runtime.InteropServices.RuntimeInformation.sln index a5bfd8ea8f994..5f094a99d996f 100644 --- a/src/libraries/System.Runtime.InteropServices.RuntimeInformation/System.Runtime.InteropServices.RuntimeInformation.sln +++ b/src/libraries/System.Runtime.InteropServices.RuntimeInformation/System.Runtime.InteropServices.RuntimeInformation.sln @@ -26,18 +26,18 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {9B4D1DA9-AA4C-428F-9F66-D45C924025A5}.Debug|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Debug|Any CPU - {9B4D1DA9-AA4C-428F-9F66-D45C924025A5}.Debug|Any CPU.Build.0 = netcoreapp-Windows_NT-Debug|Any CPU - {9B4D1DA9-AA4C-428F-9F66-D45C924025A5}.Release|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Release|Any CPU - {9B4D1DA9-AA4C-428F-9F66-D45C924025A5}.Release|Any CPU.Build.0 = netcoreapp-Windows_NT-Release|Any CPU - {1CBC030D-B5D3-4AB5-A9FD-24EC5F6F38D2}.Debug|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Debug|Any CPU - {1CBC030D-B5D3-4AB5-A9FD-24EC5F6F38D2}.Debug|Any CPU.Build.0 = netcoreapp-Windows_NT-Debug|Any CPU - {1CBC030D-B5D3-4AB5-A9FD-24EC5F6F38D2}.Release|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Release|Any CPU - {1CBC030D-B5D3-4AB5-A9FD-24EC5F6F38D2}.Release|Any CPU.Build.0 = netcoreapp-Windows_NT-Release|Any CPU - {9E5D12CD-67C1-4A01-80DF-02CEC3154BB7}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {9E5D12CD-67C1-4A01-80DF-02CEC3154BB7}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {9E5D12CD-67C1-4A01-80DF-02CEC3154BB7}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {9E5D12CD-67C1-4A01-80DF-02CEC3154BB7}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU + {9B4D1DA9-AA4C-428F-9F66-D45C924025A5}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Debug|Any CPU + {9B4D1DA9-AA4C-428F-9F66-D45C924025A5}.Debug|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Debug|Any CPU + {9B4D1DA9-AA4C-428F-9F66-D45C924025A5}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Release|Any CPU + {9B4D1DA9-AA4C-428F-9F66-D45C924025A5}.Release|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Release|Any CPU + {1CBC030D-B5D3-4AB5-A9FD-24EC5F6F38D2}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Debug|Any CPU + {1CBC030D-B5D3-4AB5-A9FD-24EC5F6F38D2}.Debug|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Debug|Any CPU + {1CBC030D-B5D3-4AB5-A9FD-24EC5F6F38D2}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Release|Any CPU + {1CBC030D-B5D3-4AB5-A9FD-24EC5F6F38D2}.Release|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Release|Any CPU + {9E5D12CD-67C1-4A01-80DF-02CEC3154BB7}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {9E5D12CD-67C1-4A01-80DF-02CEC3154BB7}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {9E5D12CD-67C1-4A01-80DF-02CEC3154BB7}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {9E5D12CD-67C1-4A01-80DF-02CEC3154BB7}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/src/libraries/System.Runtime.InteropServices.RuntimeInformation/ref/Configurations.props b/src/libraries/System.Runtime.InteropServices.RuntimeInformation/ref/Configurations.props index 89d6ac0f025b9..b6e0d3ce6383b 100644 --- a/src/libraries/System.Runtime.InteropServices.RuntimeInformation/ref/Configurations.props +++ b/src/libraries/System.Runtime.InteropServices.RuntimeInformation/ref/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Runtime.InteropServices.RuntimeInformation/ref/System.Runtime.InteropServices.RuntimeInformation.csproj b/src/libraries/System.Runtime.InteropServices.RuntimeInformation/ref/System.Runtime.InteropServices.RuntimeInformation.csproj index 7b8bdf7d76d9b..61183a9f9089b 100644 --- a/src/libraries/System.Runtime.InteropServices.RuntimeInformation/ref/System.Runtime.InteropServices.RuntimeInformation.csproj +++ b/src/libraries/System.Runtime.InteropServices.RuntimeInformation/ref/System.Runtime.InteropServices.RuntimeInformation.csproj @@ -1,7 +1,7 @@ enable - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release diff --git a/src/libraries/System.Runtime.InteropServices.RuntimeInformation/src/Configurations.props b/src/libraries/System.Runtime.InteropServices.RuntimeInformation/src/Configurations.props index 1e8dd5d9394b8..30c654bebfdd7 100644 --- a/src/libraries/System.Runtime.InteropServices.RuntimeInformation/src/Configurations.props +++ b/src/libraries/System.Runtime.InteropServices.RuntimeInformation/src/Configurations.props @@ -1,8 +1,8 @@  - netcoreapp-Unix; - netcoreapp-Windows_NT; + $(NetCoreAppCurrent)-Unix; + $(NetCoreAppCurrent)-Windows_NT; \ No newline at end of file diff --git a/src/libraries/System.Runtime.InteropServices.RuntimeInformation/src/System.Runtime.InteropServices.RuntimeInformation.csproj b/src/libraries/System.Runtime.InteropServices.RuntimeInformation/src/System.Runtime.InteropServices.RuntimeInformation.csproj index c915eae1250c7..959e8cf8cd8c5 100644 --- a/src/libraries/System.Runtime.InteropServices.RuntimeInformation/src/System.Runtime.InteropServices.RuntimeInformation.csproj +++ b/src/libraries/System.Runtime.InteropServices.RuntimeInformation/src/System.Runtime.InteropServices.RuntimeInformation.csproj @@ -3,7 +3,7 @@ System.Runtime.InteropServices true enable - netcoreapp-Unix-Debug;netcoreapp-Unix-Release;netcoreapp-Windows_NT-Debug;netcoreapp-Windows_NT-Release + $(NetCoreAppCurrent)-Unix-Debug;$(NetCoreAppCurrent)-Unix-Release;$(NetCoreAppCurrent)-Windows_NT-Debug;$(NetCoreAppCurrent)-Windows_NT-Release diff --git a/src/libraries/System.Runtime.InteropServices.RuntimeInformation/tests/Configurations.props b/src/libraries/System.Runtime.InteropServices.RuntimeInformation/tests/Configurations.props index adabcc0290e8a..c10c0d25a71d5 100644 --- a/src/libraries/System.Runtime.InteropServices.RuntimeInformation/tests/Configurations.props +++ b/src/libraries/System.Runtime.InteropServices.RuntimeInformation/tests/Configurations.props @@ -1,8 +1,8 @@  - netcoreapp-Windows_NT; - netcoreapp-Unix; + $(NetCoreAppCurrent)-Windows_NT; + $(NetCoreAppCurrent)-Unix; diff --git a/src/libraries/System.Runtime.InteropServices.RuntimeInformation/tests/System.Runtime.InteropServices.RuntimeInformation.Tests.csproj b/src/libraries/System.Runtime.InteropServices.RuntimeInformation/tests/System.Runtime.InteropServices.RuntimeInformation.Tests.csproj index 3748506f6deb1..21a0333067353 100644 --- a/src/libraries/System.Runtime.InteropServices.RuntimeInformation/tests/System.Runtime.InteropServices.RuntimeInformation.Tests.csproj +++ b/src/libraries/System.Runtime.InteropServices.RuntimeInformation/tests/System.Runtime.InteropServices.RuntimeInformation.Tests.csproj @@ -1,6 +1,6 @@ - netcoreapp-Unix-Debug;netcoreapp-Unix-Release;netcoreapp-Windows_NT-Debug;netcoreapp-Windows_NT-Release + $(NetCoreAppCurrent)-Unix-Debug;$(NetCoreAppCurrent)-Unix-Release;$(NetCoreAppCurrent)-Windows_NT-Debug;$(NetCoreAppCurrent)-Windows_NT-Release diff --git a/src/libraries/System.Runtime.InteropServices.WindowsRuntime/System.Runtime.InteropServices.WindowsRuntime.sln b/src/libraries/System.Runtime.InteropServices.WindowsRuntime/System.Runtime.InteropServices.WindowsRuntime.sln index 0a5228e6efce4..efb2716040ec4 100644 --- a/src/libraries/System.Runtime.InteropServices.WindowsRuntime/System.Runtime.InteropServices.WindowsRuntime.sln +++ b/src/libraries/System.Runtime.InteropServices.WindowsRuntime/System.Runtime.InteropServices.WindowsRuntime.sln @@ -26,18 +26,18 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {27F624C8-06E3-455D-B5D1-C0FEB343EFAA}.Debug|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Debug|Any CPU - {27F624C8-06E3-455D-B5D1-C0FEB343EFAA}.Debug|Any CPU.Build.0 = netcoreapp-Windows_NT-Debug|Any CPU - {27F624C8-06E3-455D-B5D1-C0FEB343EFAA}.Release|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Release|Any CPU - {27F624C8-06E3-455D-B5D1-C0FEB343EFAA}.Release|Any CPU.Build.0 = netcoreapp-Windows_NT-Release|Any CPU - {5655C5E4-9B76-489B-87AF-42BD60570A00}.Debug|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Debug|Any CPU - {5655C5E4-9B76-489B-87AF-42BD60570A00}.Debug|Any CPU.Build.0 = netcoreapp-Windows_NT-Debug|Any CPU - {5655C5E4-9B76-489B-87AF-42BD60570A00}.Release|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Release|Any CPU - {5655C5E4-9B76-489B-87AF-42BD60570A00}.Release|Any CPU.Build.0 = netcoreapp-Windows_NT-Release|Any CPU - {DC485335-D0D7-4E28-9593-445B7B6BEFA7}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {DC485335-D0D7-4E28-9593-445B7B6BEFA7}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {DC485335-D0D7-4E28-9593-445B7B6BEFA7}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {DC485335-D0D7-4E28-9593-445B7B6BEFA7}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU + {27F624C8-06E3-455D-B5D1-C0FEB343EFAA}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Debug|Any CPU + {27F624C8-06E3-455D-B5D1-C0FEB343EFAA}.Debug|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Debug|Any CPU + {27F624C8-06E3-455D-B5D1-C0FEB343EFAA}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Release|Any CPU + {27F624C8-06E3-455D-B5D1-C0FEB343EFAA}.Release|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Release|Any CPU + {5655C5E4-9B76-489B-87AF-42BD60570A00}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Debug|Any CPU + {5655C5E4-9B76-489B-87AF-42BD60570A00}.Debug|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Debug|Any CPU + {5655C5E4-9B76-489B-87AF-42BD60570A00}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Release|Any CPU + {5655C5E4-9B76-489B-87AF-42BD60570A00}.Release|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Release|Any CPU + {DC485335-D0D7-4E28-9593-445B7B6BEFA7}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {DC485335-D0D7-4E28-9593-445B7B6BEFA7}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {DC485335-D0D7-4E28-9593-445B7B6BEFA7}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {DC485335-D0D7-4E28-9593-445B7B6BEFA7}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/src/libraries/System.Runtime.InteropServices.WindowsRuntime/ref/Configurations.props b/src/libraries/System.Runtime.InteropServices.WindowsRuntime/ref/Configurations.props index 89d6ac0f025b9..b6e0d3ce6383b 100644 --- a/src/libraries/System.Runtime.InteropServices.WindowsRuntime/ref/Configurations.props +++ b/src/libraries/System.Runtime.InteropServices.WindowsRuntime/ref/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Runtime.InteropServices.WindowsRuntime/ref/System.Runtime.InteropServices.WindowsRuntime.csproj b/src/libraries/System.Runtime.InteropServices.WindowsRuntime/ref/System.Runtime.InteropServices.WindowsRuntime.csproj index b2ccfd9d98cd1..459a8c77ca954 100644 --- a/src/libraries/System.Runtime.InteropServices.WindowsRuntime/ref/System.Runtime.InteropServices.WindowsRuntime.csproj +++ b/src/libraries/System.Runtime.InteropServices.WindowsRuntime/ref/System.Runtime.InteropServices.WindowsRuntime.csproj @@ -1,6 +1,6 @@ - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release enable diff --git a/src/libraries/System.Runtime.InteropServices.WindowsRuntime/src/Configurations.props b/src/libraries/System.Runtime.InteropServices.WindowsRuntime/src/Configurations.props index ac4c08c5c25a9..8129c93ef8403 100644 --- a/src/libraries/System.Runtime.InteropServices.WindowsRuntime/src/Configurations.props +++ b/src/libraries/System.Runtime.InteropServices.WindowsRuntime/src/Configurations.props @@ -1,8 +1,8 @@  - netcoreapp-Windows_NT; - netcoreapp; + $(NetCoreAppCurrent)-Windows_NT; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Runtime.InteropServices.WindowsRuntime/src/System.Runtime.InteropServices.WindowsRuntime.csproj b/src/libraries/System.Runtime.InteropServices.WindowsRuntime/src/System.Runtime.InteropServices.WindowsRuntime.csproj index 042b4b977d259..45c6b715a0a5c 100644 --- a/src/libraries/System.Runtime.InteropServices.WindowsRuntime/src/System.Runtime.InteropServices.WindowsRuntime.csproj +++ b/src/libraries/System.Runtime.InteropServices.WindowsRuntime/src/System.Runtime.InteropServices.WindowsRuntime.csproj @@ -2,7 +2,7 @@ System.Runtime.InteropServices.WindowsRuntime true - netcoreapp-Debug;netcoreapp-Release;netcoreapp-Windows_NT-Debug;netcoreapp-Windows_NT-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release;$(NetCoreAppCurrent)-Windows_NT-Debug;$(NetCoreAppCurrent)-Windows_NT-Release enable diff --git a/src/libraries/System.Runtime.InteropServices.WindowsRuntime/tests/Configurations.props b/src/libraries/System.Runtime.InteropServices.WindowsRuntime/tests/Configurations.props index ac4c08c5c25a9..8129c93ef8403 100644 --- a/src/libraries/System.Runtime.InteropServices.WindowsRuntime/tests/Configurations.props +++ b/src/libraries/System.Runtime.InteropServices.WindowsRuntime/tests/Configurations.props @@ -1,8 +1,8 @@  - netcoreapp-Windows_NT; - netcoreapp; + $(NetCoreAppCurrent)-Windows_NT; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Runtime.InteropServices.WindowsRuntime/tests/System.Runtime.InteropServices.WindowsRuntime.Tests.csproj b/src/libraries/System.Runtime.InteropServices.WindowsRuntime/tests/System.Runtime.InteropServices.WindowsRuntime.Tests.csproj index f34a4f1683fa5..6fb6b6f395594 100644 --- a/src/libraries/System.Runtime.InteropServices.WindowsRuntime/tests/System.Runtime.InteropServices.WindowsRuntime.Tests.csproj +++ b/src/libraries/System.Runtime.InteropServices.WindowsRuntime/tests/System.Runtime.InteropServices.WindowsRuntime.Tests.csproj @@ -1,6 +1,6 @@ - netcoreapp-Debug;netcoreapp-Release;netcoreapp-Windows_NT-Debug;netcoreapp-Windows_NT-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release;$(NetCoreAppCurrent)-Windows_NT-Debug;$(NetCoreAppCurrent)-Windows_NT-Release true diff --git a/src/libraries/System.Runtime.InteropServices/System.Runtime.InteropServices.sln b/src/libraries/System.Runtime.InteropServices/System.Runtime.InteropServices.sln index 122c296f20c7c..1d9b19e9afc7e 100644 --- a/src/libraries/System.Runtime.InteropServices/System.Runtime.InteropServices.sln +++ b/src/libraries/System.Runtime.InteropServices/System.Runtime.InteropServices.sln @@ -26,18 +26,18 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {A824F4CD-935B-4496-A1B2-C3664936DA7B}.Debug|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Debug|Any CPU - {A824F4CD-935B-4496-A1B2-C3664936DA7B}.Debug|Any CPU.Build.0 = netcoreapp-Windows_NT-Debug|Any CPU - {A824F4CD-935B-4496-A1B2-C3664936DA7B}.Release|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Release|Any CPU - {A824F4CD-935B-4496-A1B2-C3664936DA7B}.Release|Any CPU.Build.0 = netcoreapp-Windows_NT-Release|Any CPU - {EC6AA4D9-B3E8-4CCA-8AB1-8BBFD89266AE}.Debug|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Debug|Any CPU - {EC6AA4D9-B3E8-4CCA-8AB1-8BBFD89266AE}.Debug|Any CPU.Build.0 = netcoreapp-Windows_NT-Debug|Any CPU - {EC6AA4D9-B3E8-4CCA-8AB1-8BBFD89266AE}.Release|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Release|Any CPU - {EC6AA4D9-B3E8-4CCA-8AB1-8BBFD89266AE}.Release|Any CPU.Build.0 = netcoreapp-Windows_NT-Release|Any CPU - {B17014F1-D902-417F-89B0-271204695831}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {B17014F1-D902-417F-89B0-271204695831}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {B17014F1-D902-417F-89B0-271204695831}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {B17014F1-D902-417F-89B0-271204695831}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU + {A824F4CD-935B-4496-A1B2-C3664936DA7B}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Debug|Any CPU + {A824F4CD-935B-4496-A1B2-C3664936DA7B}.Debug|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Debug|Any CPU + {A824F4CD-935B-4496-A1B2-C3664936DA7B}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Release|Any CPU + {A824F4CD-935B-4496-A1B2-C3664936DA7B}.Release|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Release|Any CPU + {EC6AA4D9-B3E8-4CCA-8AB1-8BBFD89266AE}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Debug|Any CPU + {EC6AA4D9-B3E8-4CCA-8AB1-8BBFD89266AE}.Debug|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Debug|Any CPU + {EC6AA4D9-B3E8-4CCA-8AB1-8BBFD89266AE}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Release|Any CPU + {EC6AA4D9-B3E8-4CCA-8AB1-8BBFD89266AE}.Release|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Release|Any CPU + {B17014F1-D902-417F-89B0-271204695831}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {B17014F1-D902-417F-89B0-271204695831}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {B17014F1-D902-417F-89B0-271204695831}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {B17014F1-D902-417F-89B0-271204695831}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/src/libraries/System.Runtime.InteropServices/ref/Configurations.props b/src/libraries/System.Runtime.InteropServices/ref/Configurations.props index 89d6ac0f025b9..b6e0d3ce6383b 100644 --- a/src/libraries/System.Runtime.InteropServices/ref/Configurations.props +++ b/src/libraries/System.Runtime.InteropServices/ref/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Runtime.InteropServices/ref/System.Runtime.InteropServices.csproj b/src/libraries/System.Runtime.InteropServices/ref/System.Runtime.InteropServices.csproj index 1d4dc62a0f891..c5708afe7bc47 100644 --- a/src/libraries/System.Runtime.InteropServices/ref/System.Runtime.InteropServices.csproj +++ b/src/libraries/System.Runtime.InteropServices/ref/System.Runtime.InteropServices.csproj @@ -4,7 +4,7 @@ to its own obsolete API. --> $(NoWarn);618 true - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release enable diff --git a/src/libraries/System.Runtime.InteropServices/src/Configurations.props b/src/libraries/System.Runtime.InteropServices/src/Configurations.props index adabcc0290e8a..c10c0d25a71d5 100644 --- a/src/libraries/System.Runtime.InteropServices/src/Configurations.props +++ b/src/libraries/System.Runtime.InteropServices/src/Configurations.props @@ -1,8 +1,8 @@  - netcoreapp-Windows_NT; - netcoreapp-Unix; + $(NetCoreAppCurrent)-Windows_NT; + $(NetCoreAppCurrent)-Unix; diff --git a/src/libraries/System.Runtime.InteropServices/src/System.Runtime.InteropServices.csproj b/src/libraries/System.Runtime.InteropServices/src/System.Runtime.InteropServices.csproj index 0285a6cc3918a..991557456a342 100644 --- a/src/libraries/System.Runtime.InteropServices/src/System.Runtime.InteropServices.csproj +++ b/src/libraries/System.Runtime.InteropServices/src/System.Runtime.InteropServices.csproj @@ -5,7 +5,7 @@ true true enable - netcoreapp-Unix-Debug;netcoreapp-Unix-Release;netcoreapp-Windows_NT-Debug;netcoreapp-Windows_NT-Release + $(NetCoreAppCurrent)-Unix-Debug;$(NetCoreAppCurrent)-Unix-Release;$(NetCoreAppCurrent)-Windows_NT-Debug;$(NetCoreAppCurrent)-Windows_NT-Release diff --git a/src/libraries/System.Runtime.InteropServices/tests/Configurations.props b/src/libraries/System.Runtime.InteropServices/tests/Configurations.props index c237ccfef3356..85e1a435929ad 100644 --- a/src/libraries/System.Runtime.InteropServices/tests/Configurations.props +++ b/src/libraries/System.Runtime.InteropServices/tests/Configurations.props @@ -1,9 +1,9 @@  - netcoreapp; - netcoreapp-Windows_NT; - netcoreapp-Unix; + $(NetCoreAppCurrent); + $(NetCoreAppCurrent)-Windows_NT; + $(NetCoreAppCurrent)-Unix; \ No newline at end of file diff --git a/src/libraries/System.Runtime.InteropServices/tests/System.Runtime.InteropServices.Tests.csproj b/src/libraries/System.Runtime.InteropServices/tests/System.Runtime.InteropServices.Tests.csproj index 6b3fccdfa263b..deb6bfd89ced7 100644 --- a/src/libraries/System.Runtime.InteropServices/tests/System.Runtime.InteropServices.Tests.csproj +++ b/src/libraries/System.Runtime.InteropServices/tests/System.Runtime.InteropServices.Tests.csproj @@ -1,7 +1,7 @@ true - netcoreapp-Debug;netcoreapp-Release;netcoreapp-Unix-Debug;netcoreapp-Unix-Release;netcoreapp-Windows_NT-Debug;netcoreapp-Windows_NT-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release;$(NetCoreAppCurrent)-Unix-Debug;$(NetCoreAppCurrent)-Unix-Release;$(NetCoreAppCurrent)-Windows_NT-Debug;$(NetCoreAppCurrent)-Windows_NT-Release true diff --git a/src/libraries/System.Runtime.Intrinsics.Experimental/System.Runtime.Intrinsics.Experimental.sln b/src/libraries/System.Runtime.Intrinsics.Experimental/System.Runtime.Intrinsics.Experimental.sln index 9123ecd2738fb..affac9a4b4089 100644 --- a/src/libraries/System.Runtime.Intrinsics.Experimental/System.Runtime.Intrinsics.Experimental.sln +++ b/src/libraries/System.Runtime.Intrinsics.Experimental/System.Runtime.Intrinsics.Experimental.sln @@ -19,14 +19,14 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {543FBFE5-E9E4-4631-8242-911A707FE818}.Debug|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Debug|Any CPU - {543FBFE5-E9E4-4631-8242-911A707FE818}.Debug|Any CPU.Build.0 = netcoreapp-Windows_NT-Debug|Any CPU - {543FBFE5-E9E4-4631-8242-911A707FE818}.Release|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Release|Any CPU - {543FBFE5-E9E4-4631-8242-911A707FE818}.Release|Any CPU.Build.0 = netcoreapp-Windows_NT-Release|Any CPU - {4074AF8C-8C65-486C-960E-F45DAAB0BE0D}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {4074AF8C-8C65-486C-960E-F45DAAB0BE0D}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {4074AF8C-8C65-486C-960E-F45DAAB0BE0D}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {4074AF8C-8C65-486C-960E-F45DAAB0BE0D}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU + {543FBFE5-E9E4-4631-8242-911A707FE818}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Debug|Any CPU + {543FBFE5-E9E4-4631-8242-911A707FE818}.Debug|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Debug|Any CPU + {543FBFE5-E9E4-4631-8242-911A707FE818}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Release|Any CPU + {543FBFE5-E9E4-4631-8242-911A707FE818}.Release|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Release|Any CPU + {4074AF8C-8C65-486C-960E-F45DAAB0BE0D}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {4074AF8C-8C65-486C-960E-F45DAAB0BE0D}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {4074AF8C-8C65-486C-960E-F45DAAB0BE0D}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {4074AF8C-8C65-486C-960E-F45DAAB0BE0D}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/src/libraries/System.Runtime.Intrinsics.Experimental/ref/Configurations.props b/src/libraries/System.Runtime.Intrinsics.Experimental/ref/Configurations.props index 89d6ac0f025b9..b6e0d3ce6383b 100644 --- a/src/libraries/System.Runtime.Intrinsics.Experimental/ref/Configurations.props +++ b/src/libraries/System.Runtime.Intrinsics.Experimental/ref/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Runtime.Intrinsics.Experimental/ref/System.Runtime.Intrinsics.Experimental.csproj b/src/libraries/System.Runtime.Intrinsics.Experimental/ref/System.Runtime.Intrinsics.Experimental.csproj index c22d54f500870..88c67fd679e59 100644 --- a/src/libraries/System.Runtime.Intrinsics.Experimental/ref/System.Runtime.Intrinsics.Experimental.csproj +++ b/src/libraries/System.Runtime.Intrinsics.Experimental/ref/System.Runtime.Intrinsics.Experimental.csproj @@ -1,7 +1,7 @@ true - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release diff --git a/src/libraries/System.Runtime.Intrinsics.Experimental/src/Configurations.props b/src/libraries/System.Runtime.Intrinsics.Experimental/src/Configurations.props index adabcc0290e8a..c10c0d25a71d5 100644 --- a/src/libraries/System.Runtime.Intrinsics.Experimental/src/Configurations.props +++ b/src/libraries/System.Runtime.Intrinsics.Experimental/src/Configurations.props @@ -1,8 +1,8 @@  - netcoreapp-Windows_NT; - netcoreapp-Unix; + $(NetCoreAppCurrent)-Windows_NT; + $(NetCoreAppCurrent)-Unix; diff --git a/src/libraries/System.Runtime.Intrinsics.Experimental/src/System.Runtime.Intrinsics.Experimental.csproj b/src/libraries/System.Runtime.Intrinsics.Experimental/src/System.Runtime.Intrinsics.Experimental.csproj index 2b3cf47f0dc9c..a4e6fb04a23fb 100644 --- a/src/libraries/System.Runtime.Intrinsics.Experimental/src/System.Runtime.Intrinsics.Experimental.csproj +++ b/src/libraries/System.Runtime.Intrinsics.Experimental/src/System.Runtime.Intrinsics.Experimental.csproj @@ -2,7 +2,7 @@ System.Runtime.Intrinsics.Experimental true - netcoreapp-Unix-Debug;netcoreapp-Unix-Release;netcoreapp-Windows_NT-Debug;netcoreapp-Windows_NT-Release + $(NetCoreAppCurrent)-Unix-Debug;$(NetCoreAppCurrent)-Unix-Release;$(NetCoreAppCurrent)-Windows_NT-Debug;$(NetCoreAppCurrent)-Windows_NT-Release diff --git a/src/libraries/System.Runtime.Intrinsics/System.Runtime.Intrinsics.sln b/src/libraries/System.Runtime.Intrinsics/System.Runtime.Intrinsics.sln index 91551b7cbe126..36edc807d934b 100644 --- a/src/libraries/System.Runtime.Intrinsics/System.Runtime.Intrinsics.sln +++ b/src/libraries/System.Runtime.Intrinsics/System.Runtime.Intrinsics.sln @@ -19,14 +19,14 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {315E3C60-A5D9-4F47-A940-D57395EED606}.Debug|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Debug|Any CPU - {315E3C60-A5D9-4F47-A940-D57395EED606}.Debug|Any CPU.Build.0 = netcoreapp-Windows_NT-Debug|Any CPU - {315E3C60-A5D9-4F47-A940-D57395EED606}.Release|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Release|Any CPU - {315E3C60-A5D9-4F47-A940-D57395EED606}.Release|Any CPU.Build.0 = netcoreapp-Windows_NT-Release|Any CPU - {F9097917-AFA3-4E3E-A592-BFA2C483C7E2}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {F9097917-AFA3-4E3E-A592-BFA2C483C7E2}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {F9097917-AFA3-4E3E-A592-BFA2C483C7E2}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {F9097917-AFA3-4E3E-A592-BFA2C483C7E2}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU + {315E3C60-A5D9-4F47-A940-D57395EED606}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Debug|Any CPU + {315E3C60-A5D9-4F47-A940-D57395EED606}.Debug|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Debug|Any CPU + {315E3C60-A5D9-4F47-A940-D57395EED606}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Release|Any CPU + {315E3C60-A5D9-4F47-A940-D57395EED606}.Release|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Release|Any CPU + {F9097917-AFA3-4E3E-A592-BFA2C483C7E2}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {F9097917-AFA3-4E3E-A592-BFA2C483C7E2}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {F9097917-AFA3-4E3E-A592-BFA2C483C7E2}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {F9097917-AFA3-4E3E-A592-BFA2C483C7E2}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/src/libraries/System.Runtime.Intrinsics/ref/Configurations.props b/src/libraries/System.Runtime.Intrinsics/ref/Configurations.props index 89d6ac0f025b9..b6e0d3ce6383b 100644 --- a/src/libraries/System.Runtime.Intrinsics/ref/Configurations.props +++ b/src/libraries/System.Runtime.Intrinsics/ref/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Runtime.Intrinsics/ref/System.Runtime.Intrinsics.csproj b/src/libraries/System.Runtime.Intrinsics/ref/System.Runtime.Intrinsics.csproj index 2b7d3f1a2b556..1d488d458c73b 100644 --- a/src/libraries/System.Runtime.Intrinsics/ref/System.Runtime.Intrinsics.csproj +++ b/src/libraries/System.Runtime.Intrinsics/ref/System.Runtime.Intrinsics.csproj @@ -1,7 +1,7 @@ true - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release enable diff --git a/src/libraries/System.Runtime.Intrinsics/src/Configurations.props b/src/libraries/System.Runtime.Intrinsics/src/Configurations.props index db389259c06b1..f3922475141ae 100644 --- a/src/libraries/System.Runtime.Intrinsics/src/Configurations.props +++ b/src/libraries/System.Runtime.Intrinsics/src/Configurations.props @@ -1,8 +1,8 @@  - netcoreapp-Windows_NT; - netcoreapp-Unix; + $(NetCoreAppCurrent)-Windows_NT; + $(NetCoreAppCurrent)-Unix; diff --git a/src/libraries/System.Runtime.Intrinsics/src/System.Runtime.Intrinsics.csproj b/src/libraries/System.Runtime.Intrinsics/src/System.Runtime.Intrinsics.csproj index 799f70e5860bf..c9c65cd8a60c5 100644 --- a/src/libraries/System.Runtime.Intrinsics/src/System.Runtime.Intrinsics.csproj +++ b/src/libraries/System.Runtime.Intrinsics/src/System.Runtime.Intrinsics.csproj @@ -1,7 +1,7 @@ true - netcoreapp-Unix-Debug;netcoreapp-Unix-Release;netcoreapp-Windows_NT-Debug;netcoreapp-Windows_NT-Release + $(NetCoreAppCurrent)-Unix-Debug;$(NetCoreAppCurrent)-Unix-Release;$(NetCoreAppCurrent)-Windows_NT-Debug;$(NetCoreAppCurrent)-Windows_NT-Release diff --git a/src/libraries/System.Runtime.Loader/System.Runtime.Loader.sln b/src/libraries/System.Runtime.Loader/System.Runtime.Loader.sln index 19034a6722fd0..34fd0b19a6c7f 100644 --- a/src/libraries/System.Runtime.Loader/System.Runtime.Loader.sln +++ b/src/libraries/System.Runtime.Loader/System.Runtime.Loader.sln @@ -71,54 +71,54 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {701CB3BC-00DC-435D-BDE4-C5FC29A708A7}.Debug|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Debug|Any CPU - {701CB3BC-00DC-435D-BDE4-C5FC29A708A7}.Debug|Any CPU.Build.0 = netcoreapp-Windows_NT-Debug|Any CPU - {701CB3BC-00DC-435D-BDE4-C5FC29A708A7}.Release|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Release|Any CPU - {701CB3BC-00DC-435D-BDE4-C5FC29A708A7}.Release|Any CPU.Build.0 = netcoreapp-Windows_NT-Release|Any CPU - {95DBE3B0-AA86-4366-BB8A-E04B534365F3}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {95DBE3B0-AA86-4366-BB8A-E04B534365F3}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {95DBE3B0-AA86-4366-BB8A-E04B534365F3}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {95DBE3B0-AA86-4366-BB8A-E04B534365F3}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU - {701CB3BC-00DC-435D-BDE4-C5FC29A708A8}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {701CB3BC-00DC-435D-BDE4-C5FC29A708A8}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {701CB3BC-00DC-435D-BDE4-C5FC29A708A8}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {701CB3BC-00DC-435D-BDE4-C5FC29A708A8}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU - {701CB3BC-00DC-435D-BDE4-C5FC29A708A9}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {701CB3BC-00DC-435D-BDE4-C5FC29A708A9}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {701CB3BC-00DC-435D-BDE4-C5FC29A708A9}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {701CB3BC-00DC-435D-BDE4-C5FC29A708A9}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU - {2CD5A44C-65B4-4C51-AC7B-B2938307848A}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {2CD5A44C-65B4-4C51-AC7B-B2938307848A}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {2CD5A44C-65B4-4C51-AC7B-B2938307848A}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {2CD5A44C-65B4-4C51-AC7B-B2938307848A}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU - {7FA764E6-47A3-42B5-923B-7D5DBC611E8E}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {7FA764E6-47A3-42B5-923B-7D5DBC611E8E}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {7FA764E6-47A3-42B5-923B-7D5DBC611E8E}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {7FA764E6-47A3-42B5-923B-7D5DBC611E8E}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU - {396D6EBF-60BD-4DAF-8783-FB403E070A57}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {396D6EBF-60BD-4DAF-8783-FB403E070A57}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {396D6EBF-60BD-4DAF-8783-FB403E070A57}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {396D6EBF-60BD-4DAF-8783-FB403E070A57}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU - {E3C33774-AA3D-4CED-A7A6-BDF9A7F100DF}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {E3C33774-AA3D-4CED-A7A6-BDF9A7F100DF}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {E3C33774-AA3D-4CED-A7A6-BDF9A7F100DF}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {E3C33774-AA3D-4CED-A7A6-BDF9A7F100DF}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU - {FBF73A8E-7889-4C7D-AFC3-509B821D0FC6}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {FBF73A8E-7889-4C7D-AFC3-509B821D0FC6}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {FBF73A8E-7889-4C7D-AFC3-509B821D0FC6}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {FBF73A8E-7889-4C7D-AFC3-509B821D0FC6}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU - {F430F54A-7F28-4707-8006-F628B576664E}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {F430F54A-7F28-4707-8006-F628B576664E}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {F430F54A-7F28-4707-8006-F628B576664E}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {F430F54A-7F28-4707-8006-F628B576664E}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU - {485A65F0-51C9-4B95-A7A8-A4860C231E67}.Debug|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Debug|Any CPU - {485A65F0-51C9-4B95-A7A8-A4860C231E67}.Debug|Any CPU.Build.0 = netcoreapp-Windows_NT-Debug|Any CPU - {485A65F0-51C9-4B95-A7A8-A4860C231E67}.Release|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Release|Any CPU - {485A65F0-51C9-4B95-A7A8-A4860C231E67}.Release|Any CPU.Build.0 = netcoreapp-Windows_NT-Release|Any CPU - {FB507A82-ACDD-4809-A030-6F9372A71194}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {FB507A82-ACDD-4809-A030-6F9372A71194}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {FB507A82-ACDD-4809-A030-6F9372A71194}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {FB507A82-ACDD-4809-A030-6F9372A71194}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU + {701CB3BC-00DC-435D-BDE4-C5FC29A708A7}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Debug|Any CPU + {701CB3BC-00DC-435D-BDE4-C5FC29A708A7}.Debug|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Debug|Any CPU + {701CB3BC-00DC-435D-BDE4-C5FC29A708A7}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Release|Any CPU + {701CB3BC-00DC-435D-BDE4-C5FC29A708A7}.Release|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Release|Any CPU + {95DBE3B0-AA86-4366-BB8A-E04B534365F3}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {95DBE3B0-AA86-4366-BB8A-E04B534365F3}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {95DBE3B0-AA86-4366-BB8A-E04B534365F3}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {95DBE3B0-AA86-4366-BB8A-E04B534365F3}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU + {701CB3BC-00DC-435D-BDE4-C5FC29A708A8}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {701CB3BC-00DC-435D-BDE4-C5FC29A708A8}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {701CB3BC-00DC-435D-BDE4-C5FC29A708A8}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {701CB3BC-00DC-435D-BDE4-C5FC29A708A8}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU + {701CB3BC-00DC-435D-BDE4-C5FC29A708A9}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {701CB3BC-00DC-435D-BDE4-C5FC29A708A9}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {701CB3BC-00DC-435D-BDE4-C5FC29A708A9}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {701CB3BC-00DC-435D-BDE4-C5FC29A708A9}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU + {2CD5A44C-65B4-4C51-AC7B-B2938307848A}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {2CD5A44C-65B4-4C51-AC7B-B2938307848A}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {2CD5A44C-65B4-4C51-AC7B-B2938307848A}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {2CD5A44C-65B4-4C51-AC7B-B2938307848A}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU + {7FA764E6-47A3-42B5-923B-7D5DBC611E8E}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {7FA764E6-47A3-42B5-923B-7D5DBC611E8E}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {7FA764E6-47A3-42B5-923B-7D5DBC611E8E}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {7FA764E6-47A3-42B5-923B-7D5DBC611E8E}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU + {396D6EBF-60BD-4DAF-8783-FB403E070A57}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {396D6EBF-60BD-4DAF-8783-FB403E070A57}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {396D6EBF-60BD-4DAF-8783-FB403E070A57}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {396D6EBF-60BD-4DAF-8783-FB403E070A57}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU + {E3C33774-AA3D-4CED-A7A6-BDF9A7F100DF}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {E3C33774-AA3D-4CED-A7A6-BDF9A7F100DF}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {E3C33774-AA3D-4CED-A7A6-BDF9A7F100DF}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {E3C33774-AA3D-4CED-A7A6-BDF9A7F100DF}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU + {FBF73A8E-7889-4C7D-AFC3-509B821D0FC6}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {FBF73A8E-7889-4C7D-AFC3-509B821D0FC6}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {FBF73A8E-7889-4C7D-AFC3-509B821D0FC6}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {FBF73A8E-7889-4C7D-AFC3-509B821D0FC6}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU + {F430F54A-7F28-4707-8006-F628B576664E}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {F430F54A-7F28-4707-8006-F628B576664E}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {F430F54A-7F28-4707-8006-F628B576664E}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {F430F54A-7F28-4707-8006-F628B576664E}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU + {485A65F0-51C9-4B95-A7A8-A4860C231E67}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Debug|Any CPU + {485A65F0-51C9-4B95-A7A8-A4860C231E67}.Debug|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Debug|Any CPU + {485A65F0-51C9-4B95-A7A8-A4860C231E67}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Release|Any CPU + {485A65F0-51C9-4B95-A7A8-A4860C231E67}.Release|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Release|Any CPU + {FB507A82-ACDD-4809-A030-6F9372A71194}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {FB507A82-ACDD-4809-A030-6F9372A71194}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {FB507A82-ACDD-4809-A030-6F9372A71194}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {FB507A82-ACDD-4809-A030-6F9372A71194}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/src/libraries/System.Runtime.Loader/ref/Configurations.props b/src/libraries/System.Runtime.Loader/ref/Configurations.props index 89d6ac0f025b9..b6e0d3ce6383b 100644 --- a/src/libraries/System.Runtime.Loader/ref/Configurations.props +++ b/src/libraries/System.Runtime.Loader/ref/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Runtime.Loader/ref/System.Runtime.Loader.csproj b/src/libraries/System.Runtime.Loader/ref/System.Runtime.Loader.csproj index fc45953ecf60a..f12463e6cd4c3 100644 --- a/src/libraries/System.Runtime.Loader/ref/System.Runtime.Loader.csproj +++ b/src/libraries/System.Runtime.Loader/ref/System.Runtime.Loader.csproj @@ -3,7 +3,7 @@ true $(NoWarn);0067 - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release enable diff --git a/src/libraries/System.Runtime.Loader/src/Configurations.props b/src/libraries/System.Runtime.Loader/src/Configurations.props index adabcc0290e8a..c10c0d25a71d5 100644 --- a/src/libraries/System.Runtime.Loader/src/Configurations.props +++ b/src/libraries/System.Runtime.Loader/src/Configurations.props @@ -1,8 +1,8 @@  - netcoreapp-Windows_NT; - netcoreapp-Unix; + $(NetCoreAppCurrent)-Windows_NT; + $(NetCoreAppCurrent)-Unix; diff --git a/src/libraries/System.Runtime.Loader/src/System.Runtime.Loader.csproj b/src/libraries/System.Runtime.Loader/src/System.Runtime.Loader.csproj index 7af7d8603f083..8d775f5018c68 100644 --- a/src/libraries/System.Runtime.Loader/src/System.Runtime.Loader.csproj +++ b/src/libraries/System.Runtime.Loader/src/System.Runtime.Loader.csproj @@ -2,7 +2,7 @@ System.Runtime.Loader true - netcoreapp-Unix-Debug;netcoreapp-Unix-Release;netcoreapp-Windows_NT-Debug;netcoreapp-Windows_NT-Release + $(NetCoreAppCurrent)-Unix-Debug;$(NetCoreAppCurrent)-Unix-Release;$(NetCoreAppCurrent)-Windows_NT-Debug;$(NetCoreAppCurrent)-Windows_NT-Release diff --git a/src/libraries/System.Runtime.Loader/tests/Configurations.props b/src/libraries/System.Runtime.Loader/tests/Configurations.props index ee16a95ad965e..d59c116cfe1ab 100644 --- a/src/libraries/System.Runtime.Loader/tests/Configurations.props +++ b/src/libraries/System.Runtime.Loader/tests/Configurations.props @@ -1,8 +1,8 @@  - netcoreapp-Unix; - netcoreapp-Windows_NT; + $(NetCoreAppCurrent)-Unix; + $(NetCoreAppCurrent)-Windows_NT; diff --git a/src/libraries/System.Runtime.Loader/tests/ContextualReflectionDependency/Configurations.props b/src/libraries/System.Runtime.Loader/tests/ContextualReflectionDependency/Configurations.props index a1eadd7648d83..d3947cd2aa838 100644 --- a/src/libraries/System.Runtime.Loader/tests/ContextualReflectionDependency/Configurations.props +++ b/src/libraries/System.Runtime.Loader/tests/ContextualReflectionDependency/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); diff --git a/src/libraries/System.Runtime.Loader/tests/ContextualReflectionDependency/System.Runtime.Loader.Test.ContextualReflectionDependency.csproj b/src/libraries/System.Runtime.Loader/tests/ContextualReflectionDependency/System.Runtime.Loader.Test.ContextualReflectionDependency.csproj index 56bf0dc04c815..63a3ee780a703 100644 --- a/src/libraries/System.Runtime.Loader/tests/ContextualReflectionDependency/System.Runtime.Loader.Test.ContextualReflectionDependency.csproj +++ b/src/libraries/System.Runtime.Loader/tests/ContextualReflectionDependency/System.Runtime.Loader.Test.ContextualReflectionDependency.csproj @@ -1,6 +1,6 @@  - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release diff --git a/src/libraries/System.Runtime.Loader/tests/DefaultContext/Configurations.props b/src/libraries/System.Runtime.Loader/tests/DefaultContext/Configurations.props index 89d6ac0f025b9..b6e0d3ce6383b 100644 --- a/src/libraries/System.Runtime.Loader/tests/DefaultContext/Configurations.props +++ b/src/libraries/System.Runtime.Loader/tests/DefaultContext/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Runtime.Loader/tests/DefaultContext/System.Runtime.Loader.DefaultContext.Tests.csproj b/src/libraries/System.Runtime.Loader/tests/DefaultContext/System.Runtime.Loader.DefaultContext.Tests.csproj index aa70e21ab4108..eb7d166720e31 100644 --- a/src/libraries/System.Runtime.Loader/tests/DefaultContext/System.Runtime.Loader.DefaultContext.Tests.csproj +++ b/src/libraries/System.Runtime.Loader/tests/DefaultContext/System.Runtime.Loader.DefaultContext.Tests.csproj @@ -1,6 +1,6 @@ - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release true false diff --git a/src/libraries/System.Runtime.Loader/tests/RefEmitLoadContext/Configurations.props b/src/libraries/System.Runtime.Loader/tests/RefEmitLoadContext/Configurations.props index 89d6ac0f025b9..b6e0d3ce6383b 100644 --- a/src/libraries/System.Runtime.Loader/tests/RefEmitLoadContext/Configurations.props +++ b/src/libraries/System.Runtime.Loader/tests/RefEmitLoadContext/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Runtime.Loader/tests/RefEmitLoadContext/System.Runtime.Loader.RefEmitLoadContext.Tests.csproj b/src/libraries/System.Runtime.Loader/tests/RefEmitLoadContext/System.Runtime.Loader.RefEmitLoadContext.Tests.csproj index d9e27a369727d..7073c50197a2e 100644 --- a/src/libraries/System.Runtime.Loader/tests/RefEmitLoadContext/System.Runtime.Loader.RefEmitLoadContext.Tests.csproj +++ b/src/libraries/System.Runtime.Loader/tests/RefEmitLoadContext/System.Runtime.Loader.RefEmitLoadContext.Tests.csproj @@ -1,6 +1,6 @@ - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release true diff --git a/src/libraries/System.Runtime.Loader/tests/ReferencedClassLib/Configurations.props b/src/libraries/System.Runtime.Loader/tests/ReferencedClassLib/Configurations.props index a1eadd7648d83..d3947cd2aa838 100644 --- a/src/libraries/System.Runtime.Loader/tests/ReferencedClassLib/Configurations.props +++ b/src/libraries/System.Runtime.Loader/tests/ReferencedClassLib/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); diff --git a/src/libraries/System.Runtime.Loader/tests/ReferencedClassLib/ReferencedClassLib.csproj b/src/libraries/System.Runtime.Loader/tests/ReferencedClassLib/ReferencedClassLib.csproj index 9dcfede7506fd..20327fb10e1c0 100644 --- a/src/libraries/System.Runtime.Loader/tests/ReferencedClassLib/ReferencedClassLib.csproj +++ b/src/libraries/System.Runtime.Loader/tests/ReferencedClassLib/ReferencedClassLib.csproj @@ -1,6 +1,6 @@  - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release diff --git a/src/libraries/System.Runtime.Loader/tests/ReferencedClassLibNeutralIsSatellite/Configurations.props b/src/libraries/System.Runtime.Loader/tests/ReferencedClassLibNeutralIsSatellite/Configurations.props index a1eadd7648d83..d3947cd2aa838 100644 --- a/src/libraries/System.Runtime.Loader/tests/ReferencedClassLibNeutralIsSatellite/Configurations.props +++ b/src/libraries/System.Runtime.Loader/tests/ReferencedClassLibNeutralIsSatellite/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); diff --git a/src/libraries/System.Runtime.Loader/tests/ReferencedClassLibNeutralIsSatellite/ReferencedClassLibNeutralIsSatellite.csproj b/src/libraries/System.Runtime.Loader/tests/ReferencedClassLibNeutralIsSatellite/ReferencedClassLibNeutralIsSatellite.csproj index 29b7e3a410820..489ac53dd6f28 100644 --- a/src/libraries/System.Runtime.Loader/tests/ReferencedClassLibNeutralIsSatellite/ReferencedClassLibNeutralIsSatellite.csproj +++ b/src/libraries/System.Runtime.Loader/tests/ReferencedClassLibNeutralIsSatellite/ReferencedClassLibNeutralIsSatellite.csproj @@ -1,6 +1,6 @@  - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release diff --git a/src/libraries/System.Runtime.Loader/tests/System.Runtime.Loader.Noop.Assembly/Configurations.props b/src/libraries/System.Runtime.Loader/tests/System.Runtime.Loader.Noop.Assembly/Configurations.props index 89d6ac0f025b9..b6e0d3ce6383b 100644 --- a/src/libraries/System.Runtime.Loader/tests/System.Runtime.Loader.Noop.Assembly/Configurations.props +++ b/src/libraries/System.Runtime.Loader/tests/System.Runtime.Loader.Noop.Assembly/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Runtime.Loader/tests/System.Runtime.Loader.Noop.Assembly/System.Runtime.Loader.Noop.Assembly.csproj b/src/libraries/System.Runtime.Loader/tests/System.Runtime.Loader.Noop.Assembly/System.Runtime.Loader.Noop.Assembly.csproj index 99a48639bf3c5..9611218090d7f 100644 --- a/src/libraries/System.Runtime.Loader/tests/System.Runtime.Loader.Noop.Assembly/System.Runtime.Loader.Noop.Assembly.csproj +++ b/src/libraries/System.Runtime.Loader/tests/System.Runtime.Loader.Noop.Assembly/System.Runtime.Loader.Noop.Assembly.csproj @@ -2,7 +2,7 @@ false - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release diff --git a/src/libraries/System.Runtime.Loader/tests/System.Runtime.Loader.Test.Assembly/Configurations.props b/src/libraries/System.Runtime.Loader/tests/System.Runtime.Loader.Test.Assembly/Configurations.props index 2e546b4b8cd16..d6b33dd4292fe 100644 --- a/src/libraries/System.Runtime.Loader/tests/System.Runtime.Loader.Test.Assembly/Configurations.props +++ b/src/libraries/System.Runtime.Loader/tests/System.Runtime.Loader.Test.Assembly/Configurations.props @@ -2,7 +2,7 @@ netstandard2.0; - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Runtime.Loader/tests/System.Runtime.Loader.Test.Assembly/System.Runtime.Loader.Test.Assembly.csproj b/src/libraries/System.Runtime.Loader/tests/System.Runtime.Loader.Test.Assembly/System.Runtime.Loader.Test.Assembly.csproj index ec37b1945381c..051d4d0f91ce7 100644 --- a/src/libraries/System.Runtime.Loader/tests/System.Runtime.Loader.Test.Assembly/System.Runtime.Loader.Test.Assembly.csproj +++ b/src/libraries/System.Runtime.Loader/tests/System.Runtime.Loader.Test.Assembly/System.Runtime.Loader.Test.Assembly.csproj @@ -1,6 +1,6 @@ - netcoreapp-Debug;netcoreapp-Release;netstandard2.0-Debug;netstandard2.0-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release;netstandard2.0-Debug;netstandard2.0-Release diff --git a/src/libraries/System.Runtime.Loader/tests/System.Runtime.Loader.Test.Assembly2/Configurations.props b/src/libraries/System.Runtime.Loader/tests/System.Runtime.Loader.Test.Assembly2/Configurations.props index 253ad5b11bbbc..086d1b151f26d 100644 --- a/src/libraries/System.Runtime.Loader/tests/System.Runtime.Loader.Test.Assembly2/Configurations.props +++ b/src/libraries/System.Runtime.Loader/tests/System.Runtime.Loader.Test.Assembly2/Configurations.props @@ -2,7 +2,7 @@ netstandard2.0; - netcoreapp; + $(NetCoreAppCurrent); diff --git a/src/libraries/System.Runtime.Loader/tests/System.Runtime.Loader.Test.Assembly2/System.Runtime.Loader.Test.Assembly2.csproj b/src/libraries/System.Runtime.Loader/tests/System.Runtime.Loader.Test.Assembly2/System.Runtime.Loader.Test.Assembly2.csproj index b9d2a956d1890..09cc2d9d57a61 100644 --- a/src/libraries/System.Runtime.Loader/tests/System.Runtime.Loader.Test.Assembly2/System.Runtime.Loader.Test.Assembly2.csproj +++ b/src/libraries/System.Runtime.Loader/tests/System.Runtime.Loader.Test.Assembly2/System.Runtime.Loader.Test.Assembly2.csproj @@ -1,6 +1,6 @@ - netcoreapp-Debug;netcoreapp-Release;netstandard2.0-Debug;netstandard2.0-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release;netstandard2.0-Debug;netstandard2.0-Release diff --git a/src/libraries/System.Runtime.Loader/tests/System.Runtime.Loader.Test.AssemblyNotSupported/Configurations.props b/src/libraries/System.Runtime.Loader/tests/System.Runtime.Loader.Test.AssemblyNotSupported/Configurations.props index 253ad5b11bbbc..086d1b151f26d 100644 --- a/src/libraries/System.Runtime.Loader/tests/System.Runtime.Loader.Test.AssemblyNotSupported/Configurations.props +++ b/src/libraries/System.Runtime.Loader/tests/System.Runtime.Loader.Test.AssemblyNotSupported/Configurations.props @@ -2,7 +2,7 @@ netstandard2.0; - netcoreapp; + $(NetCoreAppCurrent); diff --git a/src/libraries/System.Runtime.Loader/tests/System.Runtime.Loader.Test.AssemblyNotSupported/System.Runtime.Loader.Test.AssemblyNotSupported.csproj b/src/libraries/System.Runtime.Loader/tests/System.Runtime.Loader.Test.AssemblyNotSupported/System.Runtime.Loader.Test.AssemblyNotSupported.csproj index f5e8d2e8835b4..cbde4d868f7bd 100644 --- a/src/libraries/System.Runtime.Loader/tests/System.Runtime.Loader.Test.AssemblyNotSupported/System.Runtime.Loader.Test.AssemblyNotSupported.csproj +++ b/src/libraries/System.Runtime.Loader/tests/System.Runtime.Loader.Test.AssemblyNotSupported/System.Runtime.Loader.Test.AssemblyNotSupported.csproj @@ -1,6 +1,6 @@ - netcoreapp-Debug;netcoreapp-Release;netstandard2.0-Debug;netstandard2.0-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release;netstandard2.0-Debug;netstandard2.0-Release diff --git a/src/libraries/System.Runtime.Loader/tests/System.Runtime.Loader.Tests.csproj b/src/libraries/System.Runtime.Loader/tests/System.Runtime.Loader.Tests.csproj index 60bc7b671cdd8..b26150f5bd847 100644 --- a/src/libraries/System.Runtime.Loader/tests/System.Runtime.Loader.Tests.csproj +++ b/src/libraries/System.Runtime.Loader/tests/System.Runtime.Loader.Tests.csproj @@ -1,7 +1,7 @@ System.Runtime.Loader.Tests - netcoreapp-Unix-Debug;netcoreapp-Unix-Release;netcoreapp-Windows_NT-Debug;netcoreapp-Windows_NT-Release + $(NetCoreAppCurrent)-Unix-Debug;$(NetCoreAppCurrent)-Unix-Release;$(NetCoreAppCurrent)-Windows_NT-Debug;$(NetCoreAppCurrent)-Windows_NT-Release true true diff --git a/src/libraries/System.Runtime.Numerics/System.Runtime.Numerics.sln b/src/libraries/System.Runtime.Numerics/System.Runtime.Numerics.sln index 6aa634cd91c65..91281440ce580 100644 --- a/src/libraries/System.Runtime.Numerics/System.Runtime.Numerics.sln +++ b/src/libraries/System.Runtime.Numerics/System.Runtime.Numerics.sln @@ -26,18 +26,18 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {28AE24F8-BEF4-4358-B612-ADD9D587C8E1}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {28AE24F8-BEF4-4358-B612-ADD9D587C8E1}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {28AE24F8-BEF4-4358-B612-ADD9D587C8E1}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {28AE24F8-BEF4-4358-B612-ADD9D587C8E1}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU - {D2C99D27-0BEF-4319-ADB3-05CBEBA8F69B}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {D2C99D27-0BEF-4319-ADB3-05CBEBA8F69B}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {D2C99D27-0BEF-4319-ADB3-05CBEBA8F69B}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {D2C99D27-0BEF-4319-ADB3-05CBEBA8F69B}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU - {7D5CBF2F-337C-4AEB-B035-A17D33A9BC1F}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {7D5CBF2F-337C-4AEB-B035-A17D33A9BC1F}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {7D5CBF2F-337C-4AEB-B035-A17D33A9BC1F}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {7D5CBF2F-337C-4AEB-B035-A17D33A9BC1F}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU + {28AE24F8-BEF4-4358-B612-ADD9D587C8E1}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {28AE24F8-BEF4-4358-B612-ADD9D587C8E1}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {28AE24F8-BEF4-4358-B612-ADD9D587C8E1}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {28AE24F8-BEF4-4358-B612-ADD9D587C8E1}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU + {D2C99D27-0BEF-4319-ADB3-05CBEBA8F69B}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {D2C99D27-0BEF-4319-ADB3-05CBEBA8F69B}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {D2C99D27-0BEF-4319-ADB3-05CBEBA8F69B}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {D2C99D27-0BEF-4319-ADB3-05CBEBA8F69B}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU + {7D5CBF2F-337C-4AEB-B035-A17D33A9BC1F}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {7D5CBF2F-337C-4AEB-B035-A17D33A9BC1F}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {7D5CBF2F-337C-4AEB-B035-A17D33A9BC1F}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {7D5CBF2F-337C-4AEB-B035-A17D33A9BC1F}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/src/libraries/System.Runtime.Numerics/ref/Configurations.props b/src/libraries/System.Runtime.Numerics/ref/Configurations.props index 89d6ac0f025b9..b6e0d3ce6383b 100644 --- a/src/libraries/System.Runtime.Numerics/ref/Configurations.props +++ b/src/libraries/System.Runtime.Numerics/ref/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Runtime.Numerics/ref/System.Runtime.Numerics.csproj b/src/libraries/System.Runtime.Numerics/ref/System.Runtime.Numerics.csproj index 623e8db1eddbd..27b0f4d955748 100644 --- a/src/libraries/System.Runtime.Numerics/ref/System.Runtime.Numerics.csproj +++ b/src/libraries/System.Runtime.Numerics/ref/System.Runtime.Numerics.csproj @@ -1,7 +1,7 @@ enable - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release diff --git a/src/libraries/System.Runtime.Numerics/src/Configurations.props b/src/libraries/System.Runtime.Numerics/src/Configurations.props index 89d6ac0f025b9..b6e0d3ce6383b 100644 --- a/src/libraries/System.Runtime.Numerics/src/Configurations.props +++ b/src/libraries/System.Runtime.Numerics/src/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Runtime.Numerics/src/System.Runtime.Numerics.csproj b/src/libraries/System.Runtime.Numerics/src/System.Runtime.Numerics.csproj index 354dafebdbb0a..218347919501f 100644 --- a/src/libraries/System.Runtime.Numerics/src/System.Runtime.Numerics.csproj +++ b/src/libraries/System.Runtime.Numerics/src/System.Runtime.Numerics.csproj @@ -4,7 +4,7 @@ System.Runtime.Numerics true enable - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release diff --git a/src/libraries/System.Runtime.Numerics/tests/Configurations.props b/src/libraries/System.Runtime.Numerics/tests/Configurations.props index a1eadd7648d83..d3947cd2aa838 100644 --- a/src/libraries/System.Runtime.Numerics/tests/Configurations.props +++ b/src/libraries/System.Runtime.Numerics/tests/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); diff --git a/src/libraries/System.Runtime.Numerics/tests/System.Runtime.Numerics.Tests.csproj b/src/libraries/System.Runtime.Numerics/tests/System.Runtime.Numerics.Tests.csproj index 00109311b2c1d..bdc7136f34821 100644 --- a/src/libraries/System.Runtime.Numerics/tests/System.Runtime.Numerics.Tests.csproj +++ b/src/libraries/System.Runtime.Numerics/tests/System.Runtime.Numerics.Tests.csproj @@ -1,7 +1,7 @@ true - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release diff --git a/src/libraries/System.Runtime.Serialization.Formatters/System.Runtime.Serialization.Formatters.sln b/src/libraries/System.Runtime.Serialization.Formatters/System.Runtime.Serialization.Formatters.sln index 88724a83cbd76..7b4233c05c292 100644 --- a/src/libraries/System.Runtime.Serialization.Formatters/System.Runtime.Serialization.Formatters.sln +++ b/src/libraries/System.Runtime.Serialization.Formatters/System.Runtime.Serialization.Formatters.sln @@ -26,18 +26,18 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {13CE5E71-D373-4EA6-B3CB-166FF089A42A}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {13CE5E71-D373-4EA6-B3CB-166FF089A42A}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {13CE5E71-D373-4EA6-B3CB-166FF089A42A}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {13CE5E71-D373-4EA6-B3CB-166FF089A42A}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU - {CF80D24A-787A-43DB-B9E7-10BCA02D10EA}.Debug|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Debug|Any CPU - {CF80D24A-787A-43DB-B9E7-10BCA02D10EA}.Debug|Any CPU.Build.0 = netcoreapp-Windows_NT-Debug|Any CPU - {CF80D24A-787A-43DB-B9E7-10BCA02D10EA}.Release|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Release|Any CPU - {CF80D24A-787A-43DB-B9E7-10BCA02D10EA}.Release|Any CPU.Build.0 = netcoreapp-Windows_NT-Release|Any CPU - {4413B319-3D48-4516-A45B-375F4650EF0D}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {4413B319-3D48-4516-A45B-375F4650EF0D}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {4413B319-3D48-4516-A45B-375F4650EF0D}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {4413B319-3D48-4516-A45B-375F4650EF0D}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU + {13CE5E71-D373-4EA6-B3CB-166FF089A42A}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {13CE5E71-D373-4EA6-B3CB-166FF089A42A}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {13CE5E71-D373-4EA6-B3CB-166FF089A42A}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {13CE5E71-D373-4EA6-B3CB-166FF089A42A}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU + {CF80D24A-787A-43DB-B9E7-10BCA02D10EA}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Debug|Any CPU + {CF80D24A-787A-43DB-B9E7-10BCA02D10EA}.Debug|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Debug|Any CPU + {CF80D24A-787A-43DB-B9E7-10BCA02D10EA}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Release|Any CPU + {CF80D24A-787A-43DB-B9E7-10BCA02D10EA}.Release|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Release|Any CPU + {4413B319-3D48-4516-A45B-375F4650EF0D}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {4413B319-3D48-4516-A45B-375F4650EF0D}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {4413B319-3D48-4516-A45B-375F4650EF0D}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {4413B319-3D48-4516-A45B-375F4650EF0D}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/src/libraries/System.Runtime.Serialization.Formatters/ref/Configurations.props b/src/libraries/System.Runtime.Serialization.Formatters/ref/Configurations.props index 89d6ac0f025b9..b6e0d3ce6383b 100644 --- a/src/libraries/System.Runtime.Serialization.Formatters/ref/Configurations.props +++ b/src/libraries/System.Runtime.Serialization.Formatters/ref/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Runtime.Serialization.Formatters/ref/System.Runtime.Serialization.Formatters.csproj b/src/libraries/System.Runtime.Serialization.Formatters/ref/System.Runtime.Serialization.Formatters.csproj index f0f7e055716e2..f3ac44c1af9d1 100644 --- a/src/libraries/System.Runtime.Serialization.Formatters/ref/System.Runtime.Serialization.Formatters.csproj +++ b/src/libraries/System.Runtime.Serialization.Formatters/ref/System.Runtime.Serialization.Formatters.csproj @@ -1,6 +1,6 @@ - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release enable diff --git a/src/libraries/System.Runtime.Serialization.Formatters/src/Configurations.props b/src/libraries/System.Runtime.Serialization.Formatters/src/Configurations.props index bb2aad0651daf..d64b36f5dbe60 100644 --- a/src/libraries/System.Runtime.Serialization.Formatters/src/Configurations.props +++ b/src/libraries/System.Runtime.Serialization.Formatters/src/Configurations.props @@ -1,8 +1,8 @@  - netcoreapp-Windows_NT; - netcoreapp-Unix; + $(NetCoreAppCurrent)-Windows_NT; + $(NetCoreAppCurrent)-Unix; $(PackageConfigurations); diff --git a/src/libraries/System.Runtime.Serialization.Formatters/src/System.Runtime.Serialization.Formatters.csproj b/src/libraries/System.Runtime.Serialization.Formatters/src/System.Runtime.Serialization.Formatters.csproj index 48d7b392b78e1..2c93261c0d02c 100644 --- a/src/libraries/System.Runtime.Serialization.Formatters/src/System.Runtime.Serialization.Formatters.csproj +++ b/src/libraries/System.Runtime.Serialization.Formatters/src/System.Runtime.Serialization.Formatters.csproj @@ -3,7 +3,7 @@ System.Runtime.Serialization.Formatters System.Runtime.Serialization.Formatters $(NoWarn);CS1573 - netcoreapp-Unix-Debug;netcoreapp-Unix-Release;netcoreapp-Windows_NT-Debug;netcoreapp-Windows_NT-Release + $(NetCoreAppCurrent)-Unix-Debug;$(NetCoreAppCurrent)-Unix-Release;$(NetCoreAppCurrent)-Windows_NT-Debug;$(NetCoreAppCurrent)-Windows_NT-Release enable diff --git a/src/libraries/System.Runtime.Serialization.Formatters/tests/Configurations.props b/src/libraries/System.Runtime.Serialization.Formatters/tests/Configurations.props index b96b67af66c8a..3a6000a320abb 100644 --- a/src/libraries/System.Runtime.Serialization.Formatters/tests/Configurations.props +++ b/src/libraries/System.Runtime.Serialization.Formatters/tests/Configurations.props @@ -1,9 +1,9 @@  - + - netfx; - netcoreapp; + $(NetFrameworkCurrent); + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Runtime.Serialization.Formatters/tests/System.Runtime.Serialization.Formatters.Tests.csproj b/src/libraries/System.Runtime.Serialization.Formatters/tests/System.Runtime.Serialization.Formatters.Tests.csproj index 67a2e6b522f49..5a0cb0d8f6ec7 100644 --- a/src/libraries/System.Runtime.Serialization.Formatters/tests/System.Runtime.Serialization.Formatters.Tests.csproj +++ b/src/libraries/System.Runtime.Serialization.Formatters/tests/System.Runtime.Serialization.Formatters.Tests.csproj @@ -3,7 +3,7 @@ true true true - netcoreapp-Debug;netcoreapp-Release;netfx-Debug;netfx-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release;$(NetFrameworkCurrent)-Debug;$(NetFrameworkCurrent)-Release diff --git a/src/libraries/System.Runtime.Serialization.Json/System.Runtime.Serialization.Json.sln b/src/libraries/System.Runtime.Serialization.Json/System.Runtime.Serialization.Json.sln index 582fea22a462a..8f0d900702d5c 100644 --- a/src/libraries/System.Runtime.Serialization.Json/System.Runtime.Serialization.Json.sln +++ b/src/libraries/System.Runtime.Serialization.Json/System.Runtime.Serialization.Json.sln @@ -31,22 +31,22 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {173F6978-B961-4D1C-84E4-06468772D019}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {173F6978-B961-4D1C-84E4-06468772D019}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {173F6978-B961-4D1C-84E4-06468772D019}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {173F6978-B961-4D1C-84E4-06468772D019}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU - {C99A835E-46F3-4C05-AD34-7DD84FB7466B}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {C99A835E-46F3-4C05-AD34-7DD84FB7466B}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {C99A835E-46F3-4C05-AD34-7DD84FB7466B}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {C99A835E-46F3-4C05-AD34-7DD84FB7466B}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU - {AAFFA8F4-BDA9-4107-A650-9014F64EDAE9}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {AAFFA8F4-BDA9-4107-A650-9014F64EDAE9}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {AAFFA8F4-BDA9-4107-A650-9014F64EDAE9}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {AAFFA8F4-BDA9-4107-A650-9014F64EDAE9}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU - {5119E88F-FA73-4FC6-A327-DD7C77E746BC}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {5119E88F-FA73-4FC6-A327-DD7C77E746BC}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {5119E88F-FA73-4FC6-A327-DD7C77E746BC}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {5119E88F-FA73-4FC6-A327-DD7C77E746BC}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU + {173F6978-B961-4D1C-84E4-06468772D019}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {173F6978-B961-4D1C-84E4-06468772D019}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {173F6978-B961-4D1C-84E4-06468772D019}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {173F6978-B961-4D1C-84E4-06468772D019}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU + {C99A835E-46F3-4C05-AD34-7DD84FB7466B}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {C99A835E-46F3-4C05-AD34-7DD84FB7466B}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {C99A835E-46F3-4C05-AD34-7DD84FB7466B}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {C99A835E-46F3-4C05-AD34-7DD84FB7466B}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU + {AAFFA8F4-BDA9-4107-A650-9014F64EDAE9}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {AAFFA8F4-BDA9-4107-A650-9014F64EDAE9}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {AAFFA8F4-BDA9-4107-A650-9014F64EDAE9}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {AAFFA8F4-BDA9-4107-A650-9014F64EDAE9}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU + {5119E88F-FA73-4FC6-A327-DD7C77E746BC}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {5119E88F-FA73-4FC6-A327-DD7C77E746BC}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {5119E88F-FA73-4FC6-A327-DD7C77E746BC}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {5119E88F-FA73-4FC6-A327-DD7C77E746BC}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/src/libraries/System.Runtime.Serialization.Json/ref/Configurations.props b/src/libraries/System.Runtime.Serialization.Json/ref/Configurations.props index 89d6ac0f025b9..b6e0d3ce6383b 100644 --- a/src/libraries/System.Runtime.Serialization.Json/ref/Configurations.props +++ b/src/libraries/System.Runtime.Serialization.Json/ref/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Runtime.Serialization.Json/ref/System.Runtime.Serialization.Json.csproj b/src/libraries/System.Runtime.Serialization.Json/ref/System.Runtime.Serialization.Json.csproj index 4c77be9f7ec3b..b4dbff8cfcba3 100644 --- a/src/libraries/System.Runtime.Serialization.Json/ref/System.Runtime.Serialization.Json.csproj +++ b/src/libraries/System.Runtime.Serialization.Json/ref/System.Runtime.Serialization.Json.csproj @@ -1,6 +1,6 @@ - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release diff --git a/src/libraries/System.Runtime.Serialization.Json/src/Configurations.props b/src/libraries/System.Runtime.Serialization.Json/src/Configurations.props index 89d6ac0f025b9..b6e0d3ce6383b 100644 --- a/src/libraries/System.Runtime.Serialization.Json/src/Configurations.props +++ b/src/libraries/System.Runtime.Serialization.Json/src/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Runtime.Serialization.Json/src/System.Runtime.Serialization.Json.csproj b/src/libraries/System.Runtime.Serialization.Json/src/System.Runtime.Serialization.Json.csproj index dab61e9fd8c63..7a44038396202 100644 --- a/src/libraries/System.Runtime.Serialization.Json/src/System.Runtime.Serialization.Json.csproj +++ b/src/libraries/System.Runtime.Serialization.Json/src/System.Runtime.Serialization.Json.csproj @@ -2,7 +2,7 @@ System.Runtime.Serialization.Json true - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release diff --git a/src/libraries/System.Runtime.Serialization.Json/tests/Configurations.props b/src/libraries/System.Runtime.Serialization.Json/tests/Configurations.props index 89d6ac0f025b9..b6e0d3ce6383b 100644 --- a/src/libraries/System.Runtime.Serialization.Json/tests/Configurations.props +++ b/src/libraries/System.Runtime.Serialization.Json/tests/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Runtime.Serialization.Json/tests/ReflectionOnly/Configurations.props b/src/libraries/System.Runtime.Serialization.Json/tests/ReflectionOnly/Configurations.props index 89d6ac0f025b9..b6e0d3ce6383b 100644 --- a/src/libraries/System.Runtime.Serialization.Json/tests/ReflectionOnly/Configurations.props +++ b/src/libraries/System.Runtime.Serialization.Json/tests/ReflectionOnly/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Runtime.Serialization.Json/tests/ReflectionOnly/System.Runtime.Serialization.Json.ReflectionOnly.Tests.csproj b/src/libraries/System.Runtime.Serialization.Json/tests/ReflectionOnly/System.Runtime.Serialization.Json.ReflectionOnly.Tests.csproj index 26d8bde27996c..e3532a7064a62 100644 --- a/src/libraries/System.Runtime.Serialization.Json/tests/ReflectionOnly/System.Runtime.Serialization.Json.ReflectionOnly.Tests.csproj +++ b/src/libraries/System.Runtime.Serialization.Json/tests/ReflectionOnly/System.Runtime.Serialization.Json.ReflectionOnly.Tests.csproj @@ -1,7 +1,7 @@ $(DefineConstants);ReflectionOnly - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release diff --git a/src/libraries/System.Runtime.Serialization.Json/tests/System.Runtime.Serialization.Json.Tests.csproj b/src/libraries/System.Runtime.Serialization.Json/tests/System.Runtime.Serialization.Json.Tests.csproj index 899c0f4aba211..c9636a1223b28 100644 --- a/src/libraries/System.Runtime.Serialization.Json/tests/System.Runtime.Serialization.Json.Tests.csproj +++ b/src/libraries/System.Runtime.Serialization.Json/tests/System.Runtime.Serialization.Json.Tests.csproj @@ -1,6 +1,6 @@ - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release diff --git a/src/libraries/System.Runtime.Serialization.Primitives/System.Runtime.Serialization.Primitives.sln b/src/libraries/System.Runtime.Serialization.Primitives/System.Runtime.Serialization.Primitives.sln index 75765747b6836..bcb66a721091d 100644 --- a/src/libraries/System.Runtime.Serialization.Primitives/System.Runtime.Serialization.Primitives.sln +++ b/src/libraries/System.Runtime.Serialization.Primitives/System.Runtime.Serialization.Primitives.sln @@ -26,18 +26,18 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {43341081-27A8-4CFB-8B89-C63CE457EAC2}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {43341081-27A8-4CFB-8B89-C63CE457EAC2}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {43341081-27A8-4CFB-8B89-C63CE457EAC2}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {43341081-27A8-4CFB-8B89-C63CE457EAC2}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU - {CDF0ACB5-1361-4E48-8ECB-22E8022F5F01}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {CDF0ACB5-1361-4E48-8ECB-22E8022F5F01}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {CDF0ACB5-1361-4E48-8ECB-22E8022F5F01}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {CDF0ACB5-1361-4E48-8ECB-22E8022F5F01}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU - {7E73C175-98C7-471B-B1A4-998C20F58854}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {7E73C175-98C7-471B-B1A4-998C20F58854}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {7E73C175-98C7-471B-B1A4-998C20F58854}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {7E73C175-98C7-471B-B1A4-998C20F58854}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU + {43341081-27A8-4CFB-8B89-C63CE457EAC2}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {43341081-27A8-4CFB-8B89-C63CE457EAC2}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {43341081-27A8-4CFB-8B89-C63CE457EAC2}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {43341081-27A8-4CFB-8B89-C63CE457EAC2}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU + {CDF0ACB5-1361-4E48-8ECB-22E8022F5F01}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {CDF0ACB5-1361-4E48-8ECB-22E8022F5F01}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {CDF0ACB5-1361-4E48-8ECB-22E8022F5F01}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {CDF0ACB5-1361-4E48-8ECB-22E8022F5F01}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU + {7E73C175-98C7-471B-B1A4-998C20F58854}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {7E73C175-98C7-471B-B1A4-998C20F58854}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {7E73C175-98C7-471B-B1A4-998C20F58854}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {7E73C175-98C7-471B-B1A4-998C20F58854}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/src/libraries/System.Runtime.Serialization.Primitives/ref/Configurations.props b/src/libraries/System.Runtime.Serialization.Primitives/ref/Configurations.props index 89d6ac0f025b9..b6e0d3ce6383b 100644 --- a/src/libraries/System.Runtime.Serialization.Primitives/ref/Configurations.props +++ b/src/libraries/System.Runtime.Serialization.Primitives/ref/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Runtime.Serialization.Primitives/ref/System.Runtime.Serialization.Primitives.csproj b/src/libraries/System.Runtime.Serialization.Primitives/ref/System.Runtime.Serialization.Primitives.csproj index b3c86b8a031c6..966b061e54ba2 100644 --- a/src/libraries/System.Runtime.Serialization.Primitives/ref/System.Runtime.Serialization.Primitives.csproj +++ b/src/libraries/System.Runtime.Serialization.Primitives/ref/System.Runtime.Serialization.Primitives.csproj @@ -1,7 +1,7 @@ enable - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release diff --git a/src/libraries/System.Runtime.Serialization.Primitives/src/Configurations.props b/src/libraries/System.Runtime.Serialization.Primitives/src/Configurations.props index 89d6ac0f025b9..b6e0d3ce6383b 100644 --- a/src/libraries/System.Runtime.Serialization.Primitives/src/Configurations.props +++ b/src/libraries/System.Runtime.Serialization.Primitives/src/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Runtime.Serialization.Primitives/src/System.Runtime.Serialization.Primitives.csproj b/src/libraries/System.Runtime.Serialization.Primitives/src/System.Runtime.Serialization.Primitives.csproj index 4c34aa12d24a5..9c14f37f2b6d2 100644 --- a/src/libraries/System.Runtime.Serialization.Primitives/src/System.Runtime.Serialization.Primitives.csproj +++ b/src/libraries/System.Runtime.Serialization.Primitives/src/System.Runtime.Serialization.Primitives.csproj @@ -7,7 +7,7 @@ 512 AnyCPU enable - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release diff --git a/src/libraries/System.Runtime.Serialization.Primitives/tests/Configurations.props b/src/libraries/System.Runtime.Serialization.Primitives/tests/Configurations.props index 89d6ac0f025b9..b6e0d3ce6383b 100644 --- a/src/libraries/System.Runtime.Serialization.Primitives/tests/Configurations.props +++ b/src/libraries/System.Runtime.Serialization.Primitives/tests/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Runtime.Serialization.Primitives/tests/System.Runtime.Serialization.Primitives.Tests.csproj b/src/libraries/System.Runtime.Serialization.Primitives/tests/System.Runtime.Serialization.Primitives.Tests.csproj index c3dd6d4b2c125..1585c561c23ab 100644 --- a/src/libraries/System.Runtime.Serialization.Primitives/tests/System.Runtime.Serialization.Primitives.Tests.csproj +++ b/src/libraries/System.Runtime.Serialization.Primitives/tests/System.Runtime.Serialization.Primitives.Tests.csproj @@ -1,6 +1,6 @@ - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release diff --git a/src/libraries/System.Runtime.Serialization.Xml/System.Runtime.Serialization.Xml.sln b/src/libraries/System.Runtime.Serialization.Xml/System.Runtime.Serialization.Xml.sln index 011eeb8df7d68..cb9288c7bf452 100644 --- a/src/libraries/System.Runtime.Serialization.Xml/System.Runtime.Serialization.Xml.sln +++ b/src/libraries/System.Runtime.Serialization.Xml/System.Runtime.Serialization.Xml.sln @@ -36,26 +36,26 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {30CAB353-089E-4294-B23B-F2DD1D945654}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {30CAB353-089E-4294-B23B-F2DD1D945654}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {30CAB353-089E-4294-B23B-F2DD1D945654}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {30CAB353-089E-4294-B23B-F2DD1D945654}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU - {D3AD82FC-051D-4121-8E48-B13CE8024776}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {D3AD82FC-051D-4121-8E48-B13CE8024776}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {D3AD82FC-051D-4121-8E48-B13CE8024776}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {D3AD82FC-051D-4121-8E48-B13CE8024776}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU - {38889701-0af4-48b3-999c-e99d639c61b6}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {38889701-0af4-48b3-999c-e99d639c61b6}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {38889701-0af4-48b3-999c-e99d639c61b6}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {38889701-0af4-48b3-999c-e99d639c61b6}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU - {9D747A18-C8FD-4D7A-8913-4ED7911683B4}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {9D747A18-C8FD-4D7A-8913-4ED7911683B4}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {9D747A18-C8FD-4D7A-8913-4ED7911683B4}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {9D747A18-C8FD-4D7A-8913-4ED7911683B4}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU - {025743B4-6E1E-4602-BE7F-1E479CC8EEBE}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {025743B4-6E1E-4602-BE7F-1E479CC8EEBE}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {025743B4-6E1E-4602-BE7F-1E479CC8EEBE}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {025743B4-6E1E-4602-BE7F-1E479CC8EEBE}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU + {30CAB353-089E-4294-B23B-F2DD1D945654}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {30CAB353-089E-4294-B23B-F2DD1D945654}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {30CAB353-089E-4294-B23B-F2DD1D945654}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {30CAB353-089E-4294-B23B-F2DD1D945654}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU + {D3AD82FC-051D-4121-8E48-B13CE8024776}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {D3AD82FC-051D-4121-8E48-B13CE8024776}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {D3AD82FC-051D-4121-8E48-B13CE8024776}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {D3AD82FC-051D-4121-8E48-B13CE8024776}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU + {38889701-0af4-48b3-999c-e99d639c61b6}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {38889701-0af4-48b3-999c-e99d639c61b6}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {38889701-0af4-48b3-999c-e99d639c61b6}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {38889701-0af4-48b3-999c-e99d639c61b6}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU + {9D747A18-C8FD-4D7A-8913-4ED7911683B4}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {9D747A18-C8FD-4D7A-8913-4ED7911683B4}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {9D747A18-C8FD-4D7A-8913-4ED7911683B4}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {9D747A18-C8FD-4D7A-8913-4ED7911683B4}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU + {025743B4-6E1E-4602-BE7F-1E479CC8EEBE}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {025743B4-6E1E-4602-BE7F-1E479CC8EEBE}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {025743B4-6E1E-4602-BE7F-1E479CC8EEBE}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {025743B4-6E1E-4602-BE7F-1E479CC8EEBE}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/src/libraries/System.Runtime.Serialization.Xml/ref/Configurations.props b/src/libraries/System.Runtime.Serialization.Xml/ref/Configurations.props index 89d6ac0f025b9..b6e0d3ce6383b 100644 --- a/src/libraries/System.Runtime.Serialization.Xml/ref/Configurations.props +++ b/src/libraries/System.Runtime.Serialization.Xml/ref/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Runtime.Serialization.Xml/ref/System.Runtime.Serialization.Xml.csproj b/src/libraries/System.Runtime.Serialization.Xml/ref/System.Runtime.Serialization.Xml.csproj index fec7a247b7a95..7d2717b54328a 100644 --- a/src/libraries/System.Runtime.Serialization.Xml/ref/System.Runtime.Serialization.Xml.csproj +++ b/src/libraries/System.Runtime.Serialization.Xml/ref/System.Runtime.Serialization.Xml.csproj @@ -1,6 +1,6 @@ - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release diff --git a/src/libraries/System.Runtime.Serialization.Xml/src/Configurations.props b/src/libraries/System.Runtime.Serialization.Xml/src/Configurations.props index 89d6ac0f025b9..b6e0d3ce6383b 100644 --- a/src/libraries/System.Runtime.Serialization.Xml/src/Configurations.props +++ b/src/libraries/System.Runtime.Serialization.Xml/src/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Runtime.Serialization.Xml/src/System.Runtime.Serialization.Xml.csproj b/src/libraries/System.Runtime.Serialization.Xml/src/System.Runtime.Serialization.Xml.csproj index a62ca08b28a63..5b4cdd4fcb222 100644 --- a/src/libraries/System.Runtime.Serialization.Xml/src/System.Runtime.Serialization.Xml.csproj +++ b/src/libraries/System.Runtime.Serialization.Xml/src/System.Runtime.Serialization.Xml.csproj @@ -2,7 +2,7 @@ System.Runtime.Serialization.Xml true - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release diff --git a/src/libraries/System.Runtime.Serialization.Xml/tests/Canonicalization/Configurations.props b/src/libraries/System.Runtime.Serialization.Xml/tests/Canonicalization/Configurations.props index 3b96bead5b542..59e260dc7bbbd 100644 --- a/src/libraries/System.Runtime.Serialization.Xml/tests/Canonicalization/Configurations.props +++ b/src/libraries/System.Runtime.Serialization.Xml/tests/Canonicalization/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent) \ No newline at end of file diff --git a/src/libraries/System.Runtime.Serialization.Xml/tests/Canonicalization/System.Runtime.Serialization.Xml.Canonicalization.csproj b/src/libraries/System.Runtime.Serialization.Xml/tests/Canonicalization/System.Runtime.Serialization.Xml.Canonicalization.csproj index 8542419310eed..bb137f1756ad1 100644 --- a/src/libraries/System.Runtime.Serialization.Xml/tests/Canonicalization/System.Runtime.Serialization.Xml.Canonicalization.csproj +++ b/src/libraries/System.Runtime.Serialization.Xml/tests/Canonicalization/System.Runtime.Serialization.Xml.Canonicalization.csproj @@ -1,7 +1,7 @@ true - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release diff --git a/src/libraries/System.Runtime.Serialization.Xml/tests/Configurations.props b/src/libraries/System.Runtime.Serialization.Xml/tests/Configurations.props index 89d6ac0f025b9..b6e0d3ce6383b 100644 --- a/src/libraries/System.Runtime.Serialization.Xml/tests/Configurations.props +++ b/src/libraries/System.Runtime.Serialization.Xml/tests/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Runtime.Serialization.Xml/tests/ReflectionOnly/Configurations.props b/src/libraries/System.Runtime.Serialization.Xml/tests/ReflectionOnly/Configurations.props index 89d6ac0f025b9..b6e0d3ce6383b 100644 --- a/src/libraries/System.Runtime.Serialization.Xml/tests/ReflectionOnly/Configurations.props +++ b/src/libraries/System.Runtime.Serialization.Xml/tests/ReflectionOnly/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Runtime.Serialization.Xml/tests/ReflectionOnly/System.Runtime.Serialization.Xml.ReflectionOnly.Tests.csproj b/src/libraries/System.Runtime.Serialization.Xml/tests/ReflectionOnly/System.Runtime.Serialization.Xml.ReflectionOnly.Tests.csproj index c458f79b69c0d..16c4ec21bc4de 100644 --- a/src/libraries/System.Runtime.Serialization.Xml/tests/ReflectionOnly/System.Runtime.Serialization.Xml.ReflectionOnly.Tests.csproj +++ b/src/libraries/System.Runtime.Serialization.Xml/tests/ReflectionOnly/System.Runtime.Serialization.Xml.ReflectionOnly.Tests.csproj @@ -1,7 +1,7 @@ $(DefineConstants);ReflectionOnly - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release diff --git a/src/libraries/System.Runtime.Serialization.Xml/tests/System.Runtime.Serialization.Xml.Tests.csproj b/src/libraries/System.Runtime.Serialization.Xml/tests/System.Runtime.Serialization.Xml.Tests.csproj index 6616e8f6b2925..c6b119bd22170 100644 --- a/src/libraries/System.Runtime.Serialization.Xml/tests/System.Runtime.Serialization.Xml.Tests.csproj +++ b/src/libraries/System.Runtime.Serialization.Xml/tests/System.Runtime.Serialization.Xml.Tests.csproj @@ -1,6 +1,6 @@ - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release diff --git a/src/libraries/System.Runtime.WindowsRuntime.UI.Xaml/System.Runtime.WindowsRuntime.UI.Xaml.sln b/src/libraries/System.Runtime.WindowsRuntime.UI.Xaml/System.Runtime.WindowsRuntime.UI.Xaml.sln index e4df3534be46b..286a36ab92ad8 100644 --- a/src/libraries/System.Runtime.WindowsRuntime.UI.Xaml/System.Runtime.WindowsRuntime.UI.Xaml.sln +++ b/src/libraries/System.Runtime.WindowsRuntime.UI.Xaml/System.Runtime.WindowsRuntime.UI.Xaml.sln @@ -26,14 +26,14 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {263DA4F1-C3BC-4B43-98E7-9F38B419A131}.Debug|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Debug|Any CPU - {263DA4F1-C3BC-4B43-98E7-9F38B419A131}.Debug|Any CPU.Build.0 = netcoreapp-Windows_NT-Debug|Any CPU - {263DA4F1-C3BC-4B43-98E7-9F38B419A131}.Release|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Release|Any CPU - {263DA4F1-C3BC-4B43-98E7-9F38B419A131}.Release|Any CPU.Build.0 = netcoreapp-Windows_NT-Release|Any CPU - {AA1600B8-C4D3-42A9-A28A-04D0C8282566}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {AA1600B8-C4D3-42A9-A28A-04D0C8282566}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {AA1600B8-C4D3-42A9-A28A-04D0C8282566}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {AA1600B8-C4D3-42A9-A28A-04D0C8282566}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU + {263DA4F1-C3BC-4B43-98E7-9F38B419A131}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Debug|Any CPU + {263DA4F1-C3BC-4B43-98E7-9F38B419A131}.Debug|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Debug|Any CPU + {263DA4F1-C3BC-4B43-98E7-9F38B419A131}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Release|Any CPU + {263DA4F1-C3BC-4B43-98E7-9F38B419A131}.Release|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Release|Any CPU + {AA1600B8-C4D3-42A9-A28A-04D0C8282566}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {AA1600B8-C4D3-42A9-A28A-04D0C8282566}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {AA1600B8-C4D3-42A9-A28A-04D0C8282566}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {AA1600B8-C4D3-42A9-A28A-04D0C8282566}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/src/libraries/System.Runtime.WindowsRuntime.UI.Xaml/ref/Configurations.props b/src/libraries/System.Runtime.WindowsRuntime.UI.Xaml/ref/Configurations.props index 9eacde4f938e5..b48545af7fefb 100644 --- a/src/libraries/System.Runtime.WindowsRuntime.UI.Xaml/ref/Configurations.props +++ b/src/libraries/System.Runtime.WindowsRuntime.UI.Xaml/ref/Configurations.props @@ -5,7 +5,7 @@ $(PackageConfigurations); - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Runtime.WindowsRuntime.UI.Xaml/ref/System.Runtime.WindowsRuntime.UI.Xaml.csproj b/src/libraries/System.Runtime.WindowsRuntime.UI.Xaml/ref/System.Runtime.WindowsRuntime.UI.Xaml.csproj index 5f1d1d0534c6e..333fb257eeae8 100644 --- a/src/libraries/System.Runtime.WindowsRuntime.UI.Xaml/ref/System.Runtime.WindowsRuntime.UI.Xaml.csproj +++ b/src/libraries/System.Runtime.WindowsRuntime.UI.Xaml/ref/System.Runtime.WindowsRuntime.UI.Xaml.csproj @@ -1,6 +1,6 @@ - netcoreapp-Debug;netcoreapp-Release;netstandard2.0-Debug;netstandard2.0-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release;netstandard2.0-Debug;netstandard2.0-Release diff --git a/src/libraries/System.Runtime.WindowsRuntime.UI.Xaml/src/Configurations.props b/src/libraries/System.Runtime.WindowsRuntime.UI.Xaml/src/Configurations.props index 9ae22a71437af..3c4066bb0edfc 100644 --- a/src/libraries/System.Runtime.WindowsRuntime.UI.Xaml/src/Configurations.props +++ b/src/libraries/System.Runtime.WindowsRuntime.UI.Xaml/src/Configurations.props @@ -7,7 +7,7 @@ $(PackageConfigurations); - netcoreapp-Windows_NT; + $(NetCoreAppCurrent)-Windows_NT; \ No newline at end of file diff --git a/src/libraries/System.Runtime.WindowsRuntime.UI.Xaml/src/System.Runtime.WindowsRuntime.UI.Xaml.csproj b/src/libraries/System.Runtime.WindowsRuntime.UI.Xaml/src/System.Runtime.WindowsRuntime.UI.Xaml.csproj index 8d35493bed8ed..d8d0b9b7a2fae 100644 --- a/src/libraries/System.Runtime.WindowsRuntime.UI.Xaml/src/System.Runtime.WindowsRuntime.UI.Xaml.csproj +++ b/src/libraries/System.Runtime.WindowsRuntime.UI.Xaml/src/System.Runtime.WindowsRuntime.UI.Xaml.csproj @@ -5,7 +5,7 @@ 4.0.1.0 - netcoreapp-Windows_NT-Debug;netcoreapp-Windows_NT-Release;netcoreapp3.0-Windows_NT-Debug;netcoreapp3.0-Windows_NT-Release;netstandard2.0-Debug;netstandard2.0-Release;netstandard1.1-Debug;netstandard1.1-Release + $(NetCoreAppCurrent)-Windows_NT-Debug;$(NetCoreAppCurrent)-Windows_NT-Release;netcoreapp3.0-Windows_NT-Debug;netcoreapp3.0-Windows_NT-Release;netstandard2.0-Debug;netstandard2.0-Release;netstandard1.1-Debug;netstandard1.1-Release diff --git a/src/libraries/System.Runtime.WindowsRuntime.UI.Xaml/tests/Configurations.props b/src/libraries/System.Runtime.WindowsRuntime.UI.Xaml/tests/Configurations.props index d3663b5b0569d..cb2021a85818f 100644 --- a/src/libraries/System.Runtime.WindowsRuntime.UI.Xaml/tests/Configurations.props +++ b/src/libraries/System.Runtime.WindowsRuntime.UI.Xaml/tests/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp-Windows_NT; + $(NetCoreAppCurrent)-Windows_NT; \ No newline at end of file diff --git a/src/libraries/System.Runtime.WindowsRuntime.UI.Xaml/tests/System.Runtime.WindowsRuntime.UI.Xaml.Tests.csproj b/src/libraries/System.Runtime.WindowsRuntime.UI.Xaml/tests/System.Runtime.WindowsRuntime.UI.Xaml.Tests.csproj index e1085daa819b6..367eef928af63 100644 --- a/src/libraries/System.Runtime.WindowsRuntime.UI.Xaml/tests/System.Runtime.WindowsRuntime.UI.Xaml.Tests.csproj +++ b/src/libraries/System.Runtime.WindowsRuntime.UI.Xaml/tests/System.Runtime.WindowsRuntime.UI.Xaml.Tests.csproj @@ -1,6 +1,6 @@ - netcoreapp-Windows_NT-Debug;netcoreapp-Windows_NT-Release + $(NetCoreAppCurrent)-Windows_NT-Debug;$(NetCoreAppCurrent)-Windows_NT-Release diff --git a/src/libraries/System.Runtime.WindowsRuntime/System.Runtime.WindowsRuntime.sln b/src/libraries/System.Runtime.WindowsRuntime/System.Runtime.WindowsRuntime.sln index bfaa6e653037a..3de0e7bb1ac4e 100644 --- a/src/libraries/System.Runtime.WindowsRuntime/System.Runtime.WindowsRuntime.sln +++ b/src/libraries/System.Runtime.WindowsRuntime/System.Runtime.WindowsRuntime.sln @@ -26,14 +26,14 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {844A2A0B-4169-49C3-B367-AFDC4894E487}.Debug|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Debug|Any CPU - {844A2A0B-4169-49C3-B367-AFDC4894E487}.Debug|Any CPU.Build.0 = netcoreapp-Windows_NT-Debug|Any CPU - {844A2A0B-4169-49C3-B367-AFDC4894E487}.Release|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Release|Any CPU - {844A2A0B-4169-49C3-B367-AFDC4894E487}.Release|Any CPU.Build.0 = netcoreapp-Windows_NT-Release|Any CPU - {FDDA3E4A-B182-4CD1-B624-EBD72D8A05DA}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {FDDA3E4A-B182-4CD1-B624-EBD72D8A05DA}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {FDDA3E4A-B182-4CD1-B624-EBD72D8A05DA}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {FDDA3E4A-B182-4CD1-B624-EBD72D8A05DA}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU + {844A2A0B-4169-49C3-B367-AFDC4894E487}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Debug|Any CPU + {844A2A0B-4169-49C3-B367-AFDC4894E487}.Debug|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Debug|Any CPU + {844A2A0B-4169-49C3-B367-AFDC4894E487}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Release|Any CPU + {844A2A0B-4169-49C3-B367-AFDC4894E487}.Release|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Release|Any CPU + {FDDA3E4A-B182-4CD1-B624-EBD72D8A05DA}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {FDDA3E4A-B182-4CD1-B624-EBD72D8A05DA}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {FDDA3E4A-B182-4CD1-B624-EBD72D8A05DA}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {FDDA3E4A-B182-4CD1-B624-EBD72D8A05DA}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/src/libraries/System.Runtime.WindowsRuntime/ref/Configurations.props b/src/libraries/System.Runtime.WindowsRuntime/ref/Configurations.props index 9eacde4f938e5..b48545af7fefb 100644 --- a/src/libraries/System.Runtime.WindowsRuntime/ref/Configurations.props +++ b/src/libraries/System.Runtime.WindowsRuntime/ref/Configurations.props @@ -5,7 +5,7 @@ $(PackageConfigurations); - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Runtime.WindowsRuntime/ref/System.Runtime.WindowsRuntime.csproj b/src/libraries/System.Runtime.WindowsRuntime/ref/System.Runtime.WindowsRuntime.csproj index a9a45f4a248f7..5d98caa3f72b7 100644 --- a/src/libraries/System.Runtime.WindowsRuntime/ref/System.Runtime.WindowsRuntime.csproj +++ b/src/libraries/System.Runtime.WindowsRuntime/ref/System.Runtime.WindowsRuntime.csproj @@ -10,7 +10,7 @@ match the output assembly name 'System.Runtime.WindowsRuntime, Version=4.0.10.0, Culture=neutral, PublicKeyToken=b77a5c561934e089'. --> $(NoWarn);1698 - netcoreapp-Debug;netcoreapp-Release;netstandard2.0-Debug;netstandard2.0-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release;netstandard2.0-Debug;netstandard2.0-Release diff --git a/src/libraries/System.Runtime.WindowsRuntime/src/Configurations.props b/src/libraries/System.Runtime.WindowsRuntime/src/Configurations.props index 9a5946eed4b20..bfba2f766748d 100644 --- a/src/libraries/System.Runtime.WindowsRuntime/src/Configurations.props +++ b/src/libraries/System.Runtime.WindowsRuntime/src/Configurations.props @@ -8,7 +8,7 @@ $(PackageConfigurations); - netcoreapp-Windows_NT; + $(NetCoreAppCurrent)-Windows_NT; \ No newline at end of file diff --git a/src/libraries/System.Runtime.WindowsRuntime/src/System.Runtime.WindowsRuntime.csproj b/src/libraries/System.Runtime.WindowsRuntime/src/System.Runtime.WindowsRuntime.csproj index abff361a040c6..b185d7a787c9a 100644 --- a/src/libraries/System.Runtime.WindowsRuntime/src/System.Runtime.WindowsRuntime.csproj +++ b/src/libraries/System.Runtime.WindowsRuntime/src/System.Runtime.WindowsRuntime.csproj @@ -9,7 +9,7 @@ 4.0.0.0 4.0.11.0 $(DefineConstants);FEATURE_APPX - netcoreapp-Windows_NT-Debug;netcoreapp-Windows_NT-Release;netcoreapp3.0-Windows_NT-Debug;netcoreapp3.0-Windows_NT-Release;netstandard2.0-Debug;netstandard2.0-Release;netstandard1.0-Debug;netstandard1.0-Release;netstandard1.2-Debug;netstandard1.2-Release + $(NetCoreAppCurrent)-Windows_NT-Debug;$(NetCoreAppCurrent)-Windows_NT-Release;netcoreapp3.0-Windows_NT-Debug;netcoreapp3.0-Windows_NT-Release;netstandard2.0-Debug;netstandard2.0-Release;netstandard1.0-Debug;netstandard1.0-Release;netstandard1.2-Debug;netstandard1.2-Release SR.PlatformNotSupported_WindowsRuntime @@ -32,7 +32,7 @@ - + diff --git a/src/libraries/System.Runtime.WindowsRuntime/tests/Configurations.props b/src/libraries/System.Runtime.WindowsRuntime/tests/Configurations.props index d3663b5b0569d..cb2021a85818f 100644 --- a/src/libraries/System.Runtime.WindowsRuntime/tests/Configurations.props +++ b/src/libraries/System.Runtime.WindowsRuntime/tests/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp-Windows_NT; + $(NetCoreAppCurrent)-Windows_NT; \ No newline at end of file diff --git a/src/libraries/System.Runtime.WindowsRuntime/tests/System.Runtime.WindowsRuntime.Tests.csproj b/src/libraries/System.Runtime.WindowsRuntime/tests/System.Runtime.WindowsRuntime.Tests.csproj index 9cd12c0e2756b..a9dd08b815df7 100644 --- a/src/libraries/System.Runtime.WindowsRuntime/tests/System.Runtime.WindowsRuntime.Tests.csproj +++ b/src/libraries/System.Runtime.WindowsRuntime/tests/System.Runtime.WindowsRuntime.Tests.csproj @@ -1,6 +1,6 @@ - netcoreapp-Windows_NT-Debug;netcoreapp-Windows_NT-Release + $(NetCoreAppCurrent)-Windows_NT-Debug;$(NetCoreAppCurrent)-Windows_NT-Release true diff --git a/src/libraries/System.Runtime/System.Runtime.sln b/src/libraries/System.Runtime/System.Runtime.sln index 74bee35add58f..a23dc832fe453 100644 --- a/src/libraries/System.Runtime/System.Runtime.sln +++ b/src/libraries/System.Runtime/System.Runtime.sln @@ -46,10 +46,10 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {B1BF7CE0-CAB5-4FA2-A39C-450B05D5DB1C}.Debug|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Debug|Any CPU - {B1BF7CE0-CAB5-4FA2-A39C-450B05D5DB1C}.Debug|Any CPU.Build.0 = netcoreapp-Windows_NT-Debug|Any CPU - {B1BF7CE0-CAB5-4FA2-A39C-450B05D5DB1C}.Release|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Release|Any CPU - {B1BF7CE0-CAB5-4FA2-A39C-450B05D5DB1C}.Release|Any CPU.Build.0 = netcoreapp-Windows_NT-Release|Any CPU + {B1BF7CE0-CAB5-4FA2-A39C-450B05D5DB1C}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Debug|Any CPU + {B1BF7CE0-CAB5-4FA2-A39C-450B05D5DB1C}.Debug|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Debug|Any CPU + {B1BF7CE0-CAB5-4FA2-A39C-450B05D5DB1C}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Release|Any CPU + {B1BF7CE0-CAB5-4FA2-A39C-450B05D5DB1C}.Release|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Release|Any CPU {F9C30DC5-30C1-45DA-9336-F7BE358C367C}.Debug|Any CPU.ActiveCfg = netstandard2.0-Debug|Any CPU {F9C30DC5-30C1-45DA-9336-F7BE358C367C}.Debug|Any CPU.Build.0 = netstandard2.0-Debug|Any CPU {F9C30DC5-30C1-45DA-9336-F7BE358C367C}.Release|Any CPU.ActiveCfg = netstandard2.0-Release|Any CPU @@ -66,14 +66,14 @@ Global {6B002B34-089C-4BC4-91DD-57D350DEA91C}.Debug|Any CPU.Build.0 = netstandard2.0-Debug|Any CPU {6B002B34-089C-4BC4-91DD-57D350DEA91C}.Release|Any CPU.ActiveCfg = netstandard2.0-Release|Any CPU {6B002B34-089C-4BC4-91DD-57D350DEA91C}.Release|Any CPU.Build.0 = netstandard2.0-Release|Any CPU - {56B9D0A9-44D3-488E-8B42-C14A6E30CAB2}.Debug|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Debug|Any CPU - {56B9D0A9-44D3-488E-8B42-C14A6E30CAB2}.Debug|Any CPU.Build.0 = netcoreapp-Windows_NT-Debug|Any CPU - {56B9D0A9-44D3-488E-8B42-C14A6E30CAB2}.Release|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Release|Any CPU - {56B9D0A9-44D3-488E-8B42-C14A6E30CAB2}.Release|Any CPU.Build.0 = netcoreapp-Windows_NT-Release|Any CPU - {ADBCF120-3454-4A3C-9D1D-AC4293E795D6}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {ADBCF120-3454-4A3C-9D1D-AC4293E795D6}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {ADBCF120-3454-4A3C-9D1D-AC4293E795D6}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {ADBCF120-3454-4A3C-9D1D-AC4293E795D6}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU + {56B9D0A9-44D3-488E-8B42-C14A6E30CAB2}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Debug|Any CPU + {56B9D0A9-44D3-488E-8B42-C14A6E30CAB2}.Debug|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Debug|Any CPU + {56B9D0A9-44D3-488E-8B42-C14A6E30CAB2}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Release|Any CPU + {56B9D0A9-44D3-488E-8B42-C14A6E30CAB2}.Release|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Release|Any CPU + {ADBCF120-3454-4A3C-9D1D-AC4293E795D6}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {ADBCF120-3454-4A3C-9D1D-AC4293E795D6}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {ADBCF120-3454-4A3C-9D1D-AC4293E795D6}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {ADBCF120-3454-4A3C-9D1D-AC4293E795D6}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/src/libraries/System.Runtime/ref/Configurations.props b/src/libraries/System.Runtime/ref/Configurations.props index 19236e72c58fb..b79c1d7c3d9a0 100644 --- a/src/libraries/System.Runtime/ref/Configurations.props +++ b/src/libraries/System.Runtime/ref/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); diff --git a/src/libraries/System.Runtime/ref/System.Runtime.csproj b/src/libraries/System.Runtime/ref/System.Runtime.csproj index db03e23074e93..a569c0d99de19 100644 --- a/src/libraries/System.Runtime/ref/System.Runtime.csproj +++ b/src/libraries/System.Runtime/ref/System.Runtime.csproj @@ -5,7 +5,7 @@ v4.0.30319 $(NoWarn);0809;0618 - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release enable diff --git a/src/libraries/System.Runtime/src/Configurations.props b/src/libraries/System.Runtime/src/Configurations.props index db389259c06b1..f3922475141ae 100644 --- a/src/libraries/System.Runtime/src/Configurations.props +++ b/src/libraries/System.Runtime/src/Configurations.props @@ -1,8 +1,8 @@  - netcoreapp-Windows_NT; - netcoreapp-Unix; + $(NetCoreAppCurrent)-Windows_NT; + $(NetCoreAppCurrent)-Unix; diff --git a/src/libraries/System.Runtime/src/System.Runtime.csproj b/src/libraries/System.Runtime/src/System.Runtime.csproj index f336662f90b30..62060e353a130 100644 --- a/src/libraries/System.Runtime/src/System.Runtime.csproj +++ b/src/libraries/System.Runtime/src/System.Runtime.csproj @@ -2,7 +2,7 @@ System.Runtime true - netcoreapp-Unix-Debug;netcoreapp-Unix-Release;netcoreapp-Windows_NT-Debug;netcoreapp-Windows_NT-Release + $(NetCoreAppCurrent)-Unix-Debug;$(NetCoreAppCurrent)-Unix-Release;$(NetCoreAppCurrent)-Windows_NT-Debug;$(NetCoreAppCurrent)-Windows_NT-Release enable diff --git a/src/libraries/System.Runtime/tests/Configurations.props b/src/libraries/System.Runtime/tests/Configurations.props index ad8296d246d1f..eca4299792e25 100644 --- a/src/libraries/System.Runtime/tests/Configurations.props +++ b/src/libraries/System.Runtime/tests/Configurations.props @@ -1,8 +1,8 @@  - netcoreapp-Windows_NT; - netcoreapp-Unix; + $(NetCoreAppCurrent)-Windows_NT; + $(NetCoreAppCurrent)-Unix; \ No newline at end of file diff --git a/src/libraries/System.Runtime/tests/System.Runtime.Tests.csproj b/src/libraries/System.Runtime/tests/System.Runtime.Tests.csproj index 50a4ef70462dc..0996f12c03781 100644 --- a/src/libraries/System.Runtime/tests/System.Runtime.Tests.csproj +++ b/src/libraries/System.Runtime/tests/System.Runtime.Tests.csproj @@ -4,7 +4,7 @@ 1718 true true - netcoreapp-Unix-Debug;netcoreapp-Unix-Release;netcoreapp-Windows_NT-Debug;netcoreapp-Windows_NT-Release + $(NetCoreAppCurrent)-Unix-Debug;$(NetCoreAppCurrent)-Unix-Release;$(NetCoreAppCurrent)-Windows_NT-Debug;$(NetCoreAppCurrent)-Windows_NT-Release diff --git a/src/libraries/System.Security.AccessControl/System.Security.AccessControl.sln b/src/libraries/System.Security.AccessControl/System.Security.AccessControl.sln index fa76fece53d3a..121bf7961b8f9 100644 --- a/src/libraries/System.Security.AccessControl/System.Security.AccessControl.sln +++ b/src/libraries/System.Security.AccessControl/System.Security.AccessControl.sln @@ -26,18 +26,18 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {70FAC855-CAC6-4523-8477-880548D58A1B}.Debug|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Debug|Any CPU - {70FAC855-CAC6-4523-8477-880548D58A1B}.Debug|Any CPU.Build.0 = netcoreapp-Windows_NT-Debug|Any CPU - {70FAC855-CAC6-4523-8477-880548D58A1B}.Release|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Release|Any CPU - {70FAC855-CAC6-4523-8477-880548D58A1B}.Release|Any CPU.Build.0 = netcoreapp-Windows_NT-Release|Any CPU - {D27FFA1F-B446-4D24-B60A-1F88385CDB6D}.Debug|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Debug|Any CPU - {D27FFA1F-B446-4D24-B60A-1F88385CDB6D}.Debug|Any CPU.Build.0 = netcoreapp-Windows_NT-Debug|Any CPU - {D27FFA1F-B446-4D24-B60A-1F88385CDB6D}.Release|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Release|Any CPU - {D27FFA1F-B446-4D24-B60A-1F88385CDB6D}.Release|Any CPU.Build.0 = netcoreapp-Windows_NT-Release|Any CPU - {F80C478C-48EE-46A5-89C4-EE0CFB23A14F}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {F80C478C-48EE-46A5-89C4-EE0CFB23A14F}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {F80C478C-48EE-46A5-89C4-EE0CFB23A14F}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {F80C478C-48EE-46A5-89C4-EE0CFB23A14F}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU + {70FAC855-CAC6-4523-8477-880548D58A1B}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Debug|Any CPU + {70FAC855-CAC6-4523-8477-880548D58A1B}.Debug|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Debug|Any CPU + {70FAC855-CAC6-4523-8477-880548D58A1B}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Release|Any CPU + {70FAC855-CAC6-4523-8477-880548D58A1B}.Release|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Release|Any CPU + {D27FFA1F-B446-4D24-B60A-1F88385CDB6D}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Debug|Any CPU + {D27FFA1F-B446-4D24-B60A-1F88385CDB6D}.Debug|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Debug|Any CPU + {D27FFA1F-B446-4D24-B60A-1F88385CDB6D}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Release|Any CPU + {D27FFA1F-B446-4D24-B60A-1F88385CDB6D}.Release|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Release|Any CPU + {F80C478C-48EE-46A5-89C4-EE0CFB23A14F}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {F80C478C-48EE-46A5-89C4-EE0CFB23A14F}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {F80C478C-48EE-46A5-89C4-EE0CFB23A14F}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {F80C478C-48EE-46A5-89C4-EE0CFB23A14F}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/src/libraries/System.Security.AccessControl/ref/Configurations.props b/src/libraries/System.Security.AccessControl/ref/Configurations.props index d989739795287..a60680cfaf43a 100644 --- a/src/libraries/System.Security.AccessControl/ref/Configurations.props +++ b/src/libraries/System.Security.AccessControl/ref/Configurations.props @@ -6,8 +6,8 @@ $(PackageConfigurations); - netcoreapp; - netfx; + $(NetCoreAppCurrent); + $(NetFrameworkCurrent); \ No newline at end of file diff --git a/src/libraries/System.Security.AccessControl/ref/System.Security.AccessControl.csproj b/src/libraries/System.Security.AccessControl/ref/System.Security.AccessControl.csproj index 9a9a2476c1f6d..9cd66c97fe394 100644 --- a/src/libraries/System.Security.AccessControl/ref/System.Security.AccessControl.csproj +++ b/src/libraries/System.Security.AccessControl/ref/System.Security.AccessControl.csproj @@ -1,7 +1,7 @@ true - net461-Debug;net461-Release;netcoreapp-Debug;netcoreapp-Release;netfx-Debug;netfx-Release;netstandard2.0-Debug;netstandard2.0-Release + net461-Debug;net461-Release;$(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release;$(NetFrameworkCurrent)-Debug;$(NetFrameworkCurrent)-Release;netstandard2.0-Debug;netstandard2.0-Release diff --git a/src/libraries/System.Security.AccessControl/src/Configurations.props b/src/libraries/System.Security.AccessControl/src/Configurations.props index 383d49f031a56..43a5039595e32 100644 --- a/src/libraries/System.Security.AccessControl/src/Configurations.props +++ b/src/libraries/System.Security.AccessControl/src/Configurations.props @@ -7,8 +7,8 @@ $(PackageConfigurations); - netcoreapp-Windows_NT; - netfx-Windows_NT; + $(NetCoreAppCurrent)-Windows_NT; + $(NetFrameworkCurrent)-Windows_NT; \ No newline at end of file diff --git a/src/libraries/System.Security.AccessControl/src/System.Security.AccessControl.csproj b/src/libraries/System.Security.AccessControl/src/System.Security.AccessControl.csproj index 8454dc695a8eb..28576b87a8f9b 100644 --- a/src/libraries/System.Security.AccessControl/src/System.Security.AccessControl.csproj +++ b/src/libraries/System.Security.AccessControl/src/System.Security.AccessControl.csproj @@ -3,7 +3,7 @@ true true SR.PlatformNotSupported_AccessControl - net461-Windows_NT-Debug;net461-Windows_NT-Release;netcoreapp-Windows_NT-Debug;netcoreapp-Windows_NT-Release;netcoreapp2.0-Windows_NT-Debug;netcoreapp2.0-Windows_NT-Release;netfx-Windows_NT-Debug;netfx-Windows_NT-Release;netstandard2.0-Debug;netstandard2.0-Release + net461-Windows_NT-Debug;net461-Windows_NT-Release;$(NetCoreAppCurrent)-Windows_NT-Debug;$(NetCoreAppCurrent)-Windows_NT-Release;netcoreapp2.0-Windows_NT-Debug;netcoreapp2.0-Windows_NT-Release;$(NetFrameworkCurrent)-Windows_NT-Debug;$(NetFrameworkCurrent)-Windows_NT-Release;netstandard2.0-Debug;netstandard2.0-Release diff --git a/src/libraries/System.Security.AccessControl/tests/Configurations.props b/src/libraries/System.Security.AccessControl/tests/Configurations.props index 8bfb431d9ba66..96779f45bfb69 100644 --- a/src/libraries/System.Security.AccessControl/tests/Configurations.props +++ b/src/libraries/System.Security.AccessControl/tests/Configurations.props @@ -1,8 +1,8 @@  - netcoreapp-Windows_NT; - netfx-Windows_NT; + $(NetCoreAppCurrent)-Windows_NT; + $(NetFrameworkCurrent)-Windows_NT; \ No newline at end of file diff --git a/src/libraries/System.Security.AccessControl/tests/System.Security.AccessControl.Tests.csproj b/src/libraries/System.Security.AccessControl/tests/System.Security.AccessControl.Tests.csproj index e14d85ead629a..9eff2f06e3a70 100644 --- a/src/libraries/System.Security.AccessControl/tests/System.Security.AccessControl.Tests.csproj +++ b/src/libraries/System.Security.AccessControl/tests/System.Security.AccessControl.Tests.csproj @@ -1,7 +1,7 @@ Linux;NetBSD;OSX - netcoreapp-Windows_NT-Debug;netcoreapp-Windows_NT-Release;netfx-Windows_NT-Debug;netfx-Windows_NT-Release + $(NetCoreAppCurrent)-Windows_NT-Debug;$(NetCoreAppCurrent)-Windows_NT-Release;$(NetFrameworkCurrent)-Windows_NT-Debug;$(NetFrameworkCurrent)-Windows_NT-Release diff --git a/src/libraries/System.Security.Claims/System.Security.Claims.sln b/src/libraries/System.Security.Claims/System.Security.Claims.sln index 888258c33e3ca..9f92381dac8a2 100644 --- a/src/libraries/System.Security.Claims/System.Security.Claims.sln +++ b/src/libraries/System.Security.Claims/System.Security.Claims.sln @@ -26,18 +26,18 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {BE8B728D-86C1-406F-8F5F-6656EC486B01}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {BE8B728D-86C1-406F-8F5F-6656EC486B01}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {BE8B728D-86C1-406F-8F5F-6656EC486B01}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {BE8B728D-86C1-406F-8F5F-6656EC486B01}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU - {A70BEC0D-5A1C-4DA0-8A0F-69F3BF565D52}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {A70BEC0D-5A1C-4DA0-8A0F-69F3BF565D52}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {A70BEC0D-5A1C-4DA0-8A0F-69F3BF565D52}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {A70BEC0D-5A1C-4DA0-8A0F-69F3BF565D52}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU - {4372807C-BD21-476F-BCE2-3D192AC0B96C}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {4372807C-BD21-476F-BCE2-3D192AC0B96C}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {4372807C-BD21-476F-BCE2-3D192AC0B96C}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {4372807C-BD21-476F-BCE2-3D192AC0B96C}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU + {BE8B728D-86C1-406F-8F5F-6656EC486B01}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {BE8B728D-86C1-406F-8F5F-6656EC486B01}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {BE8B728D-86C1-406F-8F5F-6656EC486B01}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {BE8B728D-86C1-406F-8F5F-6656EC486B01}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU + {A70BEC0D-5A1C-4DA0-8A0F-69F3BF565D52}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {A70BEC0D-5A1C-4DA0-8A0F-69F3BF565D52}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {A70BEC0D-5A1C-4DA0-8A0F-69F3BF565D52}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {A70BEC0D-5A1C-4DA0-8A0F-69F3BF565D52}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU + {4372807C-BD21-476F-BCE2-3D192AC0B96C}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {4372807C-BD21-476F-BCE2-3D192AC0B96C}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {4372807C-BD21-476F-BCE2-3D192AC0B96C}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {4372807C-BD21-476F-BCE2-3D192AC0B96C}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/src/libraries/System.Security.Claims/ref/Configurations.props b/src/libraries/System.Security.Claims/ref/Configurations.props index 89d6ac0f025b9..b6e0d3ce6383b 100644 --- a/src/libraries/System.Security.Claims/ref/Configurations.props +++ b/src/libraries/System.Security.Claims/ref/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Security.Claims/ref/System.Security.Claims.csproj b/src/libraries/System.Security.Claims/ref/System.Security.Claims.csproj index 0d60e215cec1c..f50b03583ce94 100644 --- a/src/libraries/System.Security.Claims/ref/System.Security.Claims.csproj +++ b/src/libraries/System.Security.Claims/ref/System.Security.Claims.csproj @@ -1,6 +1,6 @@ - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release diff --git a/src/libraries/System.Security.Claims/src/Configurations.props b/src/libraries/System.Security.Claims/src/Configurations.props index 89d6ac0f025b9..b6e0d3ce6383b 100644 --- a/src/libraries/System.Security.Claims/src/Configurations.props +++ b/src/libraries/System.Security.Claims/src/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Security.Claims/src/System.Security.Claims.csproj b/src/libraries/System.Security.Claims/src/System.Security.Claims.csproj index 13c666182508f..ce7eecb2797b0 100644 --- a/src/libraries/System.Security.Claims/src/System.Security.Claims.csproj +++ b/src/libraries/System.Security.Claims/src/System.Security.Claims.csproj @@ -1,7 +1,7 @@ System.Security.Claims - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release diff --git a/src/libraries/System.Security.Claims/tests/Configurations.props b/src/libraries/System.Security.Claims/tests/Configurations.props index 89d6ac0f025b9..b6e0d3ce6383b 100644 --- a/src/libraries/System.Security.Claims/tests/Configurations.props +++ b/src/libraries/System.Security.Claims/tests/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Security.Claims/tests/System.Security.Claims.Tests.csproj b/src/libraries/System.Security.Claims/tests/System.Security.Claims.Tests.csproj index ac9a15fceac76..701ca4ad5054f 100644 --- a/src/libraries/System.Security.Claims/tests/System.Security.Claims.Tests.csproj +++ b/src/libraries/System.Security.Claims/tests/System.Security.Claims.Tests.csproj @@ -1,6 +1,6 @@ - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release diff --git a/src/libraries/System.Security.Cryptography.Algorithms/System.Security.Cryptography.Algorithms.sln b/src/libraries/System.Security.Cryptography.Algorithms/System.Security.Cryptography.Algorithms.sln index b3bb2d942a1a5..932d7771b141e 100644 --- a/src/libraries/System.Security.Cryptography.Algorithms/System.Security.Cryptography.Algorithms.sln +++ b/src/libraries/System.Security.Cryptography.Algorithms/System.Security.Cryptography.Algorithms.sln @@ -26,18 +26,18 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {508A7D81-6462-459C-9F8F-B58FCCCFC8E7}.Debug|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Debug|Any CPU - {508A7D81-6462-459C-9F8F-B58FCCCFC8E7}.Debug|Any CPU.Build.0 = netcoreapp-Windows_NT-Debug|Any CPU - {508A7D81-6462-459C-9F8F-B58FCCCFC8E7}.Release|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Release|Any CPU - {508A7D81-6462-459C-9F8F-B58FCCCFC8E7}.Release|Any CPU.Build.0 = netcoreapp-Windows_NT-Release|Any CPU - {81A05E2E-E3AE-4246-B4E6-DD5F31FB71F9}.Debug|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Debug|Any CPU - {81A05E2E-E3AE-4246-B4E6-DD5F31FB71F9}.Debug|Any CPU.Build.0 = netcoreapp-Windows_NT-Debug|Any CPU - {81A05E2E-E3AE-4246-B4E6-DD5F31FB71F9}.Release|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Release|Any CPU - {81A05E2E-E3AE-4246-B4E6-DD5F31FB71F9}.Release|Any CPU.Build.0 = netcoreapp-Windows_NT-Release|Any CPU - {102247C1-3DB9-4DB5-80B3-EE9F80DD4E8F}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {102247C1-3DB9-4DB5-80B3-EE9F80DD4E8F}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {102247C1-3DB9-4DB5-80B3-EE9F80DD4E8F}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {102247C1-3DB9-4DB5-80B3-EE9F80DD4E8F}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU + {508A7D81-6462-459C-9F8F-B58FCCCFC8E7}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Debug|Any CPU + {508A7D81-6462-459C-9F8F-B58FCCCFC8E7}.Debug|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Debug|Any CPU + {508A7D81-6462-459C-9F8F-B58FCCCFC8E7}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Release|Any CPU + {508A7D81-6462-459C-9F8F-B58FCCCFC8E7}.Release|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Release|Any CPU + {81A05E2E-E3AE-4246-B4E6-DD5F31FB71F9}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Debug|Any CPU + {81A05E2E-E3AE-4246-B4E6-DD5F31FB71F9}.Debug|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Debug|Any CPU + {81A05E2E-E3AE-4246-B4E6-DD5F31FB71F9}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Release|Any CPU + {81A05E2E-E3AE-4246-B4E6-DD5F31FB71F9}.Release|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Release|Any CPU + {102247C1-3DB9-4DB5-80B3-EE9F80DD4E8F}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {102247C1-3DB9-4DB5-80B3-EE9F80DD4E8F}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {102247C1-3DB9-4DB5-80B3-EE9F80DD4E8F}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {102247C1-3DB9-4DB5-80B3-EE9F80DD4E8F}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/src/libraries/System.Security.Cryptography.Algorithms/ref/Configurations.props b/src/libraries/System.Security.Cryptography.Algorithms/ref/Configurations.props index 89d6ac0f025b9..b6e0d3ce6383b 100644 --- a/src/libraries/System.Security.Cryptography.Algorithms/ref/Configurations.props +++ b/src/libraries/System.Security.Cryptography.Algorithms/ref/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Security.Cryptography.Algorithms/ref/System.Security.Cryptography.Algorithms.csproj b/src/libraries/System.Security.Cryptography.Algorithms/ref/System.Security.Cryptography.Algorithms.csproj index 1ca94c0277451..f1ac1e0504a89 100644 --- a/src/libraries/System.Security.Cryptography.Algorithms/ref/System.Security.Cryptography.Algorithms.csproj +++ b/src/libraries/System.Security.Cryptography.Algorithms/ref/System.Security.Cryptography.Algorithms.csproj @@ -1,6 +1,6 @@ - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release diff --git a/src/libraries/System.Security.Cryptography.Algorithms/src/Configurations.props b/src/libraries/System.Security.Cryptography.Algorithms/src/Configurations.props index 35d4ba2a1b0e9..029aafc2a89b1 100644 --- a/src/libraries/System.Security.Cryptography.Algorithms/src/Configurations.props +++ b/src/libraries/System.Security.Cryptography.Algorithms/src/Configurations.props @@ -1,9 +1,9 @@  - netcoreapp-Unix; - netcoreapp-OSX; - netcoreapp-Windows_NT; + $(NetCoreAppCurrent)-Unix; + $(NetCoreAppCurrent)-OSX; + $(NetCoreAppCurrent)-Windows_NT; \ No newline at end of file diff --git a/src/libraries/System.Security.Cryptography.Algorithms/src/System.Security.Cryptography.Algorithms.csproj b/src/libraries/System.Security.Cryptography.Algorithms/src/System.Security.Cryptography.Algorithms.csproj index 638a0be8c03a4..0dd40e517e9a3 100644 --- a/src/libraries/System.Security.Cryptography.Algorithms/src/System.Security.Cryptography.Algorithms.csproj +++ b/src/libraries/System.Security.Cryptography.Algorithms/src/System.Security.Cryptography.Algorithms.csproj @@ -3,7 +3,7 @@ true $(DefineConstants);INTERNAL_ASYMMETRIC_IMPLEMENTATIONS CS1573;CS3016;CA5350;CA5351;CA5379;CA5384;CA5385;$(NoWarn) - netcoreapp-OSX-Debug;netcoreapp-OSX-Release;netcoreapp-Unix-Debug;netcoreapp-Unix-Release;netcoreapp-Windows_NT-Debug;netcoreapp-Windows_NT-Release + $(NetCoreAppCurrent)-OSX-Debug;$(NetCoreAppCurrent)-OSX-Release;$(NetCoreAppCurrent)-Unix-Debug;$(NetCoreAppCurrent)-Unix-Release;$(NetCoreAppCurrent)-Windows_NT-Debug;$(NetCoreAppCurrent)-Windows_NT-Release diff --git a/src/libraries/System.Security.Cryptography.Algorithms/tests/Configurations.props b/src/libraries/System.Security.Cryptography.Algorithms/tests/Configurations.props index ad8296d246d1f..eca4299792e25 100644 --- a/src/libraries/System.Security.Cryptography.Algorithms/tests/Configurations.props +++ b/src/libraries/System.Security.Cryptography.Algorithms/tests/Configurations.props @@ -1,8 +1,8 @@  - netcoreapp-Windows_NT; - netcoreapp-Unix; + $(NetCoreAppCurrent)-Windows_NT; + $(NetCoreAppCurrent)-Unix; \ No newline at end of file diff --git a/src/libraries/System.Security.Cryptography.Algorithms/tests/System.Security.Cryptography.Algorithms.Tests.csproj b/src/libraries/System.Security.Cryptography.Algorithms/tests/System.Security.Cryptography.Algorithms.Tests.csproj index b06bee75713d0..a8f210627b36d 100644 --- a/src/libraries/System.Security.Cryptography.Algorithms/tests/System.Security.Cryptography.Algorithms.Tests.csproj +++ b/src/libraries/System.Security.Cryptography.Algorithms/tests/System.Security.Cryptography.Algorithms.Tests.csproj @@ -1,6 +1,6 @@  - netcoreapp-Unix-Debug;netcoreapp-Unix-Release;netcoreapp-Windows_NT-Debug;netcoreapp-Windows_NT-Release + $(NetCoreAppCurrent)-Unix-Debug;$(NetCoreAppCurrent)-Unix-Release;$(NetCoreAppCurrent)-Windows_NT-Debug;$(NetCoreAppCurrent)-Windows_NT-Release diff --git a/src/libraries/System.Security.Cryptography.Cng/System.Security.Cryptography.Cng.sln b/src/libraries/System.Security.Cryptography.Cng/System.Security.Cryptography.Cng.sln index c706f976d3cfe..ea9aad77f1885 100644 --- a/src/libraries/System.Security.Cryptography.Cng/System.Security.Cryptography.Cng.sln +++ b/src/libraries/System.Security.Cryptography.Cng/System.Security.Cryptography.Cng.sln @@ -26,18 +26,18 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {FF53459F-66F7-4F00-8D36-DF440CE18419}.Debug|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Debug|Any CPU - {FF53459F-66F7-4F00-8D36-DF440CE18419}.Debug|Any CPU.Build.0 = netcoreapp-Windows_NT-Debug|Any CPU - {FF53459F-66F7-4F00-8D36-DF440CE18419}.Release|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Release|Any CPU - {FF53459F-66F7-4F00-8D36-DF440CE18419}.Release|Any CPU.Build.0 = netcoreapp-Windows_NT-Release|Any CPU - {4C1BD451-6A99-45E7-9339-79C77C42EE9E}.Debug|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Debug|Any CPU - {4C1BD451-6A99-45E7-9339-79C77C42EE9E}.Debug|Any CPU.Build.0 = netcoreapp-Windows_NT-Debug|Any CPU - {4C1BD451-6A99-45E7-9339-79C77C42EE9E}.Release|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Release|Any CPU - {4C1BD451-6A99-45E7-9339-79C77C42EE9E}.Release|Any CPU.Build.0 = netcoreapp-Windows_NT-Release|Any CPU - {9FD12550-3A7C-49D3-9A1E-C4B7410989DD}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {9FD12550-3A7C-49D3-9A1E-C4B7410989DD}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {9FD12550-3A7C-49D3-9A1E-C4B7410989DD}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {9FD12550-3A7C-49D3-9A1E-C4B7410989DD}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU + {FF53459F-66F7-4F00-8D36-DF440CE18419}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Debug|Any CPU + {FF53459F-66F7-4F00-8D36-DF440CE18419}.Debug|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Debug|Any CPU + {FF53459F-66F7-4F00-8D36-DF440CE18419}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Release|Any CPU + {FF53459F-66F7-4F00-8D36-DF440CE18419}.Release|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Release|Any CPU + {4C1BD451-6A99-45E7-9339-79C77C42EE9E}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Debug|Any CPU + {4C1BD451-6A99-45E7-9339-79C77C42EE9E}.Debug|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Debug|Any CPU + {4C1BD451-6A99-45E7-9339-79C77C42EE9E}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Release|Any CPU + {4C1BD451-6A99-45E7-9339-79C77C42EE9E}.Release|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Release|Any CPU + {9FD12550-3A7C-49D3-9A1E-C4B7410989DD}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {9FD12550-3A7C-49D3-9A1E-C4B7410989DD}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {9FD12550-3A7C-49D3-9A1E-C4B7410989DD}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {9FD12550-3A7C-49D3-9A1E-C4B7410989DD}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/src/libraries/System.Security.Cryptography.Cng/ref/Configurations.props b/src/libraries/System.Security.Cryptography.Cng/ref/Configurations.props index 759cccb7fd1aa..a0100bb19a194 100644 --- a/src/libraries/System.Security.Cryptography.Cng/ref/Configurations.props +++ b/src/libraries/System.Security.Cryptography.Cng/ref/Configurations.props @@ -9,8 +9,8 @@ $(PackageConfigurations) - netcoreapp; - netfx; + $(NetCoreAppCurrent); + $(NetFrameworkCurrent); diff --git a/src/libraries/System.Security.Cryptography.Cng/ref/System.Security.Cryptography.Cng.csproj b/src/libraries/System.Security.Cryptography.Cng/ref/System.Security.Cryptography.Cng.csproj index d26862c9a41a9..2db178010f706 100644 --- a/src/libraries/System.Security.Cryptography.Cng/ref/System.Security.Cryptography.Cng.csproj +++ b/src/libraries/System.Security.Cryptography.Cng/ref/System.Security.Cryptography.Cng.csproj @@ -6,7 +6,7 @@ $(DefineConstants);FEATURE_ECDH_DERIVEFROM true - net461-Debug;net461-Release;net462-Debug;net462-Release;net47-Debug;net47-Release;netcoreapp-Debug;netcoreapp-Release;netcoreapp3.0-Debug;netcoreapp3.0-Release;netfx-Debug;netfx-Release;netstandard2.1-Debug;netstandard2.1-Release + net461-Debug;net461-Release;net462-Debug;net462-Release;net47-Debug;net47-Release;$(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release;netcoreapp3.0-Debug;netcoreapp3.0-Release;$(NetFrameworkCurrent)-Debug;$(NetFrameworkCurrent)-Release;netstandard2.1-Debug;netstandard2.1-Release @@ -15,7 +15,7 @@ - + diff --git a/src/libraries/System.Security.Cryptography.Cng/src/Configurations.props b/src/libraries/System.Security.Cryptography.Cng/src/Configurations.props index 2df0b7746bfcd..80f1440c61ab9 100644 --- a/src/libraries/System.Security.Cryptography.Cng/src/Configurations.props +++ b/src/libraries/System.Security.Cryptography.Cng/src/Configurations.props @@ -11,9 +11,9 @@ $(PackageConfigurations) - netcoreapp-Windows_NT; - netcoreapp; - netfx-Windows_NT; + $(NetCoreAppCurrent)-Windows_NT; + $(NetCoreAppCurrent); + $(NetFrameworkCurrent)-Windows_NT; diff --git a/src/libraries/System.Security.Cryptography.Cng/src/System.Security.Cryptography.Cng.csproj b/src/libraries/System.Security.Cryptography.Cng/src/System.Security.Cryptography.Cng.csproj index a2bdfe1851792..0111854d38831 100644 --- a/src/libraries/System.Security.Cryptography.Cng/src/System.Security.Cryptography.Cng.csproj +++ b/src/libraries/System.Security.Cryptography.Cng/src/System.Security.Cryptography.Cng.csproj @@ -5,7 +5,7 @@ true true true - net461-Windows_NT-Debug;net461-Windows_NT-Release;net462-Windows_NT-Debug;net462-Windows_NT-Release;net47-Windows_NT-Debug;net47-Windows_NT-Release;netcoreapp-Debug;netcoreapp-Release;netcoreapp-Windows_NT-Debug;netcoreapp-Windows_NT-Release;netcoreapp3.0-Debug;netcoreapp3.0-Release;netcoreapp3.0-Windows_NT-Debug;netcoreapp3.0-Windows_NT-Release;netfx-Windows_NT-Debug;netfx-Windows_NT-Release;netstandard2.0-Debug;netstandard2.0-Release;netstandard2.1-Debug;netstandard2.1-Release + net461-Windows_NT-Debug;net461-Windows_NT-Release;net462-Windows_NT-Debug;net462-Windows_NT-Release;net47-Windows_NT-Debug;net47-Windows_NT-Release;$(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release;$(NetCoreAppCurrent)-Windows_NT-Debug;$(NetCoreAppCurrent)-Windows_NT-Release;netcoreapp3.0-Debug;netcoreapp3.0-Release;netcoreapp3.0-Windows_NT-Debug;netcoreapp3.0-Windows_NT-Release;$(NetFrameworkCurrent)-Windows_NT-Debug;$(NetFrameworkCurrent)-Windows_NT-Release;netstandard2.0-Debug;netstandard2.0-Release;netstandard2.1-Debug;netstandard2.1-Release SR.PlatformNotSupported_CryptographyCng diff --git a/src/libraries/System.Security.Cryptography.Cng/tests/Configurations.props b/src/libraries/System.Security.Cryptography.Cng/tests/Configurations.props index 1ce60d749f35d..5d1ec5208094a 100644 --- a/src/libraries/System.Security.Cryptography.Cng/tests/Configurations.props +++ b/src/libraries/System.Security.Cryptography.Cng/tests/Configurations.props @@ -1,8 +1,8 @@  - netcoreapp-Windows_NT; - netfx-Windows_NT; + $(NetCoreAppCurrent)-Windows_NT; + $(NetFrameworkCurrent)-Windows_NT; diff --git a/src/libraries/System.Security.Cryptography.Cng/tests/System.Security.Cryptography.Cng.Tests.csproj b/src/libraries/System.Security.Cryptography.Cng/tests/System.Security.Cryptography.Cng.Tests.csproj index 37f38cb5b8783..d954de0803863 100644 --- a/src/libraries/System.Security.Cryptography.Cng/tests/System.Security.Cryptography.Cng.Tests.csproj +++ b/src/libraries/System.Security.Cryptography.Cng/tests/System.Security.Cryptography.Cng.Tests.csproj @@ -1,7 +1,7 @@ $(DefineConstants);TESTING_CNG_IMPLEMENTATION - netcoreapp-Windows_NT-Debug;netcoreapp-Windows_NT-Release;netfx-Windows_NT-Debug;netfx-Windows_NT-Release + $(NetCoreAppCurrent)-Windows_NT-Debug;$(NetCoreAppCurrent)-Windows_NT-Release;$(NetFrameworkCurrent)-Windows_NT-Debug;$(NetFrameworkCurrent)-Windows_NT-Release diff --git a/src/libraries/System.Security.Cryptography.Csp/System.Security.Cryptography.Csp.sln b/src/libraries/System.Security.Cryptography.Csp/System.Security.Cryptography.Csp.sln index 10ebc9a377c21..ca9e012924091 100644 --- a/src/libraries/System.Security.Cryptography.Csp/System.Security.Cryptography.Csp.sln +++ b/src/libraries/System.Security.Cryptography.Csp/System.Security.Cryptography.Csp.sln @@ -26,18 +26,18 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {A05C2EF2-A986-448C-9C63-735CC17409AA}.Debug|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Debug|Any CPU - {A05C2EF2-A986-448C-9C63-735CC17409AA}.Debug|Any CPU.Build.0 = netcoreapp-Windows_NT-Debug|Any CPU - {A05C2EF2-A986-448C-9C63-735CC17409AA}.Release|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Release|Any CPU - {A05C2EF2-A986-448C-9C63-735CC17409AA}.Release|Any CPU.Build.0 = netcoreapp-Windows_NT-Release|Any CPU - {3B7F91D7-0677-40CA-B4E7-D4E09D89A74E}.Debug|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Debug|Any CPU - {3B7F91D7-0677-40CA-B4E7-D4E09D89A74E}.Debug|Any CPU.Build.0 = netcoreapp-Windows_NT-Debug|Any CPU - {3B7F91D7-0677-40CA-B4E7-D4E09D89A74E}.Release|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Release|Any CPU - {3B7F91D7-0677-40CA-B4E7-D4E09D89A74E}.Release|Any CPU.Build.0 = netcoreapp-Windows_NT-Release|Any CPU - {FD10679A-8C98-42E6-B7E5-9424E5443912}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {FD10679A-8C98-42E6-B7E5-9424E5443912}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {FD10679A-8C98-42E6-B7E5-9424E5443912}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {FD10679A-8C98-42E6-B7E5-9424E5443912}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU + {A05C2EF2-A986-448C-9C63-735CC17409AA}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Debug|Any CPU + {A05C2EF2-A986-448C-9C63-735CC17409AA}.Debug|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Debug|Any CPU + {A05C2EF2-A986-448C-9C63-735CC17409AA}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Release|Any CPU + {A05C2EF2-A986-448C-9C63-735CC17409AA}.Release|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Release|Any CPU + {3B7F91D7-0677-40CA-B4E7-D4E09D89A74E}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Debug|Any CPU + {3B7F91D7-0677-40CA-B4E7-D4E09D89A74E}.Debug|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Debug|Any CPU + {3B7F91D7-0677-40CA-B4E7-D4E09D89A74E}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Release|Any CPU + {3B7F91D7-0677-40CA-B4E7-D4E09D89A74E}.Release|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Release|Any CPU + {FD10679A-8C98-42E6-B7E5-9424E5443912}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {FD10679A-8C98-42E6-B7E5-9424E5443912}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {FD10679A-8C98-42E6-B7E5-9424E5443912}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {FD10679A-8C98-42E6-B7E5-9424E5443912}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/src/libraries/System.Security.Cryptography.Csp/ref/Configurations.props b/src/libraries/System.Security.Cryptography.Csp/ref/Configurations.props index 89d6ac0f025b9..b6e0d3ce6383b 100644 --- a/src/libraries/System.Security.Cryptography.Csp/ref/Configurations.props +++ b/src/libraries/System.Security.Cryptography.Csp/ref/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Security.Cryptography.Csp/ref/System.Security.Cryptography.Csp.csproj b/src/libraries/System.Security.Cryptography.Csp/ref/System.Security.Cryptography.Csp.csproj index d1611a6a04471..c2c3e1291a39e 100644 --- a/src/libraries/System.Security.Cryptography.Csp/ref/System.Security.Cryptography.Csp.csproj +++ b/src/libraries/System.Security.Cryptography.Csp/ref/System.Security.Cryptography.Csp.csproj @@ -1,6 +1,6 @@ - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release diff --git a/src/libraries/System.Security.Cryptography.Csp/src/Configurations.props b/src/libraries/System.Security.Cryptography.Csp/src/Configurations.props index ad8296d246d1f..eca4299792e25 100644 --- a/src/libraries/System.Security.Cryptography.Csp/src/Configurations.props +++ b/src/libraries/System.Security.Cryptography.Csp/src/Configurations.props @@ -1,8 +1,8 @@  - netcoreapp-Windows_NT; - netcoreapp-Unix; + $(NetCoreAppCurrent)-Windows_NT; + $(NetCoreAppCurrent)-Unix; \ No newline at end of file diff --git a/src/libraries/System.Security.Cryptography.Csp/src/System.Security.Cryptography.Csp.csproj b/src/libraries/System.Security.Cryptography.Csp/src/System.Security.Cryptography.Csp.csproj index e799aba5bb591..88b1fd0070e57 100644 --- a/src/libraries/System.Security.Cryptography.Csp/src/System.Security.Cryptography.Csp.csproj +++ b/src/libraries/System.Security.Cryptography.Csp/src/System.Security.Cryptography.Csp.csproj @@ -4,7 +4,7 @@ true $(NoWarn);CA5373 $(NoWarn);CS0809 - netcoreapp-Unix-Debug;netcoreapp-Unix-Release;netcoreapp-Windows_NT-Debug;netcoreapp-Windows_NT-Release + $(NetCoreAppCurrent)-Unix-Debug;$(NetCoreAppCurrent)-Unix-Release;$(NetCoreAppCurrent)-Windows_NT-Debug;$(NetCoreAppCurrent)-Windows_NT-Release diff --git a/src/libraries/System.Security.Cryptography.Csp/tests/Configurations.props b/src/libraries/System.Security.Cryptography.Csp/tests/Configurations.props index ad8296d246d1f..eca4299792e25 100644 --- a/src/libraries/System.Security.Cryptography.Csp/tests/Configurations.props +++ b/src/libraries/System.Security.Cryptography.Csp/tests/Configurations.props @@ -1,8 +1,8 @@  - netcoreapp-Windows_NT; - netcoreapp-Unix; + $(NetCoreAppCurrent)-Windows_NT; + $(NetCoreAppCurrent)-Unix; \ No newline at end of file diff --git a/src/libraries/System.Security.Cryptography.Csp/tests/System.Security.Cryptography.Csp.Tests.csproj b/src/libraries/System.Security.Cryptography.Csp/tests/System.Security.Cryptography.Csp.Tests.csproj index e2c5a5f14236f..c0e827316af02 100644 --- a/src/libraries/System.Security.Cryptography.Csp/tests/System.Security.Cryptography.Csp.Tests.csproj +++ b/src/libraries/System.Security.Cryptography.Csp/tests/System.Security.Cryptography.Csp.Tests.csproj @@ -1,6 +1,6 @@ - netcoreapp-Unix-Debug;netcoreapp-Unix-Release;netcoreapp-Windows_NT-Debug;netcoreapp-Windows_NT-Release + $(NetCoreAppCurrent)-Unix-Debug;$(NetCoreAppCurrent)-Unix-Release;$(NetCoreAppCurrent)-Windows_NT-Debug;$(NetCoreAppCurrent)-Windows_NT-Release diff --git a/src/libraries/System.Security.Cryptography.Encoding/System.Security.Cryptography.Encoding.sln b/src/libraries/System.Security.Cryptography.Encoding/System.Security.Cryptography.Encoding.sln index cd1df07691b76..bf7d39ee23c36 100644 --- a/src/libraries/System.Security.Cryptography.Encoding/System.Security.Cryptography.Encoding.sln +++ b/src/libraries/System.Security.Cryptography.Encoding/System.Security.Cryptography.Encoding.sln @@ -26,18 +26,18 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {0581E9FA-D639-4B88-96D8-D092760F90B0}.Debug|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Debug|Any CPU - {0581E9FA-D639-4B88-96D8-D092760F90B0}.Debug|Any CPU.Build.0 = netcoreapp-Windows_NT-Debug|Any CPU - {0581E9FA-D639-4B88-96D8-D092760F90B0}.Release|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Release|Any CPU - {0581E9FA-D639-4B88-96D8-D092760F90B0}.Release|Any CPU.Build.0 = netcoreapp-Windows_NT-Release|Any CPU - {AA81E343-5E54-40B0-9381-C459419BE780}.Debug|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Debug|Any CPU - {AA81E343-5E54-40B0-9381-C459419BE780}.Debug|Any CPU.Build.0 = netcoreapp-Windows_NT-Debug|Any CPU - {AA81E343-5E54-40B0-9381-C459419BE780}.Release|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Release|Any CPU - {AA81E343-5E54-40B0-9381-C459419BE780}.Release|Any CPU.Build.0 = netcoreapp-Windows_NT-Release|Any CPU - {81B846C6-3CE3-4D7D-8A30-54ECEC63F6DD}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {81B846C6-3CE3-4D7D-8A30-54ECEC63F6DD}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {81B846C6-3CE3-4D7D-8A30-54ECEC63F6DD}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {81B846C6-3CE3-4D7D-8A30-54ECEC63F6DD}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU + {0581E9FA-D639-4B88-96D8-D092760F90B0}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Debug|Any CPU + {0581E9FA-D639-4B88-96D8-D092760F90B0}.Debug|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Debug|Any CPU + {0581E9FA-D639-4B88-96D8-D092760F90B0}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Release|Any CPU + {0581E9FA-D639-4B88-96D8-D092760F90B0}.Release|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Release|Any CPU + {AA81E343-5E54-40B0-9381-C459419BE780}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Debug|Any CPU + {AA81E343-5E54-40B0-9381-C459419BE780}.Debug|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Debug|Any CPU + {AA81E343-5E54-40B0-9381-C459419BE780}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Release|Any CPU + {AA81E343-5E54-40B0-9381-C459419BE780}.Release|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Release|Any CPU + {81B846C6-3CE3-4D7D-8A30-54ECEC63F6DD}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {81B846C6-3CE3-4D7D-8A30-54ECEC63F6DD}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {81B846C6-3CE3-4D7D-8A30-54ECEC63F6DD}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {81B846C6-3CE3-4D7D-8A30-54ECEC63F6DD}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/src/libraries/System.Security.Cryptography.Encoding/ref/Configurations.props b/src/libraries/System.Security.Cryptography.Encoding/ref/Configurations.props index 89d6ac0f025b9..b6e0d3ce6383b 100644 --- a/src/libraries/System.Security.Cryptography.Encoding/ref/Configurations.props +++ b/src/libraries/System.Security.Cryptography.Encoding/ref/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Security.Cryptography.Encoding/ref/System.Security.Cryptography.Encoding.csproj b/src/libraries/System.Security.Cryptography.Encoding/ref/System.Security.Cryptography.Encoding.csproj index 16ac007e0ea5a..0ecd68045ac02 100644 --- a/src/libraries/System.Security.Cryptography.Encoding/ref/System.Security.Cryptography.Encoding.csproj +++ b/src/libraries/System.Security.Cryptography.Encoding/ref/System.Security.Cryptography.Encoding.csproj @@ -1,6 +1,6 @@ - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release diff --git a/src/libraries/System.Security.Cryptography.Encoding/src/Configurations.props b/src/libraries/System.Security.Cryptography.Encoding/src/Configurations.props index 28007ae5b2950..01aaf3eabdafb 100644 --- a/src/libraries/System.Security.Cryptography.Encoding/src/Configurations.props +++ b/src/libraries/System.Security.Cryptography.Encoding/src/Configurations.props @@ -1,9 +1,9 @@  - netcoreapp-OSX; - netcoreapp-Unix; - netcoreapp-Windows_NT; + $(NetCoreAppCurrent)-OSX; + $(NetCoreAppCurrent)-Unix; + $(NetCoreAppCurrent)-Windows_NT; diff --git a/src/libraries/System.Security.Cryptography.Encoding/src/System.Security.Cryptography.Encoding.csproj b/src/libraries/System.Security.Cryptography.Encoding/src/System.Security.Cryptography.Encoding.csproj index 5166b73cdb7df..6794bf73bf14c 100644 --- a/src/libraries/System.Security.Cryptography.Encoding/src/System.Security.Cryptography.Encoding.csproj +++ b/src/libraries/System.Security.Cryptography.Encoding/src/System.Security.Cryptography.Encoding.csproj @@ -2,7 +2,7 @@ System.Security.Cryptography.Encoding true - netcoreapp-OSX-Debug;netcoreapp-OSX-Release;netcoreapp-Unix-Debug;netcoreapp-Unix-Release;netcoreapp-Windows_NT-Debug;netcoreapp-Windows_NT-Release + $(NetCoreAppCurrent)-OSX-Debug;$(NetCoreAppCurrent)-OSX-Release;$(NetCoreAppCurrent)-Unix-Debug;$(NetCoreAppCurrent)-Unix-Release;$(NetCoreAppCurrent)-Windows_NT-Debug;$(NetCoreAppCurrent)-Windows_NT-Release diff --git a/src/libraries/System.Security.Cryptography.Encoding/tests/Configurations.props b/src/libraries/System.Security.Cryptography.Encoding/tests/Configurations.props index 1e8dd5d9394b8..30c654bebfdd7 100644 --- a/src/libraries/System.Security.Cryptography.Encoding/tests/Configurations.props +++ b/src/libraries/System.Security.Cryptography.Encoding/tests/Configurations.props @@ -1,8 +1,8 @@  - netcoreapp-Unix; - netcoreapp-Windows_NT; + $(NetCoreAppCurrent)-Unix; + $(NetCoreAppCurrent)-Windows_NT; \ No newline at end of file diff --git a/src/libraries/System.Security.Cryptography.Encoding/tests/System.Security.Cryptography.Encoding.Tests.csproj b/src/libraries/System.Security.Cryptography.Encoding/tests/System.Security.Cryptography.Encoding.Tests.csproj index 5b6bf1a40d8e6..edf3259cd40ca 100644 --- a/src/libraries/System.Security.Cryptography.Encoding/tests/System.Security.Cryptography.Encoding.Tests.csproj +++ b/src/libraries/System.Security.Cryptography.Encoding/tests/System.Security.Cryptography.Encoding.Tests.csproj @@ -1,7 +1,7 @@ true - netcoreapp-Unix-Debug;netcoreapp-Unix-Release;netcoreapp-Windows_NT-Debug;netcoreapp-Windows_NT-Release + $(NetCoreAppCurrent)-Unix-Debug;$(NetCoreAppCurrent)-Unix-Release;$(NetCoreAppCurrent)-Windows_NT-Debug;$(NetCoreAppCurrent)-Windows_NT-Release diff --git a/src/libraries/System.Security.Cryptography.OpenSsl/System.Security.Cryptography.OpenSsl.sln b/src/libraries/System.Security.Cryptography.OpenSsl/System.Security.Cryptography.OpenSsl.sln index a243ad28d131e..9f6d4d78cb3fd 100644 --- a/src/libraries/System.Security.Cryptography.OpenSsl/System.Security.Cryptography.OpenSsl.sln +++ b/src/libraries/System.Security.Cryptography.OpenSsl/System.Security.Cryptography.OpenSsl.sln @@ -26,18 +26,18 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {E1DAF7B9-BECB-4D25-AABB-C9E0BC73C690}.Debug|Any CPU.ActiveCfg = netcoreapp-Unix-Debug|Any CPU - {E1DAF7B9-BECB-4D25-AABB-C9E0BC73C690}.Debug|Any CPU.Build.0 = netcoreapp-Unix-Debug|Any CPU - {E1DAF7B9-BECB-4D25-AABB-C9E0BC73C690}.Release|Any CPU.ActiveCfg = netcoreapp-Unix-Release|Any CPU - {E1DAF7B9-BECB-4D25-AABB-C9E0BC73C690}.Release|Any CPU.Build.0 = netcoreapp-Unix-Release|Any CPU - {78452F3E-BA91-47E7-BB0F-02E8A5C116C4}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {78452F3E-BA91-47E7-BB0F-02E8A5C116C4}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {78452F3E-BA91-47E7-BB0F-02E8A5C116C4}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {78452F3E-BA91-47E7-BB0F-02E8A5C116C4}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU - {8DEA82EF-2214-4295-8CC1-9FFB9B18838F}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {8DEA82EF-2214-4295-8CC1-9FFB9B18838F}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {8DEA82EF-2214-4295-8CC1-9FFB9B18838F}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {8DEA82EF-2214-4295-8CC1-9FFB9B18838F}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU + {E1DAF7B9-BECB-4D25-AABB-C9E0BC73C690}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Unix-Debug|Any CPU + {E1DAF7B9-BECB-4D25-AABB-C9E0BC73C690}.Debug|Any CPU.Build.0 = netcoreapp5.0-Unix-Debug|Any CPU + {E1DAF7B9-BECB-4D25-AABB-C9E0BC73C690}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Unix-Release|Any CPU + {E1DAF7B9-BECB-4D25-AABB-C9E0BC73C690}.Release|Any CPU.Build.0 = netcoreapp5.0-Unix-Release|Any CPU + {78452F3E-BA91-47E7-BB0F-02E8A5C116C4}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {78452F3E-BA91-47E7-BB0F-02E8A5C116C4}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {78452F3E-BA91-47E7-BB0F-02E8A5C116C4}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {78452F3E-BA91-47E7-BB0F-02E8A5C116C4}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU + {8DEA82EF-2214-4295-8CC1-9FFB9B18838F}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {8DEA82EF-2214-4295-8CC1-9FFB9B18838F}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {8DEA82EF-2214-4295-8CC1-9FFB9B18838F}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {8DEA82EF-2214-4295-8CC1-9FFB9B18838F}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/src/libraries/System.Security.Cryptography.OpenSsl/ref/Configurations.props b/src/libraries/System.Security.Cryptography.OpenSsl/ref/Configurations.props index 9380a9257f824..dfa70b98579de 100644 --- a/src/libraries/System.Security.Cryptography.OpenSsl/ref/Configurations.props +++ b/src/libraries/System.Security.Cryptography.OpenSsl/ref/Configurations.props @@ -5,7 +5,7 @@ $(PackageConfigurations); - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Security.Cryptography.OpenSsl/ref/System.Security.Cryptography.OpenSsl.csproj b/src/libraries/System.Security.Cryptography.OpenSsl/ref/System.Security.Cryptography.OpenSsl.csproj index c8d23892d1487..5cbf72d9d2587 100644 --- a/src/libraries/System.Security.Cryptography.OpenSsl/ref/System.Security.Cryptography.OpenSsl.csproj +++ b/src/libraries/System.Security.Cryptography.OpenSsl/ref/System.Security.Cryptography.OpenSsl.csproj @@ -1,11 +1,11 @@ - netcoreapp-Debug;netcoreapp-Release;netcoreapp3.0-Debug;netcoreapp3.0-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release;netcoreapp3.0-Debug;netcoreapp3.0-Release - + diff --git a/src/libraries/System.Security.Cryptography.OpenSsl/src/Configurations.props b/src/libraries/System.Security.Cryptography.OpenSsl/src/Configurations.props index bd25f9dec2e9b..59fc8cbe22fc7 100644 --- a/src/libraries/System.Security.Cryptography.OpenSsl/src/Configurations.props +++ b/src/libraries/System.Security.Cryptography.OpenSsl/src/Configurations.props @@ -7,8 +7,8 @@ $(PackageConfigurations); - netcoreapp-Unix; - netcoreapp; + $(NetCoreAppCurrent)-Unix; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Security.Cryptography.OpenSsl/src/System.Security.Cryptography.OpenSsl.csproj b/src/libraries/System.Security.Cryptography.OpenSsl/src/System.Security.Cryptography.OpenSsl.csproj index 64d77fc9f4806..a825dd9ef30c2 100644 --- a/src/libraries/System.Security.Cryptography.OpenSsl/src/System.Security.Cryptography.OpenSsl.csproj +++ b/src/libraries/System.Security.Cryptography.OpenSsl/src/System.Security.Cryptography.OpenSsl.csproj @@ -2,7 +2,7 @@ true 4.1.0.0 - netcoreapp-Debug;netcoreapp-Release;netcoreapp-Unix-Debug;netcoreapp-Unix-Release;netcoreapp3.0-Debug;netcoreapp3.0-Release;netcoreapp3.0-Unix-Debug;netcoreapp3.0-Unix-Release;netstandard2.0-Debug;netstandard2.0-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release;$(NetCoreAppCurrent)-Unix-Debug;$(NetCoreAppCurrent)-Unix-Release;netcoreapp3.0-Debug;netcoreapp3.0-Release;netcoreapp3.0-Unix-Debug;netcoreapp3.0-Unix-Release;netstandard2.0-Debug;netstandard2.0-Release SR.PlatformNotSupported_CryptographyOpenSSL diff --git a/src/libraries/System.Security.Cryptography.OpenSsl/tests/Configurations.props b/src/libraries/System.Security.Cryptography.OpenSsl/tests/Configurations.props index 6eee71ad3676e..9e8acfd22bed3 100644 --- a/src/libraries/System.Security.Cryptography.OpenSsl/tests/Configurations.props +++ b/src/libraries/System.Security.Cryptography.OpenSsl/tests/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp-Unix; + $(NetCoreAppCurrent)-Unix; \ No newline at end of file diff --git a/src/libraries/System.Security.Cryptography.OpenSsl/tests/System.Security.Cryptography.OpenSsl.Tests.csproj b/src/libraries/System.Security.Cryptography.OpenSsl/tests/System.Security.Cryptography.OpenSsl.Tests.csproj index 990c28a49bca5..3f232a6891fce 100644 --- a/src/libraries/System.Security.Cryptography.OpenSsl/tests/System.Security.Cryptography.OpenSsl.Tests.csproj +++ b/src/libraries/System.Security.Cryptography.OpenSsl/tests/System.Security.Cryptography.OpenSsl.Tests.csproj @@ -1,7 +1,7 @@ Windows_NT - netcoreapp-Unix-Debug;netcoreapp-Unix-Release + $(NetCoreAppCurrent)-Unix-Debug;$(NetCoreAppCurrent)-Unix-Release diff --git a/src/libraries/System.Security.Cryptography.Pkcs/Directory.Build.props b/src/libraries/System.Security.Cryptography.Pkcs/Directory.Build.props index 4d5b11e8284d2..1497ebdaf33b6 100644 --- a/src/libraries/System.Security.Cryptography.Pkcs/Directory.Build.props +++ b/src/libraries/System.Security.Cryptography.Pkcs/Directory.Build.props @@ -1,7 +1,7 @@  - + 4.0.4.0 Microsoft diff --git a/src/libraries/System.Security.Cryptography.Pkcs/System.Security.Cryptography.Pkcs.sln b/src/libraries/System.Security.Cryptography.Pkcs/System.Security.Cryptography.Pkcs.sln index eec643dc56685..44d8d54370037 100644 --- a/src/libraries/System.Security.Cryptography.Pkcs/System.Security.Cryptography.Pkcs.sln +++ b/src/libraries/System.Security.Cryptography.Pkcs/System.Security.Cryptography.Pkcs.sln @@ -26,18 +26,18 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {2DD8DFFA-09FF-46C6-8313-4A9CC1849A44}.Debug|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Debug|Any CPU - {2DD8DFFA-09FF-46C6-8313-4A9CC1849A44}.Debug|Any CPU.Build.0 = netcoreapp-Windows_NT-Debug|Any CPU - {2DD8DFFA-09FF-46C6-8313-4A9CC1849A44}.Release|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Release|Any CPU - {2DD8DFFA-09FF-46C6-8313-4A9CC1849A44}.Release|Any CPU.Build.0 = netcoreapp-Windows_NT-Release|Any CPU - {03D84CBD-896D-4B2F-9A22-07034F51E73D}.Debug|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Debug|Any CPU - {03D84CBD-896D-4B2F-9A22-07034F51E73D}.Debug|Any CPU.Build.0 = netcoreapp-Windows_NT-Debug|Any CPU - {03D84CBD-896D-4B2F-9A22-07034F51E73D}.Release|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Release|Any CPU - {03D84CBD-896D-4B2F-9A22-07034F51E73D}.Release|Any CPU.Build.0 = netcoreapp-Windows_NT-Release|Any CPU - {881269F5-9F22-4427-8DC5-63E2C05875BA}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {881269F5-9F22-4427-8DC5-63E2C05875BA}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {881269F5-9F22-4427-8DC5-63E2C05875BA}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {881269F5-9F22-4427-8DC5-63E2C05875BA}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU + {2DD8DFFA-09FF-46C6-8313-4A9CC1849A44}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Debug|Any CPU + {2DD8DFFA-09FF-46C6-8313-4A9CC1849A44}.Debug|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Debug|Any CPU + {2DD8DFFA-09FF-46C6-8313-4A9CC1849A44}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Release|Any CPU + {2DD8DFFA-09FF-46C6-8313-4A9CC1849A44}.Release|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Release|Any CPU + {03D84CBD-896D-4B2F-9A22-07034F51E73D}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Debug|Any CPU + {03D84CBD-896D-4B2F-9A22-07034F51E73D}.Debug|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Debug|Any CPU + {03D84CBD-896D-4B2F-9A22-07034F51E73D}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Release|Any CPU + {03D84CBD-896D-4B2F-9A22-07034F51E73D}.Release|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Release|Any CPU + {881269F5-9F22-4427-8DC5-63E2C05875BA}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {881269F5-9F22-4427-8DC5-63E2C05875BA}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {881269F5-9F22-4427-8DC5-63E2C05875BA}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {881269F5-9F22-4427-8DC5-63E2C05875BA}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/src/libraries/System.Security.Cryptography.Pkcs/ref/Configurations.props b/src/libraries/System.Security.Cryptography.Pkcs/ref/Configurations.props index c6f6519d8d9e6..e76db9dbd440d 100644 --- a/src/libraries/System.Security.Cryptography.Pkcs/ref/Configurations.props +++ b/src/libraries/System.Security.Cryptography.Pkcs/ref/Configurations.props @@ -7,8 +7,8 @@ $(PackageConfigurations) - netfx; - netcoreapp; + $(NetFrameworkCurrent); + $(NetCoreAppCurrent) diff --git a/src/libraries/System.Security.Cryptography.Pkcs/ref/System.Security.Cryptography.Pkcs.csproj b/src/libraries/System.Security.Cryptography.Pkcs/ref/System.Security.Cryptography.Pkcs.csproj index fbf06d3a7afe5..682ec176ef23c 100644 --- a/src/libraries/System.Security.Cryptography.Pkcs/ref/System.Security.Cryptography.Pkcs.csproj +++ b/src/libraries/System.Security.Cryptography.Pkcs/ref/System.Security.Cryptography.Pkcs.csproj @@ -1,7 +1,7 @@  true - net461-Debug;net461-Release;netcoreapp-Debug;netcoreapp-Release;netcoreapp3.0-Debug;netcoreapp3.0-Release;netfx-Debug;netfx-Release;netstandard2.1-Debug;netstandard2.1-Release + net461-Debug;net461-Release;$(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release;netcoreapp3.0-Debug;netcoreapp3.0-Release;$(NetFrameworkCurrent)-Debug;$(NetFrameworkCurrent)-Release;netstandard2.1-Debug;netstandard2.1-Release @@ -12,7 +12,7 @@ - + diff --git a/src/libraries/System.Security.Cryptography.Pkcs/src/Configurations.props b/src/libraries/System.Security.Cryptography.Pkcs/src/Configurations.props index 8302dece3879e..2176ece710e7d 100644 --- a/src/libraries/System.Security.Cryptography.Pkcs/src/Configurations.props +++ b/src/libraries/System.Security.Cryptography.Pkcs/src/Configurations.props @@ -11,9 +11,9 @@ $(PackageConfigurations) - netfx-Windows_NT; - netcoreapp-Windows_NT; - netcoreapp; + $(NetFrameworkCurrent)-Windows_NT; + $(NetCoreAppCurrent)-Windows_NT; + $(NetCoreAppCurrent); diff --git a/src/libraries/System.Security.Cryptography.Pkcs/src/System.Security.Cryptography.Pkcs.csproj b/src/libraries/System.Security.Cryptography.Pkcs/src/System.Security.Cryptography.Pkcs.csproj index f04fd3801c935..73084346803d9 100644 --- a/src/libraries/System.Security.Cryptography.Pkcs/src/System.Security.Cryptography.Pkcs.csproj +++ b/src/libraries/System.Security.Cryptography.Pkcs/src/System.Security.Cryptography.Pkcs.csproj @@ -7,7 +7,7 @@ true $(NoWarn);CS1574;CS3016;CA5379;CA5384 annotations - net461-Windows_NT-Debug;net461-Windows_NT-Release;netcoreapp-Debug;netcoreapp-Release;netcoreapp-Windows_NT-Debug;netcoreapp-Windows_NT-Release;netcoreapp3.0-Debug;netcoreapp3.0-Release;netcoreapp3.0-Windows_NT-Debug;netcoreapp3.0-Windows_NT-Release;netfx-Windows_NT-Debug;netfx-Windows_NT-Release;netstandard2.0-Debug;netstandard2.0-Release;netstandard2.0-Windows_NT-Debug;netstandard2.0-Windows_NT-Release;netstandard2.1-Debug;netstandard2.1-Release;netstandard2.1-Windows_NT-Debug;netstandard2.1-Windows_NT-Release + net461-Windows_NT-Debug;net461-Windows_NT-Release;$(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release;$(NetCoreAppCurrent)-Windows_NT-Debug;$(NetCoreAppCurrent)-Windows_NT-Release;netcoreapp3.0-Debug;netcoreapp3.0-Release;netcoreapp3.0-Windows_NT-Debug;netcoreapp3.0-Windows_NT-Release;$(NetFrameworkCurrent)-Windows_NT-Debug;$(NetFrameworkCurrent)-Windows_NT-Release;netstandard2.0-Debug;netstandard2.0-Release;netstandard2.0-Windows_NT-Debug;netstandard2.0-Windows_NT-Release;netstandard2.1-Debug;netstandard2.1-Release;netstandard2.1-Windows_NT-Debug;netstandard2.1-Windows_NT-Release diff --git a/src/libraries/System.Security.Cryptography.Pkcs/tests/Configurations.props b/src/libraries/System.Security.Cryptography.Pkcs/tests/Configurations.props index 9808a1a04ccc7..2d00958ac8acf 100644 --- a/src/libraries/System.Security.Cryptography.Pkcs/tests/Configurations.props +++ b/src/libraries/System.Security.Cryptography.Pkcs/tests/Configurations.props @@ -1,9 +1,9 @@  - netcoreapp-Windows_NT; - netcoreapp; - netfx-Windows_NT; + $(NetCoreAppCurrent)-Windows_NT; + $(NetCoreAppCurrent); + $(NetFrameworkCurrent)-Windows_NT; diff --git a/src/libraries/System.Security.Cryptography.Pkcs/tests/System.Security.Cryptography.Pkcs.Tests.csproj b/src/libraries/System.Security.Cryptography.Pkcs/tests/System.Security.Cryptography.Pkcs.Tests.csproj index b11241b5fa233..9a6ac345d4de4 100644 --- a/src/libraries/System.Security.Cryptography.Pkcs/tests/System.Security.Cryptography.Pkcs.Tests.csproj +++ b/src/libraries/System.Security.Cryptography.Pkcs/tests/System.Security.Cryptography.Pkcs.Tests.csproj @@ -1,7 +1,7 @@ true - netcoreapp-Debug;netcoreapp-Release;netcoreapp-Windows_NT-Debug;netcoreapp-Windows_NT-Release;netfx-Windows_NT-Debug;netfx-Windows_NT-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release;$(NetCoreAppCurrent)-Windows_NT-Debug;$(NetCoreAppCurrent)-Windows_NT-Release;$(NetFrameworkCurrent)-Windows_NT-Debug;$(NetFrameworkCurrent)-Windows_NT-Release diff --git a/src/libraries/System.Security.Cryptography.Primitives/System.Security.Cryptography.Primitives.sln b/src/libraries/System.Security.Cryptography.Primitives/System.Security.Cryptography.Primitives.sln index 7352af9ca4c4c..e0173db168eac 100644 --- a/src/libraries/System.Security.Cryptography.Primitives/System.Security.Cryptography.Primitives.sln +++ b/src/libraries/System.Security.Cryptography.Primitives/System.Security.Cryptography.Primitives.sln @@ -26,18 +26,18 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {101EB757-55A4-4F48-841C-C088640B8F57}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {101EB757-55A4-4F48-841C-C088640B8F57}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {101EB757-55A4-4F48-841C-C088640B8F57}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {101EB757-55A4-4F48-841C-C088640B8F57}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU - {DF73E985-E143-4BF5-9FA4-E199E7D36235}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {DF73E985-E143-4BF5-9FA4-E199E7D36235}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {DF73E985-E143-4BF5-9FA4-E199E7D36235}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {DF73E985-E143-4BF5-9FA4-E199E7D36235}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU - {F050C895-297F-41C6-98C3-406D791AD515}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {F050C895-297F-41C6-98C3-406D791AD515}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {F050C895-297F-41C6-98C3-406D791AD515}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {F050C895-297F-41C6-98C3-406D791AD515}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU + {101EB757-55A4-4F48-841C-C088640B8F57}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {101EB757-55A4-4F48-841C-C088640B8F57}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {101EB757-55A4-4F48-841C-C088640B8F57}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {101EB757-55A4-4F48-841C-C088640B8F57}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU + {DF73E985-E143-4BF5-9FA4-E199E7D36235}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {DF73E985-E143-4BF5-9FA4-E199E7D36235}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {DF73E985-E143-4BF5-9FA4-E199E7D36235}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {DF73E985-E143-4BF5-9FA4-E199E7D36235}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU + {F050C895-297F-41C6-98C3-406D791AD515}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {F050C895-297F-41C6-98C3-406D791AD515}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {F050C895-297F-41C6-98C3-406D791AD515}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {F050C895-297F-41C6-98C3-406D791AD515}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/src/libraries/System.Security.Cryptography.Primitives/ref/Configurations.props b/src/libraries/System.Security.Cryptography.Primitives/ref/Configurations.props index 89d6ac0f025b9..b6e0d3ce6383b 100644 --- a/src/libraries/System.Security.Cryptography.Primitives/ref/Configurations.props +++ b/src/libraries/System.Security.Cryptography.Primitives/ref/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Security.Cryptography.Primitives/ref/System.Security.Cryptography.Primitives.csproj b/src/libraries/System.Security.Cryptography.Primitives/ref/System.Security.Cryptography.Primitives.csproj index 431356d3bbcad..bd89a86695fe2 100644 --- a/src/libraries/System.Security.Cryptography.Primitives/ref/System.Security.Cryptography.Primitives.csproj +++ b/src/libraries/System.Security.Cryptography.Primitives/ref/System.Security.Cryptography.Primitives.csproj @@ -1,6 +1,6 @@ - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release enable diff --git a/src/libraries/System.Security.Cryptography.Primitives/src/Configurations.props b/src/libraries/System.Security.Cryptography.Primitives/src/Configurations.props index 89d6ac0f025b9..b6e0d3ce6383b 100644 --- a/src/libraries/System.Security.Cryptography.Primitives/src/Configurations.props +++ b/src/libraries/System.Security.Cryptography.Primitives/src/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Security.Cryptography.Primitives/src/System.Security.Cryptography.Primitives.csproj b/src/libraries/System.Security.Cryptography.Primitives/src/System.Security.Cryptography.Primitives.csproj index 935454ebc5099..89e13507907ee 100644 --- a/src/libraries/System.Security.Cryptography.Primitives/src/System.Security.Cryptography.Primitives.csproj +++ b/src/libraries/System.Security.Cryptography.Primitives/src/System.Security.Cryptography.Primitives.csproj @@ -3,7 +3,7 @@ System.Security.Cryptography.Primitives true true - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release enable diff --git a/src/libraries/System.Security.Cryptography.Primitives/tests/Configurations.props b/src/libraries/System.Security.Cryptography.Primitives/tests/Configurations.props index 89d6ac0f025b9..b6e0d3ce6383b 100644 --- a/src/libraries/System.Security.Cryptography.Primitives/tests/Configurations.props +++ b/src/libraries/System.Security.Cryptography.Primitives/tests/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Security.Cryptography.Primitives/tests/System.Security.Cryptography.Primitives.Tests.csproj b/src/libraries/System.Security.Cryptography.Primitives/tests/System.Security.Cryptography.Primitives.Tests.csproj index d860ac3720ac8..23f7ebe7b5bd3 100644 --- a/src/libraries/System.Security.Cryptography.Primitives/tests/System.Security.Cryptography.Primitives.Tests.csproj +++ b/src/libraries/System.Security.Cryptography.Primitives/tests/System.Security.Cryptography.Primitives.Tests.csproj @@ -1,7 +1,7 @@ - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release diff --git a/src/libraries/System.Security.Cryptography.ProtectedData/System.Security.Cryptography.ProtectedData.sln b/src/libraries/System.Security.Cryptography.ProtectedData/System.Security.Cryptography.ProtectedData.sln index ef8f7dc338669..41719cfbe6b51 100644 --- a/src/libraries/System.Security.Cryptography.ProtectedData/System.Security.Cryptography.ProtectedData.sln +++ b/src/libraries/System.Security.Cryptography.ProtectedData/System.Security.Cryptography.ProtectedData.sln @@ -26,10 +26,10 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {749ED7AD-E3C1-4611-99BD-C5D4B3934B3A}.Debug|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Debug|Any CPU - {749ED7AD-E3C1-4611-99BD-C5D4B3934B3A}.Debug|Any CPU.Build.0 = netcoreapp-Windows_NT-Debug|Any CPU - {749ED7AD-E3C1-4611-99BD-C5D4B3934B3A}.Release|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Release|Any CPU - {749ED7AD-E3C1-4611-99BD-C5D4B3934B3A}.Release|Any CPU.Build.0 = netcoreapp-Windows_NT-Release|Any CPU + {749ED7AD-E3C1-4611-99BD-C5D4B3934B3A}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Debug|Any CPU + {749ED7AD-E3C1-4611-99BD-C5D4B3934B3A}.Debug|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Debug|Any CPU + {749ED7AD-E3C1-4611-99BD-C5D4B3934B3A}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Release|Any CPU + {749ED7AD-E3C1-4611-99BD-C5D4B3934B3A}.Release|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Release|Any CPU {FB39F994-1504-4B96-9588-E0385D3B73F1}.Debug|Any CPU.ActiveCfg = netstandard2.0-Windows_NT-Debug|Any CPU {FB39F994-1504-4B96-9588-E0385D3B73F1}.Debug|Any CPU.Build.0 = netstandard2.0-Windows_NT-Debug|Any CPU {FB39F994-1504-4B96-9588-E0385D3B73F1}.Release|Any CPU.ActiveCfg = netstandard2.0-Windows_NT-Release|Any CPU diff --git a/src/libraries/System.Security.Cryptography.ProtectedData/ref/Configurations.props b/src/libraries/System.Security.Cryptography.ProtectedData/ref/Configurations.props index 4133f38b35be2..71ed45d4378af 100644 --- a/src/libraries/System.Security.Cryptography.ProtectedData/ref/Configurations.props +++ b/src/libraries/System.Security.Cryptography.ProtectedData/ref/Configurations.props @@ -6,7 +6,7 @@ $(PackageConfigurations); - netfx; + $(NetFrameworkCurrent); \ No newline at end of file diff --git a/src/libraries/System.Security.Cryptography.ProtectedData/ref/System.Security.Cryptography.ProtectedData.csproj b/src/libraries/System.Security.Cryptography.ProtectedData/ref/System.Security.Cryptography.ProtectedData.csproj index 482f0d65d8b0e..1256ed57ccea3 100644 --- a/src/libraries/System.Security.Cryptography.ProtectedData/ref/System.Security.Cryptography.ProtectedData.csproj +++ b/src/libraries/System.Security.Cryptography.ProtectedData/ref/System.Security.Cryptography.ProtectedData.csproj @@ -1,7 +1,7 @@ true - net461-Debug;net461-Release;netfx-Debug;netfx-Release;netstandard2.0-Debug;netstandard2.0-Release + net461-Debug;net461-Release;$(NetFrameworkCurrent)-Debug;$(NetFrameworkCurrent)-Release;netstandard2.0-Debug;netstandard2.0-Release diff --git a/src/libraries/System.Security.Cryptography.ProtectedData/src/Configurations.props b/src/libraries/System.Security.Cryptography.ProtectedData/src/Configurations.props index 017cf13a810bf..0a69df7a4043f 100644 --- a/src/libraries/System.Security.Cryptography.ProtectedData/src/Configurations.props +++ b/src/libraries/System.Security.Cryptography.ProtectedData/src/Configurations.props @@ -7,7 +7,7 @@ $(PackageConfigurations) - netfx-Windows_NT; + $(NetFrameworkCurrent)-Windows_NT; \ No newline at end of file diff --git a/src/libraries/System.Security.Cryptography.ProtectedData/src/System.Security.Cryptography.ProtectedData.csproj b/src/libraries/System.Security.Cryptography.ProtectedData/src/System.Security.Cryptography.ProtectedData.csproj index 33780367d2ac1..f95feb9974854 100644 --- a/src/libraries/System.Security.Cryptography.ProtectedData/src/System.Security.Cryptography.ProtectedData.csproj +++ b/src/libraries/System.Security.Cryptography.ProtectedData/src/System.Security.Cryptography.ProtectedData.csproj @@ -5,7 +5,7 @@ true true SR.PlatformNotSupported_CryptographyProtectedData - net461-Windows_NT-Debug;net461-Windows_NT-Release;netfx-Windows_NT-Debug;netfx-Windows_NT-Release;netstandard2.0-Debug;netstandard2.0-Release;netstandard2.0-Windows_NT-Debug;netstandard2.0-Windows_NT-Release + net461-Windows_NT-Debug;net461-Windows_NT-Release;$(NetFrameworkCurrent)-Windows_NT-Debug;$(NetFrameworkCurrent)-Windows_NT-Release;netstandard2.0-Debug;netstandard2.0-Release;netstandard2.0-Windows_NT-Debug;netstandard2.0-Windows_NT-Release diff --git a/src/libraries/System.Security.Cryptography.ProtectedData/tests/Configurations.props b/src/libraries/System.Security.Cryptography.ProtectedData/tests/Configurations.props index 8bfb431d9ba66..96779f45bfb69 100644 --- a/src/libraries/System.Security.Cryptography.ProtectedData/tests/Configurations.props +++ b/src/libraries/System.Security.Cryptography.ProtectedData/tests/Configurations.props @@ -1,8 +1,8 @@  - netcoreapp-Windows_NT; - netfx-Windows_NT; + $(NetCoreAppCurrent)-Windows_NT; + $(NetFrameworkCurrent)-Windows_NT; \ No newline at end of file diff --git a/src/libraries/System.Security.Cryptography.ProtectedData/tests/System.Security.Cryptography.ProtectedData.Tests.csproj b/src/libraries/System.Security.Cryptography.ProtectedData/tests/System.Security.Cryptography.ProtectedData.Tests.csproj index 6ef0cce9bfeb0..03f0aeb58edf2 100644 --- a/src/libraries/System.Security.Cryptography.ProtectedData/tests/System.Security.Cryptography.ProtectedData.Tests.csproj +++ b/src/libraries/System.Security.Cryptography.ProtectedData/tests/System.Security.Cryptography.ProtectedData.Tests.csproj @@ -1,7 +1,7 @@ true - netcoreapp-Windows_NT-Debug;netcoreapp-Windows_NT-Release;netfx-Windows_NT-Debug;netfx-Windows_NT-Release + $(NetCoreAppCurrent)-Windows_NT-Debug;$(NetCoreAppCurrent)-Windows_NT-Release;$(NetFrameworkCurrent)-Windows_NT-Debug;$(NetFrameworkCurrent)-Windows_NT-Release diff --git a/src/libraries/System.Security.Cryptography.X509Certificates/System.Security.Cryptography.X509Certificates.sln b/src/libraries/System.Security.Cryptography.X509Certificates/System.Security.Cryptography.X509Certificates.sln index 497d068de32e3..f41b595867237 100644 --- a/src/libraries/System.Security.Cryptography.X509Certificates/System.Security.Cryptography.X509Certificates.sln +++ b/src/libraries/System.Security.Cryptography.X509Certificates/System.Security.Cryptography.X509Certificates.sln @@ -26,18 +26,18 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {A28B0064-EFB2-4B77-B97C-DECF5DAB074E}.Debug|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Debug|Any CPU - {A28B0064-EFB2-4B77-B97C-DECF5DAB074E}.Debug|Any CPU.Build.0 = netcoreapp-Windows_NT-Debug|Any CPU - {A28B0064-EFB2-4B77-B97C-DECF5DAB074E}.Release|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Release|Any CPU - {A28B0064-EFB2-4B77-B97C-DECF5DAB074E}.Release|Any CPU.Build.0 = netcoreapp-Windows_NT-Release|Any CPU - {6F8576C2-6CD0-4DF3-8394-00B002D82E40}.Debug|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Debug|Any CPU - {6F8576C2-6CD0-4DF3-8394-00B002D82E40}.Debug|Any CPU.Build.0 = netcoreapp-Windows_NT-Debug|Any CPU - {6F8576C2-6CD0-4DF3-8394-00B002D82E40}.Release|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Release|Any CPU - {6F8576C2-6CD0-4DF3-8394-00B002D82E40}.Release|Any CPU.Build.0 = netcoreapp-Windows_NT-Release|Any CPU - {B37248D0-B191-4971-AD50-01CFEDF1E09B}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {B37248D0-B191-4971-AD50-01CFEDF1E09B}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {B37248D0-B191-4971-AD50-01CFEDF1E09B}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {B37248D0-B191-4971-AD50-01CFEDF1E09B}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU + {A28B0064-EFB2-4B77-B97C-DECF5DAB074E}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Debug|Any CPU + {A28B0064-EFB2-4B77-B97C-DECF5DAB074E}.Debug|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Debug|Any CPU + {A28B0064-EFB2-4B77-B97C-DECF5DAB074E}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Release|Any CPU + {A28B0064-EFB2-4B77-B97C-DECF5DAB074E}.Release|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Release|Any CPU + {6F8576C2-6CD0-4DF3-8394-00B002D82E40}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Debug|Any CPU + {6F8576C2-6CD0-4DF3-8394-00B002D82E40}.Debug|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Debug|Any CPU + {6F8576C2-6CD0-4DF3-8394-00B002D82E40}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Release|Any CPU + {6F8576C2-6CD0-4DF3-8394-00B002D82E40}.Release|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Release|Any CPU + {B37248D0-B191-4971-AD50-01CFEDF1E09B}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {B37248D0-B191-4971-AD50-01CFEDF1E09B}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {B37248D0-B191-4971-AD50-01CFEDF1E09B}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {B37248D0-B191-4971-AD50-01CFEDF1E09B}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/src/libraries/System.Security.Cryptography.X509Certificates/ref/Configurations.props b/src/libraries/System.Security.Cryptography.X509Certificates/ref/Configurations.props index 89d6ac0f025b9..b6e0d3ce6383b 100644 --- a/src/libraries/System.Security.Cryptography.X509Certificates/ref/Configurations.props +++ b/src/libraries/System.Security.Cryptography.X509Certificates/ref/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Security.Cryptography.X509Certificates/ref/System.Security.Cryptography.X509Certificates.csproj b/src/libraries/System.Security.Cryptography.X509Certificates/ref/System.Security.Cryptography.X509Certificates.csproj index 9f3ca2648d925..b05980e9a67b2 100644 --- a/src/libraries/System.Security.Cryptography.X509Certificates/ref/System.Security.Cryptography.X509Certificates.csproj +++ b/src/libraries/System.Security.Cryptography.X509Certificates/ref/System.Security.Cryptography.X509Certificates.csproj @@ -1,6 +1,6 @@ - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release diff --git a/src/libraries/System.Security.Cryptography.X509Certificates/src/Configurations.props b/src/libraries/System.Security.Cryptography.X509Certificates/src/Configurations.props index 28007ae5b2950..01aaf3eabdafb 100644 --- a/src/libraries/System.Security.Cryptography.X509Certificates/src/Configurations.props +++ b/src/libraries/System.Security.Cryptography.X509Certificates/src/Configurations.props @@ -1,9 +1,9 @@  - netcoreapp-OSX; - netcoreapp-Unix; - netcoreapp-Windows_NT; + $(NetCoreAppCurrent)-OSX; + $(NetCoreAppCurrent)-Unix; + $(NetCoreAppCurrent)-Windows_NT; diff --git a/src/libraries/System.Security.Cryptography.X509Certificates/src/System.Security.Cryptography.X509Certificates.csproj b/src/libraries/System.Security.Cryptography.X509Certificates/src/System.Security.Cryptography.X509Certificates.csproj index 2af682539a9c6..9f710efa0ec58 100644 --- a/src/libraries/System.Security.Cryptography.X509Certificates/src/System.Security.Cryptography.X509Certificates.csproj +++ b/src/libraries/System.Security.Cryptography.X509Certificates/src/System.Security.Cryptography.X509Certificates.csproj @@ -4,7 +4,7 @@ System.Security.Cryptography.X509Certificates true $(NoWarn);CS3016;CA5379;CA5384;CA5385 - netcoreapp-OSX-Debug;netcoreapp-OSX-Release;netcoreapp-Unix-Debug;netcoreapp-Unix-Release;netcoreapp-Windows_NT-Debug;netcoreapp-Windows_NT-Release + $(NetCoreAppCurrent)-OSX-Debug;$(NetCoreAppCurrent)-OSX-Release;$(NetCoreAppCurrent)-Unix-Debug;$(NetCoreAppCurrent)-Unix-Release;$(NetCoreAppCurrent)-Windows_NT-Debug;$(NetCoreAppCurrent)-Windows_NT-Release diff --git a/src/libraries/System.Security.Cryptography.X509Certificates/tests/Configurations.props b/src/libraries/System.Security.Cryptography.X509Certificates/tests/Configurations.props index 28007ae5b2950..01aaf3eabdafb 100644 --- a/src/libraries/System.Security.Cryptography.X509Certificates/tests/Configurations.props +++ b/src/libraries/System.Security.Cryptography.X509Certificates/tests/Configurations.props @@ -1,9 +1,9 @@  - netcoreapp-OSX; - netcoreapp-Unix; - netcoreapp-Windows_NT; + $(NetCoreAppCurrent)-OSX; + $(NetCoreAppCurrent)-Unix; + $(NetCoreAppCurrent)-Windows_NT; diff --git a/src/libraries/System.Security.Cryptography.X509Certificates/tests/System.Security.Cryptography.X509Certificates.Tests.csproj b/src/libraries/System.Security.Cryptography.X509Certificates/tests/System.Security.Cryptography.X509Certificates.Tests.csproj index 1669f9d1f44ff..3daa74cb9c38c 100644 --- a/src/libraries/System.Security.Cryptography.X509Certificates/tests/System.Security.Cryptography.X509Certificates.Tests.csproj +++ b/src/libraries/System.Security.Cryptography.X509Certificates/tests/System.Security.Cryptography.X509Certificates.Tests.csproj @@ -4,7 +4,7 @@ $(DefineConstants);HAVE_THUMBPRINT_OVERLOADS $(DefineConstants);Unix true - netcoreapp-OSX-Debug;netcoreapp-OSX-Release;netcoreapp-Unix-Debug;netcoreapp-Unix-Release;netcoreapp-Windows_NT-Debug;netcoreapp-Windows_NT-Release + $(NetCoreAppCurrent)-OSX-Debug;$(NetCoreAppCurrent)-OSX-Release;$(NetCoreAppCurrent)-Unix-Debug;$(NetCoreAppCurrent)-Unix-Release;$(NetCoreAppCurrent)-Windows_NT-Debug;$(NetCoreAppCurrent)-Windows_NT-Release diff --git a/src/libraries/System.Security.Cryptography.Xml/System.Security.Cryptography.Xml.sln b/src/libraries/System.Security.Cryptography.Xml/System.Security.Cryptography.Xml.sln index 686f96007f8d3..0c08cc35740ce 100644 --- a/src/libraries/System.Security.Cryptography.Xml/System.Security.Cryptography.Xml.sln +++ b/src/libraries/System.Security.Cryptography.Xml/System.Security.Cryptography.Xml.sln @@ -26,10 +26,10 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {4A85232C-E914-4E06-8542-26DAF4B22D60}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {4A85232C-E914-4E06-8542-26DAF4B22D60}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {4A85232C-E914-4E06-8542-26DAF4B22D60}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {4A85232C-E914-4E06-8542-26DAF4B22D60}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU + {4A85232C-E914-4E06-8542-26DAF4B22D60}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {4A85232C-E914-4E06-8542-26DAF4B22D60}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {4A85232C-E914-4E06-8542-26DAF4B22D60}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {4A85232C-E914-4E06-8542-26DAF4B22D60}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU {0544EAE3-0CF2-4EA6-93BE-A9FF8B52724A}.Debug|Any CPU.ActiveCfg = netstandard2.0-Debug|Any CPU {0544EAE3-0CF2-4EA6-93BE-A9FF8B52724A}.Debug|Any CPU.Build.0 = netstandard2.0-Debug|Any CPU {0544EAE3-0CF2-4EA6-93BE-A9FF8B52724A}.Release|Any CPU.ActiveCfg = netstandard2.0-Release|Any CPU diff --git a/src/libraries/System.Security.Cryptography.Xml/ref/Configurations.props b/src/libraries/System.Security.Cryptography.Xml/ref/Configurations.props index e3aaea2aeb335..9b0db82ce5150 100644 --- a/src/libraries/System.Security.Cryptography.Xml/ref/Configurations.props +++ b/src/libraries/System.Security.Cryptography.Xml/ref/Configurations.props @@ -6,7 +6,7 @@ $(PackageConfigurations); - netfx; + $(NetFrameworkCurrent); diff --git a/src/libraries/System.Security.Cryptography.Xml/ref/System.Security.Cryptography.Xml.csproj b/src/libraries/System.Security.Cryptography.Xml/ref/System.Security.Cryptography.Xml.csproj index 2aa36cb807c6d..cba5e53b2f18f 100644 --- a/src/libraries/System.Security.Cryptography.Xml/ref/System.Security.Cryptography.Xml.csproj +++ b/src/libraries/System.Security.Cryptography.Xml/ref/System.Security.Cryptography.Xml.csproj @@ -1,7 +1,7 @@ true - net461-Debug;net461-Release;netfx-Debug;netfx-Release;netstandard2.0-Debug;netstandard2.0-Release + net461-Debug;net461-Release;$(NetFrameworkCurrent)-Debug;$(NetFrameworkCurrent)-Release;netstandard2.0-Debug;netstandard2.0-Release diff --git a/src/libraries/System.Security.Cryptography.Xml/src/Configurations.props b/src/libraries/System.Security.Cryptography.Xml/src/Configurations.props index 3d8c7a5840bef..1af515cef2d00 100644 --- a/src/libraries/System.Security.Cryptography.Xml/src/Configurations.props +++ b/src/libraries/System.Security.Cryptography.Xml/src/Configurations.props @@ -6,7 +6,7 @@ $(PackageConfigurations); - netfx; + $(NetFrameworkCurrent); diff --git a/src/libraries/System.Security.Cryptography.Xml/src/System.Security.Cryptography.Xml.csproj b/src/libraries/System.Security.Cryptography.Xml/src/System.Security.Cryptography.Xml.csproj index 66f229061824c..47207d783a970 100644 --- a/src/libraries/System.Security.Cryptography.Xml/src/System.Security.Cryptography.Xml.csproj +++ b/src/libraries/System.Security.Cryptography.Xml/src/System.Security.Cryptography.Xml.csproj @@ -3,7 +3,7 @@ true true $(NoWarn);CA5384;CA5385 - net461-Debug;net461-Release;netfx-Debug;netfx-Release;netstandard2.0-Debug;netstandard2.0-Release + net461-Debug;net461-Release;$(NetFrameworkCurrent)-Debug;$(NetFrameworkCurrent)-Release;netstandard2.0-Debug;netstandard2.0-Release diff --git a/src/libraries/System.Security.Cryptography.Xml/tests/Configurations.props b/src/libraries/System.Security.Cryptography.Xml/tests/Configurations.props index b668337076f61..eba89a953a3cb 100644 --- a/src/libraries/System.Security.Cryptography.Xml/tests/Configurations.props +++ b/src/libraries/System.Security.Cryptography.Xml/tests/Configurations.props @@ -1,8 +1,8 @@ - netcoreapp; - netfx; + $(NetCoreAppCurrent); + $(NetFrameworkCurrent); diff --git a/src/libraries/System.Security.Cryptography.Xml/tests/System.Security.Cryptography.Xml.Tests.csproj b/src/libraries/System.Security.Cryptography.Xml/tests/System.Security.Cryptography.Xml.Tests.csproj index 53d5c03ad0410..ee54bbe904142 100644 --- a/src/libraries/System.Security.Cryptography.Xml/tests/System.Security.Cryptography.Xml.Tests.csproj +++ b/src/libraries/System.Security.Cryptography.Xml/tests/System.Security.Cryptography.Xml.Tests.csproj @@ -1,7 +1,7 @@ Library - netcoreapp-Debug;netcoreapp-Release;netfx-Debug;netfx-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release;$(NetFrameworkCurrent)-Debug;$(NetFrameworkCurrent)-Release System.Security.Cryptography.Xml.Tests diff --git a/src/libraries/System.Security.Permissions/System.Security.Permissions.sln b/src/libraries/System.Security.Permissions/System.Security.Permissions.sln index 04b027dd48053..55a840add8c5f 100644 --- a/src/libraries/System.Security.Permissions/System.Security.Permissions.sln +++ b/src/libraries/System.Security.Permissions/System.Security.Permissions.sln @@ -26,18 +26,18 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {7517F1E9-EEB4-4676-A054-CE4A44A66B66}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {7517F1E9-EEB4-4676-A054-CE4A44A66B66}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {7517F1E9-EEB4-4676-A054-CE4A44A66B66}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {7517F1E9-EEB4-4676-A054-CE4A44A66B66}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU - {07390899-C8F6-4E83-A3A9-6867B8CB46A0}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {07390899-C8F6-4E83-A3A9-6867B8CB46A0}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {07390899-C8F6-4E83-A3A9-6867B8CB46A0}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {07390899-C8F6-4E83-A3A9-6867B8CB46A0}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU - {07CAF142-B259-418E-86EF-C4BD8B50253E}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {07CAF142-B259-418E-86EF-C4BD8B50253E}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {07CAF142-B259-418E-86EF-C4BD8B50253E}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {07CAF142-B259-418E-86EF-C4BD8B50253E}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU + {7517F1E9-EEB4-4676-A054-CE4A44A66B66}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {7517F1E9-EEB4-4676-A054-CE4A44A66B66}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {7517F1E9-EEB4-4676-A054-CE4A44A66B66}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {7517F1E9-EEB4-4676-A054-CE4A44A66B66}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU + {07390899-C8F6-4E83-A3A9-6867B8CB46A0}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {07390899-C8F6-4E83-A3A9-6867B8CB46A0}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {07390899-C8F6-4E83-A3A9-6867B8CB46A0}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {07390899-C8F6-4E83-A3A9-6867B8CB46A0}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU + {07CAF142-B259-418E-86EF-C4BD8B50253E}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {07CAF142-B259-418E-86EF-C4BD8B50253E}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {07CAF142-B259-418E-86EF-C4BD8B50253E}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {07CAF142-B259-418E-86EF-C4BD8B50253E}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/src/libraries/System.Security.Permissions/ref/Configurations.props b/src/libraries/System.Security.Permissions/ref/Configurations.props index 1c0ad465eb537..46b55565feb87 100644 --- a/src/libraries/System.Security.Permissions/ref/Configurations.props +++ b/src/libraries/System.Security.Permissions/ref/Configurations.props @@ -7,8 +7,8 @@ $(PackageConfigurations); - netcoreapp; - netfx; + $(NetCoreAppCurrent); + $(NetFrameworkCurrent); \ No newline at end of file diff --git a/src/libraries/System.Security.Permissions/ref/System.Security.Permissions.csproj b/src/libraries/System.Security.Permissions/ref/System.Security.Permissions.csproj index 8f4df1495344d..b77fad6590f20 100644 --- a/src/libraries/System.Security.Permissions/ref/System.Security.Permissions.csproj +++ b/src/libraries/System.Security.Permissions/ref/System.Security.Permissions.csproj @@ -1,7 +1,7 @@  true - net461-Debug;net461-Release;netcoreapp-Debug;netcoreapp-Release;netcoreapp3.0-Debug;netcoreapp3.0-Release;netfx-Debug;netfx-Release;netstandard2.0-Debug;netstandard2.0-Release + net461-Debug;net461-Release;$(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release;netcoreapp3.0-Debug;netcoreapp3.0-Release;$(NetFrameworkCurrent)-Debug;$(NetFrameworkCurrent)-Release;netstandard2.0-Debug;netstandard2.0-Release @@ -27,7 +27,7 @@ - + diff --git a/src/libraries/System.Security.Permissions/src/Configurations.props b/src/libraries/System.Security.Permissions/src/Configurations.props index 2b629ef48f778..97f03216feb42 100644 --- a/src/libraries/System.Security.Permissions/src/Configurations.props +++ b/src/libraries/System.Security.Permissions/src/Configurations.props @@ -7,8 +7,8 @@ $(PackageConfigurations); - netcoreapp; - netfx; + $(NetCoreAppCurrent); + $(NetFrameworkCurrent); \ No newline at end of file diff --git a/src/libraries/System.Security.Permissions/src/System.Security.Permissions.csproj b/src/libraries/System.Security.Permissions/src/System.Security.Permissions.csproj index e17eaf7f3c3a0..02f65c4f9259d 100644 --- a/src/libraries/System.Security.Permissions/src/System.Security.Permissions.csproj +++ b/src/libraries/System.Security.Permissions/src/System.Security.Permissions.csproj @@ -1,7 +1,7 @@  true - net461-Debug;net461-Release;netcoreapp-Debug;netcoreapp-Release;netcoreapp3.0-Debug;netcoreapp3.0-Release;netfx-Debug;netfx-Release;netstandard2.0-Debug;netstandard2.0-Release + net461-Debug;net461-Release;$(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release;netcoreapp3.0-Debug;netcoreapp3.0-Release;$(NetFrameworkCurrent)-Debug;$(NetFrameworkCurrent)-Release;netstandard2.0-Debug;netstandard2.0-Release diff --git a/src/libraries/System.Security.Permissions/tests/Configurations.props b/src/libraries/System.Security.Permissions/tests/Configurations.props index 89d6ac0f025b9..b6e0d3ce6383b 100644 --- a/src/libraries/System.Security.Permissions/tests/Configurations.props +++ b/src/libraries/System.Security.Permissions/tests/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Security.Permissions/tests/System.Security.Permissions.Tests.csproj b/src/libraries/System.Security.Permissions/tests/System.Security.Permissions.Tests.csproj index 4cb7e46bbd36e..b8a76cb3ad7bd 100644 --- a/src/libraries/System.Security.Permissions/tests/System.Security.Permissions.Tests.csproj +++ b/src/libraries/System.Security.Permissions/tests/System.Security.Permissions.Tests.csproj @@ -1,6 +1,6 @@ - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release @@ -18,7 +18,7 @@ - + diff --git a/src/libraries/System.Security.Principal.Windows/System.Security.Principal.Windows.sln b/src/libraries/System.Security.Principal.Windows/System.Security.Principal.Windows.sln index af9e5ca4c9bfd..5d8b4123a1c57 100644 --- a/src/libraries/System.Security.Principal.Windows/System.Security.Principal.Windows.sln +++ b/src/libraries/System.Security.Principal.Windows/System.Security.Principal.Windows.sln @@ -26,18 +26,18 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {6C36F3AC-54A1-4021-9F5D-CDEFF7347277}.Debug|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Debug|Any CPU - {6C36F3AC-54A1-4021-9F5D-CDEFF7347277}.Debug|Any CPU.Build.0 = netcoreapp-Windows_NT-Debug|Any CPU - {6C36F3AC-54A1-4021-9F5D-CDEFF7347277}.Release|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Release|Any CPU - {6C36F3AC-54A1-4021-9F5D-CDEFF7347277}.Release|Any CPU.Build.0 = netcoreapp-Windows_NT-Release|Any CPU - {F9E9894E-2513-4085-9046-311AD49D8AE6}.Debug|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Debug|Any CPU - {F9E9894E-2513-4085-9046-311AD49D8AE6}.Debug|Any CPU.Build.0 = netcoreapp-Windows_NT-Debug|Any CPU - {F9E9894E-2513-4085-9046-311AD49D8AE6}.Release|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Release|Any CPU - {F9E9894E-2513-4085-9046-311AD49D8AE6}.Release|Any CPU.Build.0 = netcoreapp-Windows_NT-Release|Any CPU - {25A02E40-D12C-4184-B599-E4F954D142DB}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {25A02E40-D12C-4184-B599-E4F954D142DB}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {25A02E40-D12C-4184-B599-E4F954D142DB}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {25A02E40-D12C-4184-B599-E4F954D142DB}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU + {6C36F3AC-54A1-4021-9F5D-CDEFF7347277}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Debug|Any CPU + {6C36F3AC-54A1-4021-9F5D-CDEFF7347277}.Debug|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Debug|Any CPU + {6C36F3AC-54A1-4021-9F5D-CDEFF7347277}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Release|Any CPU + {6C36F3AC-54A1-4021-9F5D-CDEFF7347277}.Release|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Release|Any CPU + {F9E9894E-2513-4085-9046-311AD49D8AE6}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Debug|Any CPU + {F9E9894E-2513-4085-9046-311AD49D8AE6}.Debug|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Debug|Any CPU + {F9E9894E-2513-4085-9046-311AD49D8AE6}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Release|Any CPU + {F9E9894E-2513-4085-9046-311AD49D8AE6}.Release|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Release|Any CPU + {25A02E40-D12C-4184-B599-E4F954D142DB}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {25A02E40-D12C-4184-B599-E4F954D142DB}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {25A02E40-D12C-4184-B599-E4F954D142DB}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {25A02E40-D12C-4184-B599-E4F954D142DB}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/src/libraries/System.Security.Principal.Windows/ref/Configurations.props b/src/libraries/System.Security.Principal.Windows/ref/Configurations.props index 3f827afa95ad8..fd87b7c5f3af4 100644 --- a/src/libraries/System.Security.Principal.Windows/ref/Configurations.props +++ b/src/libraries/System.Security.Principal.Windows/ref/Configurations.props @@ -7,8 +7,8 @@ $(PackageConfigurations); - netcoreapp; - netfx; + $(NetCoreAppCurrent); + $(NetFrameworkCurrent); \ No newline at end of file diff --git a/src/libraries/System.Security.Principal.Windows/ref/System.Security.Principal.Windows.csproj b/src/libraries/System.Security.Principal.Windows/ref/System.Security.Principal.Windows.csproj index bd2f40a15effc..e1908f1a7d3e7 100644 --- a/src/libraries/System.Security.Principal.Windows/ref/System.Security.Principal.Windows.csproj +++ b/src/libraries/System.Security.Principal.Windows/ref/System.Security.Principal.Windows.csproj @@ -1,7 +1,7 @@ true - net461-Debug;net461-Release;netcoreapp-Debug;netcoreapp-Release;netcoreapp3.0-Debug;netcoreapp3.0-Release;netfx-Debug;netfx-Release;netstandard2.0-Debug;netstandard2.0-Release + net461-Debug;net461-Release;$(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release;netcoreapp3.0-Debug;netcoreapp3.0-Release;$(NetFrameworkCurrent)-Debug;$(NetFrameworkCurrent)-Release;netstandard2.0-Debug;netstandard2.0-Release @@ -10,7 +10,7 @@ - + diff --git a/src/libraries/System.Security.Principal.Windows/src/Configurations.props b/src/libraries/System.Security.Principal.Windows/src/Configurations.props index d10fc6e07c15b..236a13038413c 100644 --- a/src/libraries/System.Security.Principal.Windows/src/Configurations.props +++ b/src/libraries/System.Security.Principal.Windows/src/Configurations.props @@ -10,9 +10,9 @@ $(PackageConfigurations) - netcoreapp-Windows_NT; - netcoreapp-Unix; - netfx-Windows_NT; + $(NetCoreAppCurrent)-Windows_NT; + $(NetCoreAppCurrent)-Unix; + $(NetFrameworkCurrent)-Windows_NT; diff --git a/src/libraries/System.Security.Principal.Windows/src/System.Security.Principal.Windows.csproj b/src/libraries/System.Security.Principal.Windows/src/System.Security.Principal.Windows.csproj index 02ca7fd6a6cae..b181ddaca5e6a 100644 --- a/src/libraries/System.Security.Principal.Windows/src/System.Security.Principal.Windows.csproj +++ b/src/libraries/System.Security.Principal.Windows/src/System.Security.Principal.Windows.csproj @@ -5,7 +5,7 @@ true true SR.PlatformNotSupported_Principal - net461-Windows_NT-Debug;net461-Windows_NT-Release;netcoreapp-Unix-Debug;netcoreapp-Unix-Release;netcoreapp-Windows_NT-Debug;netcoreapp-Windows_NT-Release;netcoreapp2.0-Unix-Debug;netcoreapp2.0-Unix-Release;netcoreapp2.0-Windows_NT-Debug;netcoreapp2.0-Windows_NT-Release;netcoreapp2.1-Unix-Debug;netcoreapp2.1-Unix-Release;netcoreapp2.1-Windows_NT-Debug;netcoreapp2.1-Windows_NT-Release;netfx-Windows_NT-Debug;netfx-Windows_NT-Release;netstandard2.0-Debug;netstandard2.0-Release + net461-Windows_NT-Debug;net461-Windows_NT-Release;$(NetCoreAppCurrent)-Unix-Debug;$(NetCoreAppCurrent)-Unix-Release;$(NetCoreAppCurrent)-Windows_NT-Debug;$(NetCoreAppCurrent)-Windows_NT-Release;netcoreapp2.0-Unix-Debug;netcoreapp2.0-Unix-Release;netcoreapp2.0-Windows_NT-Debug;netcoreapp2.0-Windows_NT-Release;netcoreapp2.1-Unix-Debug;netcoreapp2.1-Unix-Release;netcoreapp2.1-Windows_NT-Debug;netcoreapp2.1-Windows_NT-Release;$(NetFrameworkCurrent)-Windows_NT-Debug;$(NetFrameworkCurrent)-Windows_NT-Release;netstandard2.0-Debug;netstandard2.0-Release diff --git a/src/libraries/System.Security.Principal.Windows/tests/Configurations.props b/src/libraries/System.Security.Principal.Windows/tests/Configurations.props index 8bfb431d9ba66..96779f45bfb69 100644 --- a/src/libraries/System.Security.Principal.Windows/tests/Configurations.props +++ b/src/libraries/System.Security.Principal.Windows/tests/Configurations.props @@ -1,8 +1,8 @@  - netcoreapp-Windows_NT; - netfx-Windows_NT; + $(NetCoreAppCurrent)-Windows_NT; + $(NetFrameworkCurrent)-Windows_NT; \ No newline at end of file diff --git a/src/libraries/System.Security.Principal.Windows/tests/System.Security.Principal.Windows.Tests.csproj b/src/libraries/System.Security.Principal.Windows/tests/System.Security.Principal.Windows.Tests.csproj index 52a9d12a91371..bba20c6f07690 100644 --- a/src/libraries/System.Security.Principal.Windows/tests/System.Security.Principal.Windows.Tests.csproj +++ b/src/libraries/System.Security.Principal.Windows/tests/System.Security.Principal.Windows.Tests.csproj @@ -1,7 +1,7 @@  true - netcoreapp-Windows_NT-Debug;netcoreapp-Windows_NT-Release;netfx-Windows_NT-Debug;netfx-Windows_NT-Release + $(NetCoreAppCurrent)-Windows_NT-Debug;$(NetCoreAppCurrent)-Windows_NT-Release;$(NetFrameworkCurrent)-Windows_NT-Debug;$(NetFrameworkCurrent)-Windows_NT-Release diff --git a/src/libraries/System.Security.Principal/System.Security.Principal.sln b/src/libraries/System.Security.Principal/System.Security.Principal.sln index 42f7fb562836c..4053c757d4e1b 100644 --- a/src/libraries/System.Security.Principal/System.Security.Principal.sln +++ b/src/libraries/System.Security.Principal/System.Security.Principal.sln @@ -19,14 +19,14 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {FBE16BC8-AE2D-422C-861E-861814F53AF7}.Debug|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Debug|Any CPU - {FBE16BC8-AE2D-422C-861E-861814F53AF7}.Debug|Any CPU.Build.0 = netcoreapp-Windows_NT-Debug|Any CPU - {FBE16BC8-AE2D-422C-861E-861814F53AF7}.Release|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Release|Any CPU - {FBE16BC8-AE2D-422C-861E-861814F53AF7}.Release|Any CPU.Build.0 = netcoreapp-Windows_NT-Release|Any CPU - {06ECBECD-4100-474D-8F3C-21A0F66A92A6}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {06ECBECD-4100-474D-8F3C-21A0F66A92A6}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {06ECBECD-4100-474D-8F3C-21A0F66A92A6}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {06ECBECD-4100-474D-8F3C-21A0F66A92A6}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU + {FBE16BC8-AE2D-422C-861E-861814F53AF7}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Debug|Any CPU + {FBE16BC8-AE2D-422C-861E-861814F53AF7}.Debug|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Debug|Any CPU + {FBE16BC8-AE2D-422C-861E-861814F53AF7}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Release|Any CPU + {FBE16BC8-AE2D-422C-861E-861814F53AF7}.Release|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Release|Any CPU + {06ECBECD-4100-474D-8F3C-21A0F66A92A6}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {06ECBECD-4100-474D-8F3C-21A0F66A92A6}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {06ECBECD-4100-474D-8F3C-21A0F66A92A6}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {06ECBECD-4100-474D-8F3C-21A0F66A92A6}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/src/libraries/System.Security.Principal/ref/Configurations.props b/src/libraries/System.Security.Principal/ref/Configurations.props index 89d6ac0f025b9..b6e0d3ce6383b 100644 --- a/src/libraries/System.Security.Principal/ref/Configurations.props +++ b/src/libraries/System.Security.Principal/ref/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Security.Principal/ref/System.Security.Principal.csproj b/src/libraries/System.Security.Principal/ref/System.Security.Principal.csproj index cab9b15ddc8b4..a29a6a21455f5 100644 --- a/src/libraries/System.Security.Principal/ref/System.Security.Principal.csproj +++ b/src/libraries/System.Security.Principal/ref/System.Security.Principal.csproj @@ -1,6 +1,6 @@ - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release enable diff --git a/src/libraries/System.Security.Principal/src/Configurations.props b/src/libraries/System.Security.Principal/src/Configurations.props index ad8296d246d1f..eca4299792e25 100644 --- a/src/libraries/System.Security.Principal/src/Configurations.props +++ b/src/libraries/System.Security.Principal/src/Configurations.props @@ -1,8 +1,8 @@  - netcoreapp-Windows_NT; - netcoreapp-Unix; + $(NetCoreAppCurrent)-Windows_NT; + $(NetCoreAppCurrent)-Unix; \ No newline at end of file diff --git a/src/libraries/System.Security.Principal/src/System.Security.Principal.csproj b/src/libraries/System.Security.Principal/src/System.Security.Principal.csproj index 8690f05f2ac44..f41cd48bc9242 100644 --- a/src/libraries/System.Security.Principal/src/System.Security.Principal.csproj +++ b/src/libraries/System.Security.Principal/src/System.Security.Principal.csproj @@ -4,7 +4,7 @@ true true enable - netcoreapp-Unix-Debug;netcoreapp-Unix-Release;netcoreapp-Windows_NT-Debug;netcoreapp-Windows_NT-Release + $(NetCoreAppCurrent)-Unix-Debug;$(NetCoreAppCurrent)-Unix-Release;$(NetCoreAppCurrent)-Windows_NT-Debug;$(NetCoreAppCurrent)-Windows_NT-Release diff --git a/src/libraries/System.Security.SecureString/System.Security.SecureString.sln b/src/libraries/System.Security.SecureString/System.Security.SecureString.sln index 1de44f66ce130..cc8499b151207 100644 --- a/src/libraries/System.Security.SecureString/System.Security.SecureString.sln +++ b/src/libraries/System.Security.SecureString/System.Security.SecureString.sln @@ -26,18 +26,18 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {69609238-62C7-479D-A8CE-709F41101D3C}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {69609238-62C7-479D-A8CE-709F41101D3C}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {69609238-62C7-479D-A8CE-709F41101D3C}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {69609238-62C7-479D-A8CE-709F41101D3C}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU - {A958BBDD-3238-4E58-AB7F-390AB6D88233}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {A958BBDD-3238-4E58-AB7F-390AB6D88233}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {A958BBDD-3238-4E58-AB7F-390AB6D88233}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {A958BBDD-3238-4E58-AB7F-390AB6D88233}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU - {899EC05D-7861-447F-9216-67F8547516DD}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {899EC05D-7861-447F-9216-67F8547516DD}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {899EC05D-7861-447F-9216-67F8547516DD}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {899EC05D-7861-447F-9216-67F8547516DD}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU + {69609238-62C7-479D-A8CE-709F41101D3C}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {69609238-62C7-479D-A8CE-709F41101D3C}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {69609238-62C7-479D-A8CE-709F41101D3C}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {69609238-62C7-479D-A8CE-709F41101D3C}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU + {A958BBDD-3238-4E58-AB7F-390AB6D88233}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {A958BBDD-3238-4E58-AB7F-390AB6D88233}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {A958BBDD-3238-4E58-AB7F-390AB6D88233}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {A958BBDD-3238-4E58-AB7F-390AB6D88233}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU + {899EC05D-7861-447F-9216-67F8547516DD}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {899EC05D-7861-447F-9216-67F8547516DD}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {899EC05D-7861-447F-9216-67F8547516DD}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {899EC05D-7861-447F-9216-67F8547516DD}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/src/libraries/System.Security.SecureString/ref/Configurations.props b/src/libraries/System.Security.SecureString/ref/Configurations.props index 89d6ac0f025b9..b6e0d3ce6383b 100644 --- a/src/libraries/System.Security.SecureString/ref/Configurations.props +++ b/src/libraries/System.Security.SecureString/ref/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Security.SecureString/ref/System.Security.SecureString.csproj b/src/libraries/System.Security.SecureString/ref/System.Security.SecureString.csproj index 31f5e3360e1f9..785ffb099bf9a 100644 --- a/src/libraries/System.Security.SecureString/ref/System.Security.SecureString.csproj +++ b/src/libraries/System.Security.SecureString/ref/System.Security.SecureString.csproj @@ -1,7 +1,7 @@ true - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release diff --git a/src/libraries/System.Security.SecureString/src/Configurations.props b/src/libraries/System.Security.SecureString/src/Configurations.props index 89d6ac0f025b9..b6e0d3ce6383b 100644 --- a/src/libraries/System.Security.SecureString/src/Configurations.props +++ b/src/libraries/System.Security.SecureString/src/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Security.SecureString/src/System.Security.SecureString.csproj b/src/libraries/System.Security.SecureString/src/System.Security.SecureString.csproj index ec544dcab4d6c..f08f6bc9b5f4a 100644 --- a/src/libraries/System.Security.SecureString/src/System.Security.SecureString.csproj +++ b/src/libraries/System.Security.SecureString/src/System.Security.SecureString.csproj @@ -3,7 +3,7 @@ System.Security.SecureString System.Security.SecureString true - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release diff --git a/src/libraries/System.Security.SecureString/tests/Configurations.props b/src/libraries/System.Security.SecureString/tests/Configurations.props index 89d6ac0f025b9..b6e0d3ce6383b 100644 --- a/src/libraries/System.Security.SecureString/tests/Configurations.props +++ b/src/libraries/System.Security.SecureString/tests/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Security.SecureString/tests/System.Security.SecureString.Tests.csproj b/src/libraries/System.Security.SecureString/tests/System.Security.SecureString.Tests.csproj index c2738a86bd007..d75bd716bf288 100644 --- a/src/libraries/System.Security.SecureString/tests/System.Security.SecureString.Tests.csproj +++ b/src/libraries/System.Security.SecureString/tests/System.Security.SecureString.Tests.csproj @@ -1,7 +1,7 @@ true - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release true diff --git a/src/libraries/System.ServiceModel.Syndication/System.ServiceModel.Syndication.sln b/src/libraries/System.ServiceModel.Syndication/System.ServiceModel.Syndication.sln index 2ea3dd742b3ef..8f47bc1bdb00a 100644 --- a/src/libraries/System.ServiceModel.Syndication/System.ServiceModel.Syndication.sln +++ b/src/libraries/System.ServiceModel.Syndication/System.ServiceModel.Syndication.sln @@ -26,18 +26,18 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {A622B2C0-DD74-4218-9CF0-F9B2E52F4E91}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {A622B2C0-DD74-4218-9CF0-F9B2E52F4E91}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {A622B2C0-DD74-4218-9CF0-F9B2E52F4E91}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {A622B2C0-DD74-4218-9CF0-F9B2E52F4E91}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU + {A622B2C0-DD74-4218-9CF0-F9B2E52F4E91}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {A622B2C0-DD74-4218-9CF0-F9B2E52F4E91}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {A622B2C0-DD74-4218-9CF0-F9B2E52F4E91}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {A622B2C0-DD74-4218-9CF0-F9B2E52F4E91}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU {C2AB129B-E3EC-465B-B1B7-0F7D414B1E74}.Debug|Any CPU.ActiveCfg = netstandard2.0-Debug|Any CPU {C2AB129B-E3EC-465B-B1B7-0F7D414B1E74}.Debug|Any CPU.Build.0 = netstandard2.0-Debug|Any CPU {C2AB129B-E3EC-465B-B1B7-0F7D414B1E74}.Release|Any CPU.ActiveCfg = netstandard2.0-Release|Any CPU {C2AB129B-E3EC-465B-B1B7-0F7D414B1E74}.Release|Any CPU.Build.0 = netstandard2.0-Release|Any CPU - {E81F4C7C-2000-4449-BEE6-B2E84DE218F7}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {E81F4C7C-2000-4449-BEE6-B2E84DE218F7}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {E81F4C7C-2000-4449-BEE6-B2E84DE218F7}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {E81F4C7C-2000-4449-BEE6-B2E84DE218F7}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU + {E81F4C7C-2000-4449-BEE6-B2E84DE218F7}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {E81F4C7C-2000-4449-BEE6-B2E84DE218F7}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {E81F4C7C-2000-4449-BEE6-B2E84DE218F7}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {E81F4C7C-2000-4449-BEE6-B2E84DE218F7}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/src/libraries/System.ServiceModel.Syndication/ref/Configurations.props b/src/libraries/System.ServiceModel.Syndication/ref/Configurations.props index fe7059e7e37da..5b7a4acbbeb41 100644 --- a/src/libraries/System.ServiceModel.Syndication/ref/Configurations.props +++ b/src/libraries/System.ServiceModel.Syndication/ref/Configurations.props @@ -7,8 +7,8 @@ $(PackageConfigurations); - netcoreapp; - netfx; + $(NetCoreAppCurrent); + $(NetFrameworkCurrent); \ No newline at end of file diff --git a/src/libraries/System.ServiceModel.Syndication/ref/System.ServiceModel.Syndication.csproj b/src/libraries/System.ServiceModel.Syndication/ref/System.ServiceModel.Syndication.csproj index ce438b763408b..bc970633f7584 100644 --- a/src/libraries/System.ServiceModel.Syndication/ref/System.ServiceModel.Syndication.csproj +++ b/src/libraries/System.ServiceModel.Syndication/ref/System.ServiceModel.Syndication.csproj @@ -1,7 +1,7 @@ true - net461-Debug;net461-Release;netcoreapp-Debug;netcoreapp-Release;netcoreapp2.1-Debug;netcoreapp2.1-Release;netfx-Debug;netfx-Release;netstandard2.0-Debug;netstandard2.0-Release + net461-Debug;net461-Release;$(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release;netcoreapp2.1-Debug;netcoreapp2.1-Release;$(NetFrameworkCurrent)-Debug;$(NetFrameworkCurrent)-Release;netstandard2.0-Debug;netstandard2.0-Release @@ -9,7 +9,7 @@ - + diff --git a/src/libraries/System.ServiceModel.Syndication/src/Configurations.props b/src/libraries/System.ServiceModel.Syndication/src/Configurations.props index e2e96d8b1bce9..dcb22a3d13f3d 100644 --- a/src/libraries/System.ServiceModel.Syndication/src/Configurations.props +++ b/src/libraries/System.ServiceModel.Syndication/src/Configurations.props @@ -6,7 +6,7 @@ $(PackageConfigurations); - netfx-Windows_NT; + $(NetFrameworkCurrent)-Windows_NT; \ No newline at end of file diff --git a/src/libraries/System.ServiceModel.Syndication/src/System.ServiceModel.Syndication.csproj b/src/libraries/System.ServiceModel.Syndication/src/System.ServiceModel.Syndication.csproj index c20c56f43d193..d01309066ca20 100644 --- a/src/libraries/System.ServiceModel.Syndication/src/System.ServiceModel.Syndication.csproj +++ b/src/libraries/System.ServiceModel.Syndication/src/System.ServiceModel.Syndication.csproj @@ -3,7 +3,7 @@ $(NoWarn);1634;1691;649 true true - net461-Windows_NT-Debug;net461-Windows_NT-Release;netfx-Windows_NT-Debug;netfx-Windows_NT-Release;netstandard2.0-Debug;netstandard2.0-Release + net461-Windows_NT-Debug;net461-Windows_NT-Release;$(NetFrameworkCurrent)-Windows_NT-Debug;$(NetFrameworkCurrent)-Windows_NT-Release;netstandard2.0-Debug;netstandard2.0-Release diff --git a/src/libraries/System.ServiceModel.Syndication/tests/Configurations.props b/src/libraries/System.ServiceModel.Syndication/tests/Configurations.props index 2e0339e07963c..3e0106dbfb5ca 100644 --- a/src/libraries/System.ServiceModel.Syndication/tests/Configurations.props +++ b/src/libraries/System.ServiceModel.Syndication/tests/Configurations.props @@ -1,8 +1,8 @@  - netcoreapp; - netfx; + $(NetCoreAppCurrent); + $(NetFrameworkCurrent); \ No newline at end of file diff --git a/src/libraries/System.ServiceModel.Syndication/tests/System.ServiceModel.Syndication.Tests.csproj b/src/libraries/System.ServiceModel.Syndication/tests/System.ServiceModel.Syndication.Tests.csproj index 4621bf1f76d71..dc79b3e1385e7 100644 --- a/src/libraries/System.ServiceModel.Syndication/tests/System.ServiceModel.Syndication.Tests.csproj +++ b/src/libraries/System.ServiceModel.Syndication/tests/System.ServiceModel.Syndication.Tests.csproj @@ -1,6 +1,6 @@ - netcoreapp-Debug;netcoreapp-Release;netfx-Debug;netfx-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release;$(NetFrameworkCurrent)-Debug;$(NetFrameworkCurrent)-Release diff --git a/src/libraries/System.ServiceProcess.ServiceController/System.ServiceProcess.ServiceController.sln b/src/libraries/System.ServiceProcess.ServiceController/System.ServiceProcess.ServiceController.sln index f827681317177..eff2a7037a5b1 100644 --- a/src/libraries/System.ServiceProcess.ServiceController/System.ServiceProcess.ServiceController.sln +++ b/src/libraries/System.ServiceProcess.ServiceController/System.ServiceProcess.ServiceController.sln @@ -31,18 +31,18 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {E62B874D-1A0D-41BC-8CFC-9E09D0860A77}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {E62B874D-1A0D-41BC-8CFC-9E09D0860A77}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {E62B874D-1A0D-41BC-8CFC-9E09D0860A77}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {E62B874D-1A0D-41BC-8CFC-9E09D0860A77}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU - {F7D9984B-02EB-4573-84EF-00FFFBFB872C}.Debug|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Debug|Any CPU - {F7D9984B-02EB-4573-84EF-00FFFBFB872C}.Debug|Any CPU.Build.0 = netcoreapp-Windows_NT-Debug|Any CPU - {F7D9984B-02EB-4573-84EF-00FFFBFB872C}.Release|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Release|Any CPU - {F7D9984B-02EB-4573-84EF-00FFFBFB872C}.Release|Any CPU.Build.0 = netcoreapp-Windows_NT-Release|Any CPU - {F4821CB6-91A3-4546-BC4F-E00DBFBDAA05}.Debug|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Debug|Any CPU - {F4821CB6-91A3-4546-BC4F-E00DBFBDAA05}.Debug|Any CPU.Build.0 = netcoreapp-Windows_NT-Debug|Any CPU - {F4821CB6-91A3-4546-BC4F-E00DBFBDAA05}.Release|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Release|Any CPU - {F4821CB6-91A3-4546-BC4F-E00DBFBDAA05}.Release|Any CPU.Build.0 = netcoreapp-Windows_NT-Release|Any CPU + {E62B874D-1A0D-41BC-8CFC-9E09D0860A77}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {E62B874D-1A0D-41BC-8CFC-9E09D0860A77}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {E62B874D-1A0D-41BC-8CFC-9E09D0860A77}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {E62B874D-1A0D-41BC-8CFC-9E09D0860A77}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU + {F7D9984B-02EB-4573-84EF-00FFFBFB872C}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Debug|Any CPU + {F7D9984B-02EB-4573-84EF-00FFFBFB872C}.Debug|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Debug|Any CPU + {F7D9984B-02EB-4573-84EF-00FFFBFB872C}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Release|Any CPU + {F7D9984B-02EB-4573-84EF-00FFFBFB872C}.Release|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Release|Any CPU + {F4821CB6-91A3-4546-BC4F-E00DBFBDAA05}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Debug|Any CPU + {F4821CB6-91A3-4546-BC4F-E00DBFBDAA05}.Debug|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Debug|Any CPU + {F4821CB6-91A3-4546-BC4F-E00DBFBDAA05}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Release|Any CPU + {F4821CB6-91A3-4546-BC4F-E00DBFBDAA05}.Release|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Release|Any CPU {8479566D-6FA5-4241-9D66-524BEC4C19BD}.Debug|Any CPU.ActiveCfg = netstandard2.0-Debug|Any CPU {8479566D-6FA5-4241-9D66-524BEC4C19BD}.Debug|Any CPU.Build.0 = netstandard2.0-Debug|Any CPU {8479566D-6FA5-4241-9D66-524BEC4C19BD}.Release|Any CPU.ActiveCfg = netstandard2.0-Release|Any CPU diff --git a/src/libraries/System.ServiceProcess.ServiceController/ref/Configurations.props b/src/libraries/System.ServiceProcess.ServiceController/ref/Configurations.props index 688cb9305f532..371f0fb2b582a 100644 --- a/src/libraries/System.ServiceProcess.ServiceController/ref/Configurations.props +++ b/src/libraries/System.ServiceProcess.ServiceController/ref/Configurations.props @@ -2,7 +2,7 @@ netstandard2.0; - netfx; + $(NetFrameworkCurrent); net461; diff --git a/src/libraries/System.ServiceProcess.ServiceController/ref/System.ServiceProcess.ServiceController.csproj b/src/libraries/System.ServiceProcess.ServiceController/ref/System.ServiceProcess.ServiceController.csproj index 20e856156fc3f..c0b5a12f43ef8 100644 --- a/src/libraries/System.ServiceProcess.ServiceController/ref/System.ServiceProcess.ServiceController.csproj +++ b/src/libraries/System.ServiceProcess.ServiceController/ref/System.ServiceProcess.ServiceController.csproj @@ -1,7 +1,7 @@ true - net461-Debug;net461-Release;netfx-Debug;netfx-Release;netstandard2.0-Debug;netstandard2.0-Release + net461-Debug;net461-Release;$(NetFrameworkCurrent)-Debug;$(NetFrameworkCurrent)-Release;netstandard2.0-Debug;netstandard2.0-Release diff --git a/src/libraries/System.ServiceProcess.ServiceController/src/Configurations.props b/src/libraries/System.ServiceProcess.ServiceController/src/Configurations.props index 4b6540c201752..8a21201e5294e 100644 --- a/src/libraries/System.ServiceProcess.ServiceController/src/Configurations.props +++ b/src/libraries/System.ServiceProcess.ServiceController/src/Configurations.props @@ -7,8 +7,8 @@ $(PackageConfigurations); - netcoreapp-Windows_NT; - netfx-Windows_NT; + $(NetCoreAppCurrent)-Windows_NT; + $(NetFrameworkCurrent)-Windows_NT; \ No newline at end of file diff --git a/src/libraries/System.ServiceProcess.ServiceController/src/System.ServiceProcess.ServiceController.csproj b/src/libraries/System.ServiceProcess.ServiceController/src/System.ServiceProcess.ServiceController.csproj index d926ad64ccd45..9229fbaf76436 100644 --- a/src/libraries/System.ServiceProcess.ServiceController/src/System.ServiceProcess.ServiceController.csproj +++ b/src/libraries/System.ServiceProcess.ServiceController/src/System.ServiceProcess.ServiceController.csproj @@ -4,7 +4,7 @@ true true SR.PlatformNotSupported_ServiceController - net461-Windows_NT-Debug;net461-Windows_NT-Release;netcoreapp-Windows_NT-Debug;netcoreapp-Windows_NT-Release;netfx-Windows_NT-Debug;netfx-Windows_NT-Release;netstandard2.0-Debug;netstandard2.0-Release;netstandard2.0-Windows_NT-Debug;netstandard2.0-Windows_NT-Release + net461-Windows_NT-Debug;net461-Windows_NT-Release;$(NetCoreAppCurrent)-Windows_NT-Debug;$(NetCoreAppCurrent)-Windows_NT-Release;$(NetFrameworkCurrent)-Windows_NT-Debug;$(NetFrameworkCurrent)-Windows_NT-Release;netstandard2.0-Debug;netstandard2.0-Release;netstandard2.0-Windows_NT-Debug;netstandard2.0-Windows_NT-Release diff --git a/src/libraries/System.ServiceProcess.ServiceController/tests/Configurations.props b/src/libraries/System.ServiceProcess.ServiceController/tests/Configurations.props index 8bfb431d9ba66..96779f45bfb69 100644 --- a/src/libraries/System.ServiceProcess.ServiceController/tests/Configurations.props +++ b/src/libraries/System.ServiceProcess.ServiceController/tests/Configurations.props @@ -1,8 +1,8 @@  - netcoreapp-Windows_NT; - netfx-Windows_NT; + $(NetCoreAppCurrent)-Windows_NT; + $(NetFrameworkCurrent)-Windows_NT; \ No newline at end of file diff --git a/src/libraries/System.ServiceProcess.ServiceController/tests/System.ServiceProcess.ServiceController.TestService/Configurations.props b/src/libraries/System.ServiceProcess.ServiceController/tests/System.ServiceProcess.ServiceController.TestService/Configurations.props index 2e0339e07963c..3e0106dbfb5ca 100644 --- a/src/libraries/System.ServiceProcess.ServiceController/tests/System.ServiceProcess.ServiceController.TestService/Configurations.props +++ b/src/libraries/System.ServiceProcess.ServiceController/tests/System.ServiceProcess.ServiceController.TestService/Configurations.props @@ -1,8 +1,8 @@  - netcoreapp; - netfx; + $(NetCoreAppCurrent); + $(NetFrameworkCurrent); \ No newline at end of file diff --git a/src/libraries/System.ServiceProcess.ServiceController/tests/System.ServiceProcess.ServiceController.TestService/System.ServiceProcess.ServiceController.TestService.csproj b/src/libraries/System.ServiceProcess.ServiceController/tests/System.ServiceProcess.ServiceController.TestService/System.ServiceProcess.ServiceController.TestService.csproj index db2c8ca9f75c6..ba6b3407fe2a3 100644 --- a/src/libraries/System.ServiceProcess.ServiceController/tests/System.ServiceProcess.ServiceController.TestService/System.ServiceProcess.ServiceController.TestService.csproj +++ b/src/libraries/System.ServiceProcess.ServiceController/tests/System.ServiceProcess.ServiceController.TestService/System.ServiceProcess.ServiceController.TestService.csproj @@ -2,7 +2,7 @@ true Exe - netcoreapp-Debug;netcoreapp-Release;netfx-Debug;netfx-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release;$(NetFrameworkCurrent)-Debug;$(NetFrameworkCurrent)-Release diff --git a/src/libraries/System.ServiceProcess.ServiceController/tests/System.ServiceProcess.ServiceController.Tests.csproj b/src/libraries/System.ServiceProcess.ServiceController/tests/System.ServiceProcess.ServiceController.Tests.csproj index b896695e24158..d856dcc536804 100644 --- a/src/libraries/System.ServiceProcess.ServiceController/tests/System.ServiceProcess.ServiceController.Tests.csproj +++ b/src/libraries/System.ServiceProcess.ServiceController/tests/System.ServiceProcess.ServiceController.Tests.csproj @@ -1,6 +1,6 @@ - netcoreapp-Windows_NT-Debug;netcoreapp-Windows_NT-Release;netfx-Windows_NT-Debug;netfx-Windows_NT-Release + $(NetCoreAppCurrent)-Windows_NT-Debug;$(NetCoreAppCurrent)-Windows_NT-Release;$(NetFrameworkCurrent)-Windows_NT-Debug;$(NetFrameworkCurrent)-Windows_NT-Release diff --git a/src/libraries/System.Text.Encoding.CodePages/System.Text.Encoding.CodePages.sln b/src/libraries/System.Text.Encoding.CodePages/System.Text.Encoding.CodePages.sln index 0553d42d33c9c..f2b521f379002 100644 --- a/src/libraries/System.Text.Encoding.CodePages/System.Text.Encoding.CodePages.sln +++ b/src/libraries/System.Text.Encoding.CodePages/System.Text.Encoding.CodePages.sln @@ -26,14 +26,14 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {835AD07B-7C9A-406F-B16F-59B3B0D017A4}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {835AD07B-7C9A-406F-B16F-59B3B0D017A4}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {835AD07B-7C9A-406F-B16F-59B3B0D017A4}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {835AD07B-7C9A-406F-B16F-59B3B0D017A4}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU - {16EE6633-F557-5C9E-9EF3-B5334B044F47}.Debug|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Debug|Any CPU - {16EE6633-F557-5C9E-9EF3-B5334B044F47}.Debug|Any CPU.Build.0 = netcoreapp-Windows_NT-Debug|Any CPU - {16EE6633-F557-5C9E-9EF3-B5334B044F47}.Release|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Release|Any CPU - {16EE6633-F557-5C9E-9EF3-B5334B044F47}.Release|Any CPU.Build.0 = netcoreapp-Windows_NT-Release|Any CPU + {835AD07B-7C9A-406F-B16F-59B3B0D017A4}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {835AD07B-7C9A-406F-B16F-59B3B0D017A4}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {835AD07B-7C9A-406F-B16F-59B3B0D017A4}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {835AD07B-7C9A-406F-B16F-59B3B0D017A4}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU + {16EE6633-F557-5C9E-9EF3-B5334B044F47}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Debug|Any CPU + {16EE6633-F557-5C9E-9EF3-B5334B044F47}.Debug|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Debug|Any CPU + {16EE6633-F557-5C9E-9EF3-B5334B044F47}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Release|Any CPU + {16EE6633-F557-5C9E-9EF3-B5334B044F47}.Release|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Release|Any CPU {73FAB2B8-589D-4BEA-ADCA-E5CC02296F25}.Debug|Any CPU.ActiveCfg = netstandard2.0-Debug|Any CPU {73FAB2B8-589D-4BEA-ADCA-E5CC02296F25}.Debug|Any CPU.Build.0 = netstandard2.0-Debug|Any CPU {73FAB2B8-589D-4BEA-ADCA-E5CC02296F25}.Release|Any CPU.ActiveCfg = netstandard2.0-Release|Any CPU diff --git a/src/libraries/System.Text.Encoding.CodePages/src/Configurations.props b/src/libraries/System.Text.Encoding.CodePages/src/Configurations.props index 123b58bc21aa1..bc86995664e32 100644 --- a/src/libraries/System.Text.Encoding.CodePages/src/Configurations.props +++ b/src/libraries/System.Text.Encoding.CodePages/src/Configurations.props @@ -7,7 +7,7 @@ $(PackageConfigurations); - netcoreapp-Windows_NT; + $(NetCoreAppCurrent)-Windows_NT; \ No newline at end of file diff --git a/src/libraries/System.Text.Encoding.CodePages/src/System.Text.Encoding.CodePages.csproj b/src/libraries/System.Text.Encoding.CodePages/src/System.Text.Encoding.CodePages.csproj index 0965dc9afbcc6..c2ca25b6dd39c 100644 --- a/src/libraries/System.Text.Encoding.CodePages/src/System.Text.Encoding.CodePages.csproj +++ b/src/libraries/System.Text.Encoding.CodePages/src/System.Text.Encoding.CodePages.csproj @@ -4,7 +4,7 @@ enable netstandard2.0;net461 - netcoreapp-Windows_NT-Debug;netcoreapp-Windows_NT-Release;netcoreapp2.0-Windows_NT-Debug;netcoreapp2.0-Windows_NT-Release;netstandard2.0-Debug;netstandard2.0-Release;netstandard2.0-Windows_NT-Debug;netstandard2.0-Windows_NT-Release + $(NetCoreAppCurrent)-Windows_NT-Debug;$(NetCoreAppCurrent)-Windows_NT-Release;netcoreapp2.0-Windows_NT-Debug;netcoreapp2.0-Windows_NT-Release;netstandard2.0-Debug;netstandard2.0-Release;netstandard2.0-Windows_NT-Debug;netstandard2.0-Windows_NT-Release diff --git a/src/libraries/System.Text.Encoding.CodePages/tests/Configurations.props b/src/libraries/System.Text.Encoding.CodePages/tests/Configurations.props index 2e0339e07963c..3e0106dbfb5ca 100644 --- a/src/libraries/System.Text.Encoding.CodePages/tests/Configurations.props +++ b/src/libraries/System.Text.Encoding.CodePages/tests/Configurations.props @@ -1,8 +1,8 @@  - netcoreapp; - netfx; + $(NetCoreAppCurrent); + $(NetFrameworkCurrent); \ No newline at end of file diff --git a/src/libraries/System.Text.Encoding.CodePages/tests/System.Text.Encoding.CodePages.Tests.csproj b/src/libraries/System.Text.Encoding.CodePages/tests/System.Text.Encoding.CodePages.Tests.csproj index 9e2f2273b5b08..b5b53046cb036 100644 --- a/src/libraries/System.Text.Encoding.CodePages/tests/System.Text.Encoding.CodePages.Tests.csproj +++ b/src/libraries/System.Text.Encoding.CodePages/tests/System.Text.Encoding.CodePages.Tests.csproj @@ -1,7 +1,7 @@ true - netcoreapp-Debug;netcoreapp-Release;netfx-Debug;netfx-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release;$(NetFrameworkCurrent)-Debug;$(NetFrameworkCurrent)-Release diff --git a/src/libraries/System.Text.Encoding.Extensions/System.Text.Encoding.Extensions.sln b/src/libraries/System.Text.Encoding.Extensions/System.Text.Encoding.Extensions.sln index 7b8cf71076862..73d03112e6851 100644 --- a/src/libraries/System.Text.Encoding.Extensions/System.Text.Encoding.Extensions.sln +++ b/src/libraries/System.Text.Encoding.Extensions/System.Text.Encoding.Extensions.sln @@ -26,18 +26,18 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {037D5B14-EEE1-43C4-8AA8-9F276C0C10CF}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {037D5B14-EEE1-43C4-8AA8-9F276C0C10CF}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {037D5B14-EEE1-43C4-8AA8-9F276C0C10CF}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {037D5B14-EEE1-43C4-8AA8-9F276C0C10CF}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU - {72BFA60D-4F91-4F84-AC6A-910B587DA1BF}.Debug|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Debug|Any CPU - {72BFA60D-4F91-4F84-AC6A-910B587DA1BF}.Debug|Any CPU.Build.0 = netcoreapp-Windows_NT-Debug|Any CPU - {72BFA60D-4F91-4F84-AC6A-910B587DA1BF}.Release|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Release|Any CPU - {72BFA60D-4F91-4F84-AC6A-910B587DA1BF}.Release|Any CPU.Build.0 = netcoreapp-Windows_NT-Release|Any CPU - {45ED5323-5E2F-445F-B305-21B3044C87B6}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {45ED5323-5E2F-445F-B305-21B3044C87B6}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {45ED5323-5E2F-445F-B305-21B3044C87B6}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {45ED5323-5E2F-445F-B305-21B3044C87B6}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU + {037D5B14-EEE1-43C4-8AA8-9F276C0C10CF}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {037D5B14-EEE1-43C4-8AA8-9F276C0C10CF}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {037D5B14-EEE1-43C4-8AA8-9F276C0C10CF}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {037D5B14-EEE1-43C4-8AA8-9F276C0C10CF}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU + {72BFA60D-4F91-4F84-AC6A-910B587DA1BF}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Debug|Any CPU + {72BFA60D-4F91-4F84-AC6A-910B587DA1BF}.Debug|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Debug|Any CPU + {72BFA60D-4F91-4F84-AC6A-910B587DA1BF}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Release|Any CPU + {72BFA60D-4F91-4F84-AC6A-910B587DA1BF}.Release|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Release|Any CPU + {45ED5323-5E2F-445F-B305-21B3044C87B6}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {45ED5323-5E2F-445F-B305-21B3044C87B6}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {45ED5323-5E2F-445F-B305-21B3044C87B6}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {45ED5323-5E2F-445F-B305-21B3044C87B6}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/src/libraries/System.Text.Encoding.Extensions/ref/Configurations.props b/src/libraries/System.Text.Encoding.Extensions/ref/Configurations.props index 89d6ac0f025b9..b6e0d3ce6383b 100644 --- a/src/libraries/System.Text.Encoding.Extensions/ref/Configurations.props +++ b/src/libraries/System.Text.Encoding.Extensions/ref/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Text.Encoding.Extensions/ref/System.Text.Encoding.Extensions.csproj b/src/libraries/System.Text.Encoding.Extensions/ref/System.Text.Encoding.Extensions.csproj index 7df37ab4baa0f..68b488e52a0a5 100644 --- a/src/libraries/System.Text.Encoding.Extensions/ref/System.Text.Encoding.Extensions.csproj +++ b/src/libraries/System.Text.Encoding.Extensions/ref/System.Text.Encoding.Extensions.csproj @@ -1,7 +1,7 @@ true - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release enable diff --git a/src/libraries/System.Text.Encoding.Extensions/src/Configurations.props b/src/libraries/System.Text.Encoding.Extensions/src/Configurations.props index adabcc0290e8a..c10c0d25a71d5 100644 --- a/src/libraries/System.Text.Encoding.Extensions/src/Configurations.props +++ b/src/libraries/System.Text.Encoding.Extensions/src/Configurations.props @@ -1,8 +1,8 @@  - netcoreapp-Windows_NT; - netcoreapp-Unix; + $(NetCoreAppCurrent)-Windows_NT; + $(NetCoreAppCurrent)-Unix; diff --git a/src/libraries/System.Text.Encoding.Extensions/src/System.Text.Encoding.Extensions.csproj b/src/libraries/System.Text.Encoding.Extensions/src/System.Text.Encoding.Extensions.csproj index f7b483de5e70e..df6104f352249 100644 --- a/src/libraries/System.Text.Encoding.Extensions/src/System.Text.Encoding.Extensions.csproj +++ b/src/libraries/System.Text.Encoding.Extensions/src/System.Text.Encoding.Extensions.csproj @@ -2,7 +2,7 @@ System.Text.Encoding.Extensions true - netcoreapp-Unix-Debug;netcoreapp-Unix-Release;netcoreapp-Windows_NT-Debug;netcoreapp-Windows_NT-Release + $(NetCoreAppCurrent)-Unix-Debug;$(NetCoreAppCurrent)-Unix-Release;$(NetCoreAppCurrent)-Windows_NT-Debug;$(NetCoreAppCurrent)-Windows_NT-Release diff --git a/src/libraries/System.Text.Encoding.Extensions/tests/Configurations.props b/src/libraries/System.Text.Encoding.Extensions/tests/Configurations.props index 89d6ac0f025b9..b6e0d3ce6383b 100644 --- a/src/libraries/System.Text.Encoding.Extensions/tests/Configurations.props +++ b/src/libraries/System.Text.Encoding.Extensions/tests/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Text.Encoding.Extensions/tests/System.Text.Encoding.Extensions.Tests.csproj b/src/libraries/System.Text.Encoding.Extensions/tests/System.Text.Encoding.Extensions.Tests.csproj index 17cf6c5b118da..feaadccb8815d 100644 --- a/src/libraries/System.Text.Encoding.Extensions/tests/System.Text.Encoding.Extensions.Tests.csproj +++ b/src/libraries/System.Text.Encoding.Extensions/tests/System.Text.Encoding.Extensions.Tests.csproj @@ -1,7 +1,7 @@ true - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release true diff --git a/src/libraries/System.Text.Encoding/System.Text.Encoding.sln b/src/libraries/System.Text.Encoding/System.Text.Encoding.sln index 64ed9744724fc..e189f7a59598b 100644 --- a/src/libraries/System.Text.Encoding/System.Text.Encoding.sln +++ b/src/libraries/System.Text.Encoding/System.Text.Encoding.sln @@ -26,18 +26,18 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {3BB28F2F-51DF-49A3-A0BF-E1C5C0D7E3E0}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {3BB28F2F-51DF-49A3-A0BF-E1C5C0D7E3E0}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {3BB28F2F-51DF-49A3-A0BF-E1C5C0D7E3E0}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {3BB28F2F-51DF-49A3-A0BF-E1C5C0D7E3E0}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU - {635F30B9-5566-4096-B772-68FAA9B00DF4}.Debug|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Debug|Any CPU - {635F30B9-5566-4096-B772-68FAA9B00DF4}.Debug|Any CPU.Build.0 = netcoreapp-Windows_NT-Debug|Any CPU - {635F30B9-5566-4096-B772-68FAA9B00DF4}.Release|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Release|Any CPU - {635F30B9-5566-4096-B772-68FAA9B00DF4}.Release|Any CPU.Build.0 = netcoreapp-Windows_NT-Release|Any CPU - {D5E689FD-4848-4E06-B6ED-35EA09AF9E20}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {D5E689FD-4848-4E06-B6ED-35EA09AF9E20}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {D5E689FD-4848-4E06-B6ED-35EA09AF9E20}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {D5E689FD-4848-4E06-B6ED-35EA09AF9E20}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU + {3BB28F2F-51DF-49A3-A0BF-E1C5C0D7E3E0}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {3BB28F2F-51DF-49A3-A0BF-E1C5C0D7E3E0}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {3BB28F2F-51DF-49A3-A0BF-E1C5C0D7E3E0}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {3BB28F2F-51DF-49A3-A0BF-E1C5C0D7E3E0}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU + {635F30B9-5566-4096-B772-68FAA9B00DF4}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Debug|Any CPU + {635F30B9-5566-4096-B772-68FAA9B00DF4}.Debug|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Debug|Any CPU + {635F30B9-5566-4096-B772-68FAA9B00DF4}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Release|Any CPU + {635F30B9-5566-4096-B772-68FAA9B00DF4}.Release|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Release|Any CPU + {D5E689FD-4848-4E06-B6ED-35EA09AF9E20}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {D5E689FD-4848-4E06-B6ED-35EA09AF9E20}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {D5E689FD-4848-4E06-B6ED-35EA09AF9E20}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {D5E689FD-4848-4E06-B6ED-35EA09AF9E20}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/src/libraries/System.Text.Encoding/ref/Configurations.props b/src/libraries/System.Text.Encoding/ref/Configurations.props index 89d6ac0f025b9..b6e0d3ce6383b 100644 --- a/src/libraries/System.Text.Encoding/ref/Configurations.props +++ b/src/libraries/System.Text.Encoding/ref/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Text.Encoding/ref/System.Text.Encoding.csproj b/src/libraries/System.Text.Encoding/ref/System.Text.Encoding.csproj index af6f2a731932b..62ccf19c0c35b 100644 --- a/src/libraries/System.Text.Encoding/ref/System.Text.Encoding.csproj +++ b/src/libraries/System.Text.Encoding/ref/System.Text.Encoding.csproj @@ -1,7 +1,7 @@ true - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release diff --git a/src/libraries/System.Text.Encoding/src/Configurations.props b/src/libraries/System.Text.Encoding/src/Configurations.props index adabcc0290e8a..c10c0d25a71d5 100644 --- a/src/libraries/System.Text.Encoding/src/Configurations.props +++ b/src/libraries/System.Text.Encoding/src/Configurations.props @@ -1,8 +1,8 @@  - netcoreapp-Windows_NT; - netcoreapp-Unix; + $(NetCoreAppCurrent)-Windows_NT; + $(NetCoreAppCurrent)-Unix; diff --git a/src/libraries/System.Text.Encoding/src/System.Text.Encoding.csproj b/src/libraries/System.Text.Encoding/src/System.Text.Encoding.csproj index 42fa2342523dd..05cf753b1554b 100644 --- a/src/libraries/System.Text.Encoding/src/System.Text.Encoding.csproj +++ b/src/libraries/System.Text.Encoding/src/System.Text.Encoding.csproj @@ -2,7 +2,7 @@ System.Text.Encoding true - netcoreapp-Unix-Debug;netcoreapp-Unix-Release;netcoreapp-Windows_NT-Debug;netcoreapp-Windows_NT-Release + $(NetCoreAppCurrent)-Unix-Debug;$(NetCoreAppCurrent)-Unix-Release;$(NetCoreAppCurrent)-Windows_NT-Debug;$(NetCoreAppCurrent)-Windows_NT-Release diff --git a/src/libraries/System.Text.Encoding/tests/Configurations.props b/src/libraries/System.Text.Encoding/tests/Configurations.props index 89d6ac0f025b9..b6e0d3ce6383b 100644 --- a/src/libraries/System.Text.Encoding/tests/Configurations.props +++ b/src/libraries/System.Text.Encoding/tests/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Text.Encoding/tests/System.Text.Encoding.Tests.csproj b/src/libraries/System.Text.Encoding/tests/System.Text.Encoding.Tests.csproj index b1e42d7797813..ebb638eebe321 100644 --- a/src/libraries/System.Text.Encoding/tests/System.Text.Encoding.Tests.csproj +++ b/src/libraries/System.Text.Encoding/tests/System.Text.Encoding.Tests.csproj @@ -3,7 +3,7 @@ true true true - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release diff --git a/src/libraries/System.Text.Encodings.Web/System.Text.Encodings.Web.sln b/src/libraries/System.Text.Encodings.Web/System.Text.Encodings.Web.sln index 7c7b8f60b5397..fbf83ceafcc3a 100644 --- a/src/libraries/System.Text.Encodings.Web/System.Text.Encodings.Web.sln +++ b/src/libraries/System.Text.Encodings.Web/System.Text.Encodings.Web.sln @@ -26,18 +26,18 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {2337A55E-7077-4FBE-8132-2CD8DDC18671}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {2337A55E-7077-4FBE-8132-2CD8DDC18671}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {2337A55E-7077-4FBE-8132-2CD8DDC18671}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {2337A55E-7077-4FBE-8132-2CD8DDC18671}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU + {2337A55E-7077-4FBE-8132-2CD8DDC18671}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {2337A55E-7077-4FBE-8132-2CD8DDC18671}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {2337A55E-7077-4FBE-8132-2CD8DDC18671}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {2337A55E-7077-4FBE-8132-2CD8DDC18671}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU {B7EDBF00-765A-48E8-B593-CD668288E274}.Debug|Any CPU.ActiveCfg = netstandard2.0-Debug|Any CPU {B7EDBF00-765A-48E8-B593-CD668288E274}.Debug|Any CPU.Build.0 = netstandard2.0-Debug|Any CPU {B7EDBF00-765A-48E8-B593-CD668288E274}.Release|Any CPU.ActiveCfg = netstandard2.0-Release|Any CPU {B7EDBF00-765A-48E8-B593-CD668288E274}.Release|Any CPU.Build.0 = netstandard2.0-Release|Any CPU - {41648C6D-D431-478D-8228-7EB68714541C}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {41648C6D-D431-478D-8228-7EB68714541C}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {41648C6D-D431-478D-8228-7EB68714541C}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {41648C6D-D431-478D-8228-7EB68714541C}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU + {41648C6D-D431-478D-8228-7EB68714541C}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {41648C6D-D431-478D-8228-7EB68714541C}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {41648C6D-D431-478D-8228-7EB68714541C}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {41648C6D-D431-478D-8228-7EB68714541C}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/src/libraries/System.Text.Encodings.Web/ref/Configurations.props b/src/libraries/System.Text.Encodings.Web/ref/Configurations.props index 9eacde4f938e5..b48545af7fefb 100644 --- a/src/libraries/System.Text.Encodings.Web/ref/Configurations.props +++ b/src/libraries/System.Text.Encodings.Web/ref/Configurations.props @@ -5,7 +5,7 @@ $(PackageConfigurations); - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Text.Encodings.Web/ref/System.Text.Encodings.Web.csproj b/src/libraries/System.Text.Encodings.Web/ref/System.Text.Encodings.Web.csproj index f43d45561ba81..5cb73a66aafcc 100644 --- a/src/libraries/System.Text.Encodings.Web/ref/System.Text.Encodings.Web.csproj +++ b/src/libraries/System.Text.Encodings.Web/ref/System.Text.Encodings.Web.csproj @@ -1,6 +1,6 @@  - netcoreapp-Debug;netcoreapp-Release;netstandard2.0-Debug;netstandard2.0-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release;netstandard2.0-Debug;netstandard2.0-Release true enable diff --git a/src/libraries/System.Text.Encodings.Web/src/Configurations.props b/src/libraries/System.Text.Encodings.Web/src/Configurations.props index f275254404d4d..b9f4ea0dfc24a 100644 --- a/src/libraries/System.Text.Encodings.Web/src/Configurations.props +++ b/src/libraries/System.Text.Encodings.Web/src/Configurations.props @@ -7,7 +7,7 @@ $(PackageConfigurations); - netcoreapp; + $(NetCoreAppCurrent); diff --git a/src/libraries/System.Text.Encodings.Web/src/System.Text.Encodings.Web.csproj b/src/libraries/System.Text.Encodings.Web/src/System.Text.Encodings.Web.csproj index 616fdecceac3b..39c398b07bb77 100644 --- a/src/libraries/System.Text.Encodings.Web/src/System.Text.Encodings.Web.csproj +++ b/src/libraries/System.Text.Encodings.Web/src/System.Text.Encodings.Web.csproj @@ -1,7 +1,7 @@  true - netcoreapp-Debug;netcoreapp-Release;netcoreapp3.0-Debug;netcoreapp3.0-Release;netstandard2.0-Debug;netstandard2.0-Release;netstandard2.1-Debug;netstandard2.1-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release;netcoreapp3.0-Debug;netcoreapp3.0-Release;netstandard2.0-Debug;netstandard2.0-Release;netstandard2.1-Debug;netstandard2.1-Release enable diff --git a/src/libraries/System.Text.Encodings.Web/tests/Configurations.props b/src/libraries/System.Text.Encodings.Web/tests/Configurations.props index 61b88ac2cb16e..671d43c80c973 100644 --- a/src/libraries/System.Text.Encodings.Web/tests/Configurations.props +++ b/src/libraries/System.Text.Encodings.Web/tests/Configurations.props @@ -1,8 +1,8 @@  - netcoreapp; - netfx; + $(NetCoreAppCurrent); + $(NetFrameworkCurrent); diff --git a/src/libraries/System.Text.Encodings.Web/tests/System.Text.Encodings.Web.Tests.csproj b/src/libraries/System.Text.Encodings.Web/tests/System.Text.Encodings.Web.Tests.csproj index 490ff816c0df0..e92a2d2cbf752 100644 --- a/src/libraries/System.Text.Encodings.Web/tests/System.Text.Encodings.Web.Tests.csproj +++ b/src/libraries/System.Text.Encodings.Web/tests/System.Text.Encodings.Web.Tests.csproj @@ -5,7 +5,7 @@ $(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages ..\..\ true - netcoreapp-Debug;netcoreapp-Release;netfx-Debug;netfx-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release;$(NetFrameworkCurrent)-Debug;$(NetFrameworkCurrent)-Release diff --git a/src/libraries/System.Text.Json/System.Text.Json.sln b/src/libraries/System.Text.Json/System.Text.Json.sln index f6b7bc206d011..90dcfbfb2cd23 100644 --- a/src/libraries/System.Text.Json/System.Text.Json.sln +++ b/src/libraries/System.Text.Json/System.Text.Json.sln @@ -26,18 +26,18 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {5F553243-042C-45C0-8E49-C739131E11C3}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {5F553243-042C-45C0-8E49-C739131E11C3}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {5F553243-042C-45C0-8E49-C739131E11C3}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {5F553243-042C-45C0-8E49-C739131E11C3}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU - {79E7EE4E-E8DF-4D67-B103-6930DAAF6EF4}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {79E7EE4E-E8DF-4D67-B103-6930DAAF6EF4}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {79E7EE4E-E8DF-4D67-B103-6930DAAF6EF4}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {79E7EE4E-E8DF-4D67-B103-6930DAAF6EF4}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU - {9F155052-2DDE-4DBD-9F31-ADB45C9FE628}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {9F155052-2DDE-4DBD-9F31-ADB45C9FE628}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {9F155052-2DDE-4DBD-9F31-ADB45C9FE628}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {9F155052-2DDE-4DBD-9F31-ADB45C9FE628}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU + {5F553243-042C-45C0-8E49-C739131E11C3}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {5F553243-042C-45C0-8E49-C739131E11C3}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {5F553243-042C-45C0-8E49-C739131E11C3}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {5F553243-042C-45C0-8E49-C739131E11C3}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU + {79E7EE4E-E8DF-4D67-B103-6930DAAF6EF4}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {79E7EE4E-E8DF-4D67-B103-6930DAAF6EF4}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {79E7EE4E-E8DF-4D67-B103-6930DAAF6EF4}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {79E7EE4E-E8DF-4D67-B103-6930DAAF6EF4}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU + {9F155052-2DDE-4DBD-9F31-ADB45C9FE628}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {9F155052-2DDE-4DBD-9F31-ADB45C9FE628}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {9F155052-2DDE-4DBD-9F31-ADB45C9FE628}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {9F155052-2DDE-4DBD-9F31-ADB45C9FE628}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/src/libraries/System.Text.Json/ref/Configurations.props b/src/libraries/System.Text.Json/ref/Configurations.props index 408b5a8b74082..830a7e81cd327 100644 --- a/src/libraries/System.Text.Json/ref/Configurations.props +++ b/src/libraries/System.Text.Json/ref/Configurations.props @@ -2,8 +2,8 @@ netstandard2.0; - netcoreapp; - netfx; + $(NetCoreAppCurrent); + $(NetFrameworkCurrent); \ No newline at end of file diff --git a/src/libraries/System.Text.Json/ref/System.Text.Json.csproj b/src/libraries/System.Text.Json/ref/System.Text.Json.csproj index fd1251a63fd0c..7db3c52cc0633 100644 --- a/src/libraries/System.Text.Json/ref/System.Text.Json.csproj +++ b/src/libraries/System.Text.Json/ref/System.Text.Json.csproj @@ -1,6 +1,6 @@  - net461-Debug;net461-Release;netcoreapp-Debug;netcoreapp-Release;netfx-Debug;netfx-Release;netstandard2.0-Debug;netstandard2.0-Release + net461-Debug;net461-Release;$(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release;$(NetFrameworkCurrent)-Debug;$(NetFrameworkCurrent)-Release;netstandard2.0-Debug;netstandard2.0-Release diff --git a/src/libraries/System.Text.Json/src/Configurations.props b/src/libraries/System.Text.Json/src/Configurations.props index fc5f360dd2fa6..ac38e2eeb366d 100644 --- a/src/libraries/System.Text.Json/src/Configurations.props +++ b/src/libraries/System.Text.Json/src/Configurations.props @@ -7,8 +7,8 @@ $(PackageConfigurations); - netcoreapp; - netfx; + $(NetCoreAppCurrent); + $(NetFrameworkCurrent); diff --git a/src/libraries/System.Text.Json/src/System.Text.Json.csproj b/src/libraries/System.Text.Json/src/System.Text.Json.csproj index 19bd1b0e31371..9daa77e7c4385 100644 --- a/src/libraries/System.Text.Json/src/System.Text.Json.csproj +++ b/src/libraries/System.Text.Json/src/System.Text.Json.csproj @@ -2,7 +2,7 @@ true $(OutputPath)$(MSBuildProjectName).xml - net461-Debug;net461-Release;netcoreapp-Debug;netcoreapp-Release;netcoreapp3.0-Debug;netcoreapp3.0-Release;netfx-Debug;netfx-Release;netstandard2.0-Debug;netstandard2.0-Release + net461-Debug;net461-Release;$(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release;netcoreapp3.0-Debug;netcoreapp3.0-Release;$(NetFrameworkCurrent)-Debug;$(NetFrameworkCurrent)-Release;netstandard2.0-Debug;netstandard2.0-Release $(DefineConstants);BUILDING_INBOX_LIBRARY diff --git a/src/libraries/System.Text.Json/tests/Configurations.props b/src/libraries/System.Text.Json/tests/Configurations.props index 61b88ac2cb16e..671d43c80c973 100644 --- a/src/libraries/System.Text.Json/tests/Configurations.props +++ b/src/libraries/System.Text.Json/tests/Configurations.props @@ -1,8 +1,8 @@  - netcoreapp; - netfx; + $(NetCoreAppCurrent); + $(NetFrameworkCurrent); diff --git a/src/libraries/System.Text.Json/tests/System.Text.Json.Tests.csproj b/src/libraries/System.Text.Json/tests/System.Text.Json.Tests.csproj index 3a4b6ab1ee260..7f4d65a77f814 100644 --- a/src/libraries/System.Text.Json/tests/System.Text.Json.Tests.csproj +++ b/src/libraries/System.Text.Json/tests/System.Text.Json.Tests.csproj @@ -1,7 +1,7 @@  - netcoreapp-Debug;netcoreapp-Release;netfx-Debug;netfx-Release - $(DefineConstants);BUILDING_INBOX_LIBRARY + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release;$(NetFrameworkCurrent)-Debug;$(NetFrameworkCurrent)-Release + $(DefineConstants);BUILDING_INBOX_LIBRARY true diff --git a/src/libraries/System.Text.RegularExpressions/System.Text.RegularExpressions.sln b/src/libraries/System.Text.RegularExpressions/System.Text.RegularExpressions.sln index bdeee004cd188..a275b3ca2186d 100644 --- a/src/libraries/System.Text.RegularExpressions/System.Text.RegularExpressions.sln +++ b/src/libraries/System.Text.RegularExpressions/System.Text.RegularExpressions.sln @@ -26,18 +26,18 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {94B106C2-D574-4392-80AB-3EE308A078DF}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {94B106C2-D574-4392-80AB-3EE308A078DF}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {94B106C2-D574-4392-80AB-3EE308A078DF}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {94B106C2-D574-4392-80AB-3EE308A078DF}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU - {2C58640B-5BED-4E83-9554-CD2B9762643F}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {2C58640B-5BED-4E83-9554-CD2B9762643F}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {2C58640B-5BED-4E83-9554-CD2B9762643F}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {2C58640B-5BED-4E83-9554-CD2B9762643F}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU - {B262B15E-13E6-4C1E-A25E-16D06E222A09}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {B262B15E-13E6-4C1E-A25E-16D06E222A09}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {B262B15E-13E6-4C1E-A25E-16D06E222A09}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {B262B15E-13E6-4C1E-A25E-16D06E222A09}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU + {94B106C2-D574-4392-80AB-3EE308A078DF}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {94B106C2-D574-4392-80AB-3EE308A078DF}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {94B106C2-D574-4392-80AB-3EE308A078DF}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {94B106C2-D574-4392-80AB-3EE308A078DF}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU + {2C58640B-5BED-4E83-9554-CD2B9762643F}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {2C58640B-5BED-4E83-9554-CD2B9762643F}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {2C58640B-5BED-4E83-9554-CD2B9762643F}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {2C58640B-5BED-4E83-9554-CD2B9762643F}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU + {B262B15E-13E6-4C1E-A25E-16D06E222A09}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {B262B15E-13E6-4C1E-A25E-16D06E222A09}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {B262B15E-13E6-4C1E-A25E-16D06E222A09}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {B262B15E-13E6-4C1E-A25E-16D06E222A09}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/src/libraries/System.Text.RegularExpressions/ref/Configurations.props b/src/libraries/System.Text.RegularExpressions/ref/Configurations.props index a1eadd7648d83..d3947cd2aa838 100644 --- a/src/libraries/System.Text.RegularExpressions/ref/Configurations.props +++ b/src/libraries/System.Text.RegularExpressions/ref/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); diff --git a/src/libraries/System.Text.RegularExpressions/ref/System.Text.RegularExpressions.csproj b/src/libraries/System.Text.RegularExpressions/ref/System.Text.RegularExpressions.csproj index 1d6dffc48e250..efd1f8d07cf0a 100644 --- a/src/libraries/System.Text.RegularExpressions/ref/System.Text.RegularExpressions.csproj +++ b/src/libraries/System.Text.RegularExpressions/ref/System.Text.RegularExpressions.csproj @@ -1,6 +1,6 @@ - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release enable @@ -12,7 +12,7 @@ - + diff --git a/src/libraries/System.Text.RegularExpressions/src/Configurations.props b/src/libraries/System.Text.RegularExpressions/src/Configurations.props index a1eadd7648d83..d3947cd2aa838 100644 --- a/src/libraries/System.Text.RegularExpressions/src/Configurations.props +++ b/src/libraries/System.Text.RegularExpressions/src/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); diff --git a/src/libraries/System.Text.RegularExpressions/src/System.Text.RegularExpressions.csproj b/src/libraries/System.Text.RegularExpressions/src/System.Text.RegularExpressions.csproj index 5f49841104b5b..1148092926f75 100644 --- a/src/libraries/System.Text.RegularExpressions/src/System.Text.RegularExpressions.csproj +++ b/src/libraries/System.Text.RegularExpressions/src/System.Text.RegularExpressions.csproj @@ -1,10 +1,10 @@ System.Text.RegularExpressions - $(DefineConstants);FEATURE_COMPILED - $(DefineConstants);FEATURE_COMPILEAPIS + $(DefineConstants);FEATURE_COMPILED + $(DefineConstants);FEATURE_COMPILEAPIS true - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release enable @@ -54,7 +54,7 @@ - + @@ -73,7 +73,7 @@ - + diff --git a/src/libraries/System.Text.RegularExpressions/tests/Configurations.props b/src/libraries/System.Text.RegularExpressions/tests/Configurations.props index 89d6ac0f025b9..b6e0d3ce6383b 100644 --- a/src/libraries/System.Text.RegularExpressions/tests/Configurations.props +++ b/src/libraries/System.Text.RegularExpressions/tests/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Text.RegularExpressions/tests/System.Text.RegularExpressions.Tests.csproj b/src/libraries/System.Text.RegularExpressions/tests/System.Text.RegularExpressions.Tests.csproj index 86ce279848f2f..bf60979b1b5d9 100644 --- a/src/libraries/System.Text.RegularExpressions/tests/System.Text.RegularExpressions.Tests.csproj +++ b/src/libraries/System.Text.RegularExpressions/tests/System.Text.RegularExpressions.Tests.csproj @@ -2,7 +2,7 @@ true $(NoWarn);xUnit2008 - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release diff --git a/src/libraries/System.Threading.AccessControl/System.Threading.AccessControl.sln b/src/libraries/System.Threading.AccessControl/System.Threading.AccessControl.sln index bb4c50ca74950..89b46e150770c 100644 --- a/src/libraries/System.Threading.AccessControl/System.Threading.AccessControl.sln +++ b/src/libraries/System.Threading.AccessControl/System.Threading.AccessControl.sln @@ -26,10 +26,10 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {458E445C-DF3C-4E4D-8E1D-F2FAC365BB40}.Debug|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Debug|Any CPU - {458E445C-DF3C-4E4D-8E1D-F2FAC365BB40}.Debug|Any CPU.Build.0 = netcoreapp-Windows_NT-Debug|Any CPU - {458E445C-DF3C-4E4D-8E1D-F2FAC365BB40}.Release|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Release|Any CPU - {458E445C-DF3C-4E4D-8E1D-F2FAC365BB40}.Release|Any CPU.Build.0 = netcoreapp-Windows_NT-Release|Any CPU + {458E445C-DF3C-4E4D-8E1D-F2FAC365BB40}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Debug|Any CPU + {458E445C-DF3C-4E4D-8E1D-F2FAC365BB40}.Debug|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Debug|Any CPU + {458E445C-DF3C-4E4D-8E1D-F2FAC365BB40}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Release|Any CPU + {458E445C-DF3C-4E4D-8E1D-F2FAC365BB40}.Release|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Release|Any CPU {E3ED83FD-3015-4BD8-A1B8-6294986E6CFA}.Debug|Any CPU.ActiveCfg = netstandard2.0-Windows_NT-Debug|Any CPU {E3ED83FD-3015-4BD8-A1B8-6294986E6CFA}.Debug|Any CPU.Build.0 = netstandard2.0-Windows_NT-Debug|Any CPU {E3ED83FD-3015-4BD8-A1B8-6294986E6CFA}.Release|Any CPU.ActiveCfg = netstandard2.0-Windows_NT-Release|Any CPU diff --git a/src/libraries/System.Threading.AccessControl/ref/Configurations.props b/src/libraries/System.Threading.AccessControl/ref/Configurations.props index a592225958e62..4f26b9c7a95b7 100644 --- a/src/libraries/System.Threading.AccessControl/ref/Configurations.props +++ b/src/libraries/System.Threading.AccessControl/ref/Configurations.props @@ -6,7 +6,7 @@ $(PackageConfigurations) - netfx; + $(NetFrameworkCurrent); \ No newline at end of file diff --git a/src/libraries/System.Threading.AccessControl/ref/System.Threading.AccessControl.csproj b/src/libraries/System.Threading.AccessControl/ref/System.Threading.AccessControl.csproj index 7799676f1251a..4ab71ba04499c 100644 --- a/src/libraries/System.Threading.AccessControl/ref/System.Threading.AccessControl.csproj +++ b/src/libraries/System.Threading.AccessControl/ref/System.Threading.AccessControl.csproj @@ -1,7 +1,7 @@ true - net461-Debug;net461-Release;netfx-Debug;netfx-Release;netstandard2.0-Debug;netstandard2.0-Release + net461-Debug;net461-Release;$(NetFrameworkCurrent)-Debug;$(NetFrameworkCurrent)-Release;netstandard2.0-Debug;netstandard2.0-Release diff --git a/src/libraries/System.Threading.AccessControl/src/Configurations.props b/src/libraries/System.Threading.AccessControl/src/Configurations.props index 017cf13a810bf..0a69df7a4043f 100644 --- a/src/libraries/System.Threading.AccessControl/src/Configurations.props +++ b/src/libraries/System.Threading.AccessControl/src/Configurations.props @@ -7,7 +7,7 @@ $(PackageConfigurations) - netfx-Windows_NT; + $(NetFrameworkCurrent)-Windows_NT; \ No newline at end of file diff --git a/src/libraries/System.Threading.AccessControl/src/System.Threading.AccessControl.csproj b/src/libraries/System.Threading.AccessControl/src/System.Threading.AccessControl.csproj index 4ac33ba43caa1..f41f4ad5b4cb2 100644 --- a/src/libraries/System.Threading.AccessControl/src/System.Threading.AccessControl.csproj +++ b/src/libraries/System.Threading.AccessControl/src/System.Threading.AccessControl.csproj @@ -3,7 +3,7 @@ Windows_NT SR.PlatformNotSupported_AccessControl true - net461-Windows_NT-Debug;net461-Windows_NT-Release;netfx-Windows_NT-Debug;netfx-Windows_NT-Release;netstandard2.0-Debug;netstandard2.0-Release;netstandard2.0-Windows_NT-Debug;netstandard2.0-Windows_NT-Release + net461-Windows_NT-Debug;net461-Windows_NT-Release;$(NetFrameworkCurrent)-Windows_NT-Debug;$(NetFrameworkCurrent)-Windows_NT-Release;netstandard2.0-Debug;netstandard2.0-Release;netstandard2.0-Windows_NT-Debug;netstandard2.0-Windows_NT-Release true diff --git a/src/libraries/System.Threading.AccessControl/tests/Configurations.props b/src/libraries/System.Threading.AccessControl/tests/Configurations.props index 8bfb431d9ba66..96779f45bfb69 100644 --- a/src/libraries/System.Threading.AccessControl/tests/Configurations.props +++ b/src/libraries/System.Threading.AccessControl/tests/Configurations.props @@ -1,8 +1,8 @@  - netcoreapp-Windows_NT; - netfx-Windows_NT; + $(NetCoreAppCurrent)-Windows_NT; + $(NetFrameworkCurrent)-Windows_NT; \ No newline at end of file diff --git a/src/libraries/System.Threading.AccessControl/tests/System.Threading.AccessControl.Tests.csproj b/src/libraries/System.Threading.AccessControl/tests/System.Threading.AccessControl.Tests.csproj index 60489e1c7614b..1a9c6267551a4 100644 --- a/src/libraries/System.Threading.AccessControl/tests/System.Threading.AccessControl.Tests.csproj +++ b/src/libraries/System.Threading.AccessControl/tests/System.Threading.AccessControl.Tests.csproj @@ -1,6 +1,6 @@ - netcoreapp-Windows_NT-Debug;netcoreapp-Windows_NT-Release;netfx-Windows_NT-Debug;netfx-Windows_NT-Release + $(NetCoreAppCurrent)-Windows_NT-Debug;$(NetCoreAppCurrent)-Windows_NT-Release;$(NetFrameworkCurrent)-Windows_NT-Debug;$(NetFrameworkCurrent)-Windows_NT-Release diff --git a/src/libraries/System.Threading.Channels/System.Threading.Channels.sln b/src/libraries/System.Threading.Channels/System.Threading.Channels.sln index c3dffb24aeac0..8b8d49677692c 100644 --- a/src/libraries/System.Threading.Channels/System.Threading.Channels.sln +++ b/src/libraries/System.Threading.Channels/System.Threading.Channels.sln @@ -26,18 +26,18 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {1AF01469-DBFC-4BA1-9331-8E39AA639FEE}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {1AF01469-DBFC-4BA1-9331-8E39AA639FEE}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {1AF01469-DBFC-4BA1-9331-8E39AA639FEE}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {1AF01469-DBFC-4BA1-9331-8E39AA639FEE}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU - {AAADA5D3-CF64-4E9D-943C-EFDC006D6366}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {AAADA5D3-CF64-4E9D-943C-EFDC006D6366}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {AAADA5D3-CF64-4E9D-943C-EFDC006D6366}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {AAADA5D3-CF64-4E9D-943C-EFDC006D6366}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU - {97DB4782-7AB3-4F4C-B716-CF722A0E6066}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {97DB4782-7AB3-4F4C-B716-CF722A0E6066}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {97DB4782-7AB3-4F4C-B716-CF722A0E6066}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {97DB4782-7AB3-4F4C-B716-CF722A0E6066}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU + {1AF01469-DBFC-4BA1-9331-8E39AA639FEE}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {1AF01469-DBFC-4BA1-9331-8E39AA639FEE}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {1AF01469-DBFC-4BA1-9331-8E39AA639FEE}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {1AF01469-DBFC-4BA1-9331-8E39AA639FEE}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU + {AAADA5D3-CF64-4E9D-943C-EFDC006D6366}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {AAADA5D3-CF64-4E9D-943C-EFDC006D6366}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {AAADA5D3-CF64-4E9D-943C-EFDC006D6366}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {AAADA5D3-CF64-4E9D-943C-EFDC006D6366}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU + {97DB4782-7AB3-4F4C-B716-CF722A0E6066}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {97DB4782-7AB3-4F4C-B716-CF722A0E6066}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {97DB4782-7AB3-4F4C-B716-CF722A0E6066}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {97DB4782-7AB3-4F4C-B716-CF722A0E6066}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/src/libraries/System.Threading.Channels/ref/Configurations.props b/src/libraries/System.Threading.Channels/ref/Configurations.props index 0591c57875f1a..ff115b6f526a9 100644 --- a/src/libraries/System.Threading.Channels/ref/Configurations.props +++ b/src/libraries/System.Threading.Channels/ref/Configurations.props @@ -7,7 +7,7 @@ $(PackageConfigurations); - netcoreapp; + $(NetCoreAppCurrent); diff --git a/src/libraries/System.Threading.Channels/ref/System.Threading.Channels.csproj b/src/libraries/System.Threading.Channels/ref/System.Threading.Channels.csproj index e4e1b54b7d46e..e40bfe54777ec 100644 --- a/src/libraries/System.Threading.Channels/ref/System.Threading.Channels.csproj +++ b/src/libraries/System.Threading.Channels/ref/System.Threading.Channels.csproj @@ -1,6 +1,6 @@ - netcoreapp-Debug;netcoreapp-Release;netcoreapp3.0-Debug;netcoreapp3.0-Release;netstandard2.0-Debug;netstandard2.0-Release;netstandard1.3-Debug;netstandard1.3-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release;netcoreapp3.0-Debug;netcoreapp3.0-Release;netstandard2.0-Debug;netstandard2.0-Release;netstandard1.3-Debug;netstandard1.3-Release enable @@ -15,7 +15,7 @@ - + diff --git a/src/libraries/System.Threading.Channels/src/Configurations.props b/src/libraries/System.Threading.Channels/src/Configurations.props index 0f362c8c71c5f..baba43a90f458 100644 --- a/src/libraries/System.Threading.Channels/src/Configurations.props +++ b/src/libraries/System.Threading.Channels/src/Configurations.props @@ -7,7 +7,7 @@ $(PackageConfigurations); - netcoreapp; + $(NetCoreAppCurrent); diff --git a/src/libraries/System.Threading.Channels/src/System.Threading.Channels.csproj b/src/libraries/System.Threading.Channels/src/System.Threading.Channels.csproj index 8f99281f191b9..1aedd9f2faad6 100644 --- a/src/libraries/System.Threading.Channels/src/System.Threading.Channels.csproj +++ b/src/libraries/System.Threading.Channels/src/System.Threading.Channels.csproj @@ -1,6 +1,6 @@  - netcoreapp-Debug;netcoreapp-Release;netcoreapp3.0-Debug;netcoreapp3.0-Release;netstandard2.0-Debug;netstandard2.0-Release;netstandard1.3-Debug;netstandard1.3-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release;netcoreapp3.0-Debug;netcoreapp3.0-Release;netstandard2.0-Debug;netstandard2.0-Release;netstandard1.3-Debug;netstandard1.3-Release enable diff --git a/src/libraries/System.Threading.Channels/tests/Configurations.props b/src/libraries/System.Threading.Channels/tests/Configurations.props index 61b88ac2cb16e..671d43c80c973 100644 --- a/src/libraries/System.Threading.Channels/tests/Configurations.props +++ b/src/libraries/System.Threading.Channels/tests/Configurations.props @@ -1,8 +1,8 @@  - netcoreapp; - netfx; + $(NetCoreAppCurrent); + $(NetFrameworkCurrent); diff --git a/src/libraries/System.Threading.Channels/tests/System.Threading.Channels.Tests.csproj b/src/libraries/System.Threading.Channels/tests/System.Threading.Channels.Tests.csproj index 25d6a91ca3f90..25d15b540ab27 100644 --- a/src/libraries/System.Threading.Channels/tests/System.Threading.Channels.Tests.csproj +++ b/src/libraries/System.Threading.Channels/tests/System.Threading.Channels.Tests.csproj @@ -1,6 +1,6 @@ - netcoreapp-Debug;netcoreapp-Release;netfx-Debug;netfx-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release;$(NetFrameworkCurrent)-Debug;$(NetFrameworkCurrent)-Release diff --git a/src/libraries/System.Threading.Overlapped/System.Threading.Overlapped.sln b/src/libraries/System.Threading.Overlapped/System.Threading.Overlapped.sln index 759068fed5f35..0d81688051b64 100644 --- a/src/libraries/System.Threading.Overlapped/System.Threading.Overlapped.sln +++ b/src/libraries/System.Threading.Overlapped/System.Threading.Overlapped.sln @@ -26,18 +26,18 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {861A3318-35AD-46ac-8257-8D5D2479BAD9}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {861A3318-35AD-46ac-8257-8D5D2479BAD9}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {861A3318-35AD-46ac-8257-8D5D2479BAD9}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {861A3318-35AD-46ac-8257-8D5D2479BAD9}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU - {6A07CCB8-3E59-47e7-B3DD-DB1F6FC501D5}.Debug|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Debug|Any CPU - {6A07CCB8-3E59-47e7-B3DD-DB1F6FC501D5}.Debug|Any CPU.Build.0 = netcoreapp-Windows_NT-Debug|Any CPU - {6A07CCB8-3E59-47e7-B3DD-DB1F6FC501D5}.Release|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Release|Any CPU - {6A07CCB8-3E59-47e7-B3DD-DB1F6FC501D5}.Release|Any CPU.Build.0 = netcoreapp-Windows_NT-Release|Any CPU - {F71467DF-30C1-44A0-A15A-163CB5DB4E6E}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {F71467DF-30C1-44A0-A15A-163CB5DB4E6E}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {F71467DF-30C1-44A0-A15A-163CB5DB4E6E}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {F71467DF-30C1-44A0-A15A-163CB5DB4E6E}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU + {861A3318-35AD-46ac-8257-8D5D2479BAD9}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {861A3318-35AD-46ac-8257-8D5D2479BAD9}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {861A3318-35AD-46ac-8257-8D5D2479BAD9}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {861A3318-35AD-46ac-8257-8D5D2479BAD9}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU + {6A07CCB8-3E59-47e7-B3DD-DB1F6FC501D5}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Debug|Any CPU + {6A07CCB8-3E59-47e7-B3DD-DB1F6FC501D5}.Debug|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Debug|Any CPU + {6A07CCB8-3E59-47e7-B3DD-DB1F6FC501D5}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Release|Any CPU + {6A07CCB8-3E59-47e7-B3DD-DB1F6FC501D5}.Release|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Release|Any CPU + {F71467DF-30C1-44A0-A15A-163CB5DB4E6E}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {F71467DF-30C1-44A0-A15A-163CB5DB4E6E}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {F71467DF-30C1-44A0-A15A-163CB5DB4E6E}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {F71467DF-30C1-44A0-A15A-163CB5DB4E6E}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/src/libraries/System.Threading.Overlapped/ref/Configurations.props b/src/libraries/System.Threading.Overlapped/ref/Configurations.props index 89d6ac0f025b9..b6e0d3ce6383b 100644 --- a/src/libraries/System.Threading.Overlapped/ref/Configurations.props +++ b/src/libraries/System.Threading.Overlapped/ref/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Threading.Overlapped/ref/System.Threading.Overlapped.csproj b/src/libraries/System.Threading.Overlapped/ref/System.Threading.Overlapped.csproj index b69ec76dbf69e..40757384889c3 100644 --- a/src/libraries/System.Threading.Overlapped/ref/System.Threading.Overlapped.csproj +++ b/src/libraries/System.Threading.Overlapped/ref/System.Threading.Overlapped.csproj @@ -1,7 +1,7 @@ true - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release enable diff --git a/src/libraries/System.Threading.Overlapped/src/Configurations.props b/src/libraries/System.Threading.Overlapped/src/Configurations.props index adabcc0290e8a..c10c0d25a71d5 100644 --- a/src/libraries/System.Threading.Overlapped/src/Configurations.props +++ b/src/libraries/System.Threading.Overlapped/src/Configurations.props @@ -1,8 +1,8 @@  - netcoreapp-Windows_NT; - netcoreapp-Unix; + $(NetCoreAppCurrent)-Windows_NT; + $(NetCoreAppCurrent)-Unix; diff --git a/src/libraries/System.Threading.Overlapped/src/System.Threading.Overlapped.csproj b/src/libraries/System.Threading.Overlapped/src/System.Threading.Overlapped.csproj index bce456bd2180f..139c769b92d18 100644 --- a/src/libraries/System.Threading.Overlapped/src/System.Threading.Overlapped.csproj +++ b/src/libraries/System.Threading.Overlapped/src/System.Threading.Overlapped.csproj @@ -3,7 +3,7 @@ System.Threading.Overlapped true true - netcoreapp-Unix-Debug;netcoreapp-Unix-Release;netcoreapp-Windows_NT-Debug;netcoreapp-Windows_NT-Release + $(NetCoreAppCurrent)-Unix-Debug;$(NetCoreAppCurrent)-Unix-Release;$(NetCoreAppCurrent)-Windows_NT-Debug;$(NetCoreAppCurrent)-Windows_NT-Release diff --git a/src/libraries/System.Threading.Overlapped/tests/Configurations.props b/src/libraries/System.Threading.Overlapped/tests/Configurations.props index a1eadd7648d83..d3947cd2aa838 100644 --- a/src/libraries/System.Threading.Overlapped/tests/Configurations.props +++ b/src/libraries/System.Threading.Overlapped/tests/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); diff --git a/src/libraries/System.Threading.Overlapped/tests/System.Threading.Overlapped.Tests.csproj b/src/libraries/System.Threading.Overlapped/tests/System.Threading.Overlapped.Tests.csproj index 3806a2b42c888..8d51b5fc55fce 100644 --- a/src/libraries/System.Threading.Overlapped/tests/System.Threading.Overlapped.Tests.csproj +++ b/src/libraries/System.Threading.Overlapped/tests/System.Threading.Overlapped.Tests.csproj @@ -2,7 +2,7 @@ true true - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release true diff --git a/src/libraries/System.Threading.Tasks.Dataflow/System.Threading.Tasks.Dataflow.sln b/src/libraries/System.Threading.Tasks.Dataflow/System.Threading.Tasks.Dataflow.sln index 49fd21810a3ec..3a8c3b55f3bd2 100644 --- a/src/libraries/System.Threading.Tasks.Dataflow/System.Threading.Tasks.Dataflow.sln +++ b/src/libraries/System.Threading.Tasks.Dataflow/System.Threading.Tasks.Dataflow.sln @@ -26,10 +26,10 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {A7AA2FC3-855F-44BA-8735-AB2F43D118A5}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {A7AA2FC3-855F-44BA-8735-AB2F43D118A5}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {A7AA2FC3-855F-44BA-8735-AB2F43D118A5}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {A7AA2FC3-855F-44BA-8735-AB2F43D118A5}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU + {A7AA2FC3-855F-44BA-8735-AB2F43D118A5}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {A7AA2FC3-855F-44BA-8735-AB2F43D118A5}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {A7AA2FC3-855F-44BA-8735-AB2F43D118A5}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {A7AA2FC3-855F-44BA-8735-AB2F43D118A5}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU {2E2F7224-7C72-4A81-9625-A5241F8D836D}.Debug|Any CPU.ActiveCfg = netstandard2.0-Debug|Any CPU {2E2F7224-7C72-4A81-9625-A5241F8D836D}.Debug|Any CPU.Build.0 = netstandard2.0-Debug|Any CPU {2E2F7224-7C72-4A81-9625-A5241F8D836D}.Release|Any CPU.ActiveCfg = netstandard2.0-Release|Any CPU diff --git a/src/libraries/System.Threading.Tasks.Dataflow/tests/Configurations.props b/src/libraries/System.Threading.Tasks.Dataflow/tests/Configurations.props index 2e0339e07963c..3e0106dbfb5ca 100644 --- a/src/libraries/System.Threading.Tasks.Dataflow/tests/Configurations.props +++ b/src/libraries/System.Threading.Tasks.Dataflow/tests/Configurations.props @@ -1,8 +1,8 @@  - netcoreapp; - netfx; + $(NetCoreAppCurrent); + $(NetFrameworkCurrent); \ No newline at end of file diff --git a/src/libraries/System.Threading.Tasks.Dataflow/tests/System.Threading.Tasks.Dataflow.Tests.csproj b/src/libraries/System.Threading.Tasks.Dataflow/tests/System.Threading.Tasks.Dataflow.Tests.csproj index 655c8c15173af..f74aba77af6d8 100644 --- a/src/libraries/System.Threading.Tasks.Dataflow/tests/System.Threading.Tasks.Dataflow.Tests.csproj +++ b/src/libraries/System.Threading.Tasks.Dataflow/tests/System.Threading.Tasks.Dataflow.Tests.csproj @@ -1,7 +1,7 @@ true - netcoreapp-Debug;netcoreapp-Release;netfx-Debug;netfx-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release;$(NetFrameworkCurrent)-Debug;$(NetFrameworkCurrent)-Release diff --git a/src/libraries/System.Threading.Tasks.Extensions/System.Threading.Tasks.Extensions.sln b/src/libraries/System.Threading.Tasks.Extensions/System.Threading.Tasks.Extensions.sln index ded08fa5e5859..a8e0e2350bca1 100644 --- a/src/libraries/System.Threading.Tasks.Extensions/System.Threading.Tasks.Extensions.sln +++ b/src/libraries/System.Threading.Tasks.Extensions/System.Threading.Tasks.Extensions.sln @@ -26,18 +26,18 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {275B161B-D525-48A0-B1DE-344273AB9A99}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {275B161B-D525-48A0-B1DE-344273AB9A99}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {275B161B-D525-48A0-B1DE-344273AB9A99}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {275B161B-D525-48A0-B1DE-344273AB9A99}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU - {DE90AD0B-649D-4062-B8D9-9658DE140532}.Debug|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Debug|Any CPU - {DE90AD0B-649D-4062-B8D9-9658DE140532}.Debug|Any CPU.Build.0 = netcoreapp-Windows_NT-Debug|Any CPU - {DE90AD0B-649D-4062-B8D9-9658DE140532}.Release|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Release|Any CPU - {DE90AD0B-649D-4062-B8D9-9658DE140532}.Release|Any CPU.Build.0 = netcoreapp-Windows_NT-Release|Any CPU - {0DF7FA9A-E7D3-4CEF-862B-A37F5BBBB54C}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {0DF7FA9A-E7D3-4CEF-862B-A37F5BBBB54C}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {0DF7FA9A-E7D3-4CEF-862B-A37F5BBBB54C}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {0DF7FA9A-E7D3-4CEF-862B-A37F5BBBB54C}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU + {275B161B-D525-48A0-B1DE-344273AB9A99}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {275B161B-D525-48A0-B1DE-344273AB9A99}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {275B161B-D525-48A0-B1DE-344273AB9A99}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {275B161B-D525-48A0-B1DE-344273AB9A99}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU + {DE90AD0B-649D-4062-B8D9-9658DE140532}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Debug|Any CPU + {DE90AD0B-649D-4062-B8D9-9658DE140532}.Debug|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Debug|Any CPU + {DE90AD0B-649D-4062-B8D9-9658DE140532}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Release|Any CPU + {DE90AD0B-649D-4062-B8D9-9658DE140532}.Release|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Release|Any CPU + {0DF7FA9A-E7D3-4CEF-862B-A37F5BBBB54C}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {0DF7FA9A-E7D3-4CEF-862B-A37F5BBBB54C}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {0DF7FA9A-E7D3-4CEF-862B-A37F5BBBB54C}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {0DF7FA9A-E7D3-4CEF-862B-A37F5BBBB54C}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/src/libraries/System.Threading.Tasks.Extensions/ref/Configurations.props b/src/libraries/System.Threading.Tasks.Extensions/ref/Configurations.props index a1eadd7648d83..d3947cd2aa838 100644 --- a/src/libraries/System.Threading.Tasks.Extensions/ref/Configurations.props +++ b/src/libraries/System.Threading.Tasks.Extensions/ref/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); diff --git a/src/libraries/System.Threading.Tasks.Extensions/ref/System.Threading.Tasks.Extensions.csproj b/src/libraries/System.Threading.Tasks.Extensions/ref/System.Threading.Tasks.Extensions.csproj index d362e1c2cbbc9..5ffd26388764a 100644 --- a/src/libraries/System.Threading.Tasks.Extensions/ref/System.Threading.Tasks.Extensions.csproj +++ b/src/libraries/System.Threading.Tasks.Extensions/ref/System.Threading.Tasks.Extensions.csproj @@ -1,6 +1,6 @@ - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release diff --git a/src/libraries/System.Threading.Tasks.Extensions/src/Configurations.props b/src/libraries/System.Threading.Tasks.Extensions/src/Configurations.props index adabcc0290e8a..c10c0d25a71d5 100644 --- a/src/libraries/System.Threading.Tasks.Extensions/src/Configurations.props +++ b/src/libraries/System.Threading.Tasks.Extensions/src/Configurations.props @@ -1,8 +1,8 @@  - netcoreapp-Windows_NT; - netcoreapp-Unix; + $(NetCoreAppCurrent)-Windows_NT; + $(NetCoreAppCurrent)-Unix; diff --git a/src/libraries/System.Threading.Tasks.Extensions/src/System.Threading.Tasks.Extensions.csproj b/src/libraries/System.Threading.Tasks.Extensions/src/System.Threading.Tasks.Extensions.csproj index d113465375e84..0ab31dbd14ef4 100644 --- a/src/libraries/System.Threading.Tasks.Extensions/src/System.Threading.Tasks.Extensions.csproj +++ b/src/libraries/System.Threading.Tasks.Extensions/src/System.Threading.Tasks.Extensions.csproj @@ -1,7 +1,7 @@ true - netcoreapp-Unix-Debug;netcoreapp-Unix-Release;netcoreapp-Windows_NT-Debug;netcoreapp-Windows_NT-Release + $(NetCoreAppCurrent)-Unix-Debug;$(NetCoreAppCurrent)-Unix-Release;$(NetCoreAppCurrent)-Windows_NT-Debug;$(NetCoreAppCurrent)-Windows_NT-Release diff --git a/src/libraries/System.Threading.Tasks.Extensions/tests/Configurations.props b/src/libraries/System.Threading.Tasks.Extensions/tests/Configurations.props index 89d6ac0f025b9..b6e0d3ce6383b 100644 --- a/src/libraries/System.Threading.Tasks.Extensions/tests/Configurations.props +++ b/src/libraries/System.Threading.Tasks.Extensions/tests/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Threading.Tasks.Extensions/tests/System.Threading.Tasks.Extensions.Tests.csproj b/src/libraries/System.Threading.Tasks.Extensions/tests/System.Threading.Tasks.Extensions.Tests.csproj index 674e64e67ee07..08fe1bc6710ad 100644 --- a/src/libraries/System.Threading.Tasks.Extensions/tests/System.Threading.Tasks.Extensions.Tests.csproj +++ b/src/libraries/System.Threading.Tasks.Extensions/tests/System.Threading.Tasks.Extensions.Tests.csproj @@ -1,6 +1,6 @@ - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release true diff --git a/src/libraries/System.Threading.Tasks.Parallel/System.Threading.Tasks.Parallel.sln b/src/libraries/System.Threading.Tasks.Parallel/System.Threading.Tasks.Parallel.sln index 64b8f4fcdea62..be906bcff373a 100644 --- a/src/libraries/System.Threading.Tasks.Parallel/System.Threading.Tasks.Parallel.sln +++ b/src/libraries/System.Threading.Tasks.Parallel/System.Threading.Tasks.Parallel.sln @@ -26,18 +26,18 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {DE29C320-2ECA-43FD-9F41-6F4F6C6BACD5}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {DE29C320-2ECA-43FD-9F41-6F4F6C6BACD5}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {DE29C320-2ECA-43FD-9F41-6F4F6C6BACD5}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {DE29C320-2ECA-43FD-9F41-6F4F6C6BACD5}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU - {A6BA5DF2-772E-4DA1-BC2D-89FF4A21EE4F}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {A6BA5DF2-772E-4DA1-BC2D-89FF4A21EE4F}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {A6BA5DF2-772E-4DA1-BC2D-89FF4A21EE4F}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {A6BA5DF2-772E-4DA1-BC2D-89FF4A21EE4F}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU - {E7ACD1F9-E309-4AAB-93D3-6A68FC32236B}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {E7ACD1F9-E309-4AAB-93D3-6A68FC32236B}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {E7ACD1F9-E309-4AAB-93D3-6A68FC32236B}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {E7ACD1F9-E309-4AAB-93D3-6A68FC32236B}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU + {DE29C320-2ECA-43FD-9F41-6F4F6C6BACD5}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {DE29C320-2ECA-43FD-9F41-6F4F6C6BACD5}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {DE29C320-2ECA-43FD-9F41-6F4F6C6BACD5}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {DE29C320-2ECA-43FD-9F41-6F4F6C6BACD5}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU + {A6BA5DF2-772E-4DA1-BC2D-89FF4A21EE4F}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {A6BA5DF2-772E-4DA1-BC2D-89FF4A21EE4F}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {A6BA5DF2-772E-4DA1-BC2D-89FF4A21EE4F}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {A6BA5DF2-772E-4DA1-BC2D-89FF4A21EE4F}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU + {E7ACD1F9-E309-4AAB-93D3-6A68FC32236B}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {E7ACD1F9-E309-4AAB-93D3-6A68FC32236B}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {E7ACD1F9-E309-4AAB-93D3-6A68FC32236B}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {E7ACD1F9-E309-4AAB-93D3-6A68FC32236B}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/src/libraries/System.Threading.Tasks.Parallel/ref/Configurations.props b/src/libraries/System.Threading.Tasks.Parallel/ref/Configurations.props index 89d6ac0f025b9..b6e0d3ce6383b 100644 --- a/src/libraries/System.Threading.Tasks.Parallel/ref/Configurations.props +++ b/src/libraries/System.Threading.Tasks.Parallel/ref/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Threading.Tasks.Parallel/ref/System.Threading.Tasks.Parallel.csproj b/src/libraries/System.Threading.Tasks.Parallel/ref/System.Threading.Tasks.Parallel.csproj index 0034493cbd7eb..b2166838d3db6 100644 --- a/src/libraries/System.Threading.Tasks.Parallel/ref/System.Threading.Tasks.Parallel.csproj +++ b/src/libraries/System.Threading.Tasks.Parallel/ref/System.Threading.Tasks.Parallel.csproj @@ -1,6 +1,6 @@ - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release enable diff --git a/src/libraries/System.Threading.Tasks.Parallel/src/Configurations.props b/src/libraries/System.Threading.Tasks.Parallel/src/Configurations.props index 89d6ac0f025b9..b6e0d3ce6383b 100644 --- a/src/libraries/System.Threading.Tasks.Parallel/src/Configurations.props +++ b/src/libraries/System.Threading.Tasks.Parallel/src/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Threading.Tasks.Parallel/src/System.Threading.Tasks.Parallel.csproj b/src/libraries/System.Threading.Tasks.Parallel/src/System.Threading.Tasks.Parallel.csproj index 0993c7b0aa2fa..6234d637e0705 100644 --- a/src/libraries/System.Threading.Tasks.Parallel/src/System.Threading.Tasks.Parallel.csproj +++ b/src/libraries/System.Threading.Tasks.Parallel/src/System.Threading.Tasks.Parallel.csproj @@ -5,7 +5,7 @@ 512 $(DefineConstants);CONCURRENT_COLLECTIONS;FEATURE_TRACING true - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release enable diff --git a/src/libraries/System.Threading.Tasks.Parallel/tests/Configurations.props b/src/libraries/System.Threading.Tasks.Parallel/tests/Configurations.props index 89d6ac0f025b9..b6e0d3ce6383b 100644 --- a/src/libraries/System.Threading.Tasks.Parallel/tests/Configurations.props +++ b/src/libraries/System.Threading.Tasks.Parallel/tests/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Threading.Tasks.Parallel/tests/System.Threading.Tasks.Parallel.Tests.csproj b/src/libraries/System.Threading.Tasks.Parallel/tests/System.Threading.Tasks.Parallel.Tests.csproj index d5db67f470e50..27e4a408e48cf 100644 --- a/src/libraries/System.Threading.Tasks.Parallel/tests/System.Threading.Tasks.Parallel.Tests.csproj +++ b/src/libraries/System.Threading.Tasks.Parallel/tests/System.Threading.Tasks.Parallel.Tests.csproj @@ -1,7 +1,7 @@ true - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release diff --git a/src/libraries/System.Threading.Tasks/System.Threading.Tasks.sln b/src/libraries/System.Threading.Tasks/System.Threading.Tasks.sln index 868b6f2ccbead..aab86bf7e2145 100644 --- a/src/libraries/System.Threading.Tasks/System.Threading.Tasks.sln +++ b/src/libraries/System.Threading.Tasks/System.Threading.Tasks.sln @@ -26,18 +26,18 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {B6C09633-D161-499A-8FE1-46B2D53A16E7}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {B6C09633-D161-499A-8FE1-46B2D53A16E7}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {B6C09633-D161-499A-8FE1-46B2D53A16E7}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {B6C09633-D161-499A-8FE1-46B2D53A16E7}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU - {3BCAEAA6-3A29-49EC-B334-6E7BE8BE9ABA}.Debug|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Debug|Any CPU - {3BCAEAA6-3A29-49EC-B334-6E7BE8BE9ABA}.Debug|Any CPU.Build.0 = netcoreapp-Windows_NT-Debug|Any CPU - {3BCAEAA6-3A29-49EC-B334-6E7BE8BE9ABA}.Release|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Release|Any CPU - {3BCAEAA6-3A29-49EC-B334-6E7BE8BE9ABA}.Release|Any CPU.Build.0 = netcoreapp-Windows_NT-Release|Any CPU - {27675CCE-B6F9-4E2F-9BF2-5E623173BD5C}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {27675CCE-B6F9-4E2F-9BF2-5E623173BD5C}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {27675CCE-B6F9-4E2F-9BF2-5E623173BD5C}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {27675CCE-B6F9-4E2F-9BF2-5E623173BD5C}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU + {B6C09633-D161-499A-8FE1-46B2D53A16E7}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {B6C09633-D161-499A-8FE1-46B2D53A16E7}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {B6C09633-D161-499A-8FE1-46B2D53A16E7}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {B6C09633-D161-499A-8FE1-46B2D53A16E7}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU + {3BCAEAA6-3A29-49EC-B334-6E7BE8BE9ABA}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Debug|Any CPU + {3BCAEAA6-3A29-49EC-B334-6E7BE8BE9ABA}.Debug|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Debug|Any CPU + {3BCAEAA6-3A29-49EC-B334-6E7BE8BE9ABA}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Release|Any CPU + {3BCAEAA6-3A29-49EC-B334-6E7BE8BE9ABA}.Release|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Release|Any CPU + {27675CCE-B6F9-4E2F-9BF2-5E623173BD5C}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {27675CCE-B6F9-4E2F-9BF2-5E623173BD5C}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {27675CCE-B6F9-4E2F-9BF2-5E623173BD5C}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {27675CCE-B6F9-4E2F-9BF2-5E623173BD5C}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/src/libraries/System.Threading.Tasks/ref/Configurations.props b/src/libraries/System.Threading.Tasks/ref/Configurations.props index 89d6ac0f025b9..b6e0d3ce6383b 100644 --- a/src/libraries/System.Threading.Tasks/ref/Configurations.props +++ b/src/libraries/System.Threading.Tasks/ref/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Threading.Tasks/ref/System.Threading.Tasks.csproj b/src/libraries/System.Threading.Tasks/ref/System.Threading.Tasks.csproj index 30b0cd8bdba6c..b413a7f1b1bd6 100644 --- a/src/libraries/System.Threading.Tasks/ref/System.Threading.Tasks.csproj +++ b/src/libraries/System.Threading.Tasks/ref/System.Threading.Tasks.csproj @@ -1,6 +1,6 @@ - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release enable diff --git a/src/libraries/System.Threading.Tasks/src/Configurations.props b/src/libraries/System.Threading.Tasks/src/Configurations.props index adabcc0290e8a..c10c0d25a71d5 100644 --- a/src/libraries/System.Threading.Tasks/src/Configurations.props +++ b/src/libraries/System.Threading.Tasks/src/Configurations.props @@ -1,8 +1,8 @@  - netcoreapp-Windows_NT; - netcoreapp-Unix; + $(NetCoreAppCurrent)-Windows_NT; + $(NetCoreAppCurrent)-Unix; diff --git a/src/libraries/System.Threading.Tasks/src/System.Threading.Tasks.csproj b/src/libraries/System.Threading.Tasks/src/System.Threading.Tasks.csproj index cfb0a60317c3c..b6060c8d6253c 100644 --- a/src/libraries/System.Threading.Tasks/src/System.Threading.Tasks.csproj +++ b/src/libraries/System.Threading.Tasks/src/System.Threading.Tasks.csproj @@ -2,7 +2,7 @@ System.Threading.Tasks true - netcoreapp-Unix-Debug;netcoreapp-Unix-Release;netcoreapp-Windows_NT-Debug;netcoreapp-Windows_NT-Release + $(NetCoreAppCurrent)-Unix-Debug;$(NetCoreAppCurrent)-Unix-Release;$(NetCoreAppCurrent)-Windows_NT-Debug;$(NetCoreAppCurrent)-Windows_NT-Release diff --git a/src/libraries/System.Threading.Tasks/tests/Configurations.props b/src/libraries/System.Threading.Tasks/tests/Configurations.props index 89d6ac0f025b9..b6e0d3ce6383b 100644 --- a/src/libraries/System.Threading.Tasks/tests/Configurations.props +++ b/src/libraries/System.Threading.Tasks/tests/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Threading.Tasks/tests/System.Threading.Tasks.Tests.csproj b/src/libraries/System.Threading.Tasks/tests/System.Threading.Tasks.Tests.csproj index 4d8afe19404b0..6271ad81d7acf 100644 --- a/src/libraries/System.Threading.Tasks/tests/System.Threading.Tasks.Tests.csproj +++ b/src/libraries/System.Threading.Tasks/tests/System.Threading.Tasks.Tests.csproj @@ -2,7 +2,7 @@ true true - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release diff --git a/src/libraries/System.Threading.Thread/System.Threading.Thread.sln b/src/libraries/System.Threading.Thread/System.Threading.Thread.sln index 26b54f1c8bdd0..b833c69387c72 100644 --- a/src/libraries/System.Threading.Thread/System.Threading.Thread.sln +++ b/src/libraries/System.Threading.Thread/System.Threading.Thread.sln @@ -41,30 +41,30 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {33F5A50E-B823-4FDD-8571-365C909ACEAE}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {33F5A50E-B823-4FDD-8571-365C909ACEAE}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {33F5A50E-B823-4FDD-8571-365C909ACEAE}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {33F5A50E-B823-4FDD-8571-365C909ACEAE}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU - {32432E07-5CA4-41F3-9855-22AB1F1E69B3}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {32432E07-5CA4-41F3-9855-22AB1F1E69B3}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {32432E07-5CA4-41F3-9855-22AB1F1E69B3}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {32432E07-5CA4-41F3-9855-22AB1F1E69B3}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU - {06B19C7D-9EBE-420F-BD33-137DB18A1FEB}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {06B19C7D-9EBE-420F-BD33-137DB18A1FEB}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {06B19C7D-9EBE-420F-BD33-137DB18A1FEB}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {06B19C7D-9EBE-420F-BD33-137DB18A1FEB}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU - {8045E634-C181-4C6C-AE48-71AC18D1C637}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {8045E634-C181-4C6C-AE48-71AC18D1C637}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {8045E634-C181-4C6C-AE48-71AC18D1C637}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {8045E634-C181-4C6C-AE48-71AC18D1C637}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU - {06197EED-FF48-43F3-976D-463839D43E8C}.Debug|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Debug|Any CPU - {06197EED-FF48-43F3-976D-463839D43E8C}.Debug|Any CPU.Build.0 = netcoreapp-Windows_NT-Debug|Any CPU - {06197EED-FF48-43F3-976D-463839D43E8C}.Release|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Release|Any CPU - {06197EED-FF48-43F3-976D-463839D43E8C}.Release|Any CPU.Build.0 = netcoreapp-Windows_NT-Release|Any CPU - {82D06A2D-008D-4A4A-A83D-FB7F04721C87}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {82D06A2D-008D-4A4A-A83D-FB7F04721C87}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {82D06A2D-008D-4A4A-A83D-FB7F04721C87}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {82D06A2D-008D-4A4A-A83D-FB7F04721C87}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU + {33F5A50E-B823-4FDD-8571-365C909ACEAE}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {33F5A50E-B823-4FDD-8571-365C909ACEAE}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {33F5A50E-B823-4FDD-8571-365C909ACEAE}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {33F5A50E-B823-4FDD-8571-365C909ACEAE}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU + {32432E07-5CA4-41F3-9855-22AB1F1E69B3}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {32432E07-5CA4-41F3-9855-22AB1F1E69B3}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {32432E07-5CA4-41F3-9855-22AB1F1E69B3}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {32432E07-5CA4-41F3-9855-22AB1F1E69B3}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU + {06B19C7D-9EBE-420F-BD33-137DB18A1FEB}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {06B19C7D-9EBE-420F-BD33-137DB18A1FEB}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {06B19C7D-9EBE-420F-BD33-137DB18A1FEB}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {06B19C7D-9EBE-420F-BD33-137DB18A1FEB}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU + {8045E634-C181-4C6C-AE48-71AC18D1C637}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {8045E634-C181-4C6C-AE48-71AC18D1C637}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {8045E634-C181-4C6C-AE48-71AC18D1C637}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {8045E634-C181-4C6C-AE48-71AC18D1C637}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU + {06197EED-FF48-43F3-976D-463839D43E8C}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Debug|Any CPU + {06197EED-FF48-43F3-976D-463839D43E8C}.Debug|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Debug|Any CPU + {06197EED-FF48-43F3-976D-463839D43E8C}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Release|Any CPU + {06197EED-FF48-43F3-976D-463839D43E8C}.Release|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Release|Any CPU + {82D06A2D-008D-4A4A-A83D-FB7F04721C87}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {82D06A2D-008D-4A4A-A83D-FB7F04721C87}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {82D06A2D-008D-4A4A-A83D-FB7F04721C87}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {82D06A2D-008D-4A4A-A83D-FB7F04721C87}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/src/libraries/System.Threading.Thread/ref/Configurations.props b/src/libraries/System.Threading.Thread/ref/Configurations.props index 89d6ac0f025b9..b6e0d3ce6383b 100644 --- a/src/libraries/System.Threading.Thread/ref/Configurations.props +++ b/src/libraries/System.Threading.Thread/ref/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Threading.Thread/ref/System.Threading.Thread.csproj b/src/libraries/System.Threading.Thread/ref/System.Threading.Thread.csproj index 78e6e3c628d89..a0c7a299bf20c 100644 --- a/src/libraries/System.Threading.Thread/ref/System.Threading.Thread.csproj +++ b/src/libraries/System.Threading.Thread/ref/System.Threading.Thread.csproj @@ -1,6 +1,6 @@ - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release enable diff --git a/src/libraries/System.Threading.Thread/src/Configurations.props b/src/libraries/System.Threading.Thread/src/Configurations.props index adabcc0290e8a..c10c0d25a71d5 100644 --- a/src/libraries/System.Threading.Thread/src/Configurations.props +++ b/src/libraries/System.Threading.Thread/src/Configurations.props @@ -1,8 +1,8 @@  - netcoreapp-Windows_NT; - netcoreapp-Unix; + $(NetCoreAppCurrent)-Windows_NT; + $(NetCoreAppCurrent)-Unix; diff --git a/src/libraries/System.Threading.Thread/src/System.Threading.Thread.csproj b/src/libraries/System.Threading.Thread/src/System.Threading.Thread.csproj index 00098fabb14a6..f61d5ad9ee82d 100644 --- a/src/libraries/System.Threading.Thread/src/System.Threading.Thread.csproj +++ b/src/libraries/System.Threading.Thread/src/System.Threading.Thread.csproj @@ -4,7 +4,7 @@ Library true enable - netcoreapp-Unix-Debug;netcoreapp-Unix-Release;netcoreapp-Windows_NT-Debug;netcoreapp-Windows_NT-Release + $(NetCoreAppCurrent)-Unix-Debug;$(NetCoreAppCurrent)-Unix-Release;$(NetCoreAppCurrent)-Windows_NT-Debug;$(NetCoreAppCurrent)-Windows_NT-Release diff --git a/src/libraries/System.Threading.Thread/tests/Configurations.props b/src/libraries/System.Threading.Thread/tests/Configurations.props index 89d6ac0f025b9..b6e0d3ce6383b 100644 --- a/src/libraries/System.Threading.Thread/tests/Configurations.props +++ b/src/libraries/System.Threading.Thread/tests/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Threading.Thread/tests/DefaultApartmentStateMain/Configurations.props b/src/libraries/System.Threading.Thread/tests/DefaultApartmentStateMain/Configurations.props index 89d6ac0f025b9..b6e0d3ce6383b 100644 --- a/src/libraries/System.Threading.Thread/tests/DefaultApartmentStateMain/Configurations.props +++ b/src/libraries/System.Threading.Thread/tests/DefaultApartmentStateMain/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Threading.Thread/tests/DefaultApartmentStateMain/DefaultApartmentStateMain.csproj b/src/libraries/System.Threading.Thread/tests/DefaultApartmentStateMain/DefaultApartmentStateMain.csproj index fde6e1abd1540..734d237112789 100644 --- a/src/libraries/System.Threading.Thread/tests/DefaultApartmentStateMain/DefaultApartmentStateMain.csproj +++ b/src/libraries/System.Threading.Thread/tests/DefaultApartmentStateMain/DefaultApartmentStateMain.csproj @@ -1,10 +1,10 @@ Exe - + .exe true - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release diff --git a/src/libraries/System.Threading.Thread/tests/MTAMain/Configurations.props b/src/libraries/System.Threading.Thread/tests/MTAMain/Configurations.props index 89d6ac0f025b9..b6e0d3ce6383b 100644 --- a/src/libraries/System.Threading.Thread/tests/MTAMain/Configurations.props +++ b/src/libraries/System.Threading.Thread/tests/MTAMain/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Threading.Thread/tests/MTAMain/MTAMain.csproj b/src/libraries/System.Threading.Thread/tests/MTAMain/MTAMain.csproj index 836d45848dce7..fde5cedc1f20d 100644 --- a/src/libraries/System.Threading.Thread/tests/MTAMain/MTAMain.csproj +++ b/src/libraries/System.Threading.Thread/tests/MTAMain/MTAMain.csproj @@ -1,10 +1,10 @@  Exe - + .exe true - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release diff --git a/src/libraries/System.Threading.Thread/tests/STAMain/Configurations.props b/src/libraries/System.Threading.Thread/tests/STAMain/Configurations.props index 89d6ac0f025b9..b6e0d3ce6383b 100644 --- a/src/libraries/System.Threading.Thread/tests/STAMain/Configurations.props +++ b/src/libraries/System.Threading.Thread/tests/STAMain/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Threading.Thread/tests/STAMain/STAMain.csproj b/src/libraries/System.Threading.Thread/tests/STAMain/STAMain.csproj index 21c14eaa5f83d..6eea9d693c611 100644 --- a/src/libraries/System.Threading.Thread/tests/STAMain/STAMain.csproj +++ b/src/libraries/System.Threading.Thread/tests/STAMain/STAMain.csproj @@ -1,10 +1,10 @@  Exe - + .exe true - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release diff --git a/src/libraries/System.Threading.Thread/tests/System.Threading.Thread.Tests.csproj b/src/libraries/System.Threading.Thread/tests/System.Threading.Thread.Tests.csproj index 3e2c0265b0bff..ba544c7caba4a 100644 --- a/src/libraries/System.Threading.Thread/tests/System.Threading.Thread.Tests.csproj +++ b/src/libraries/System.Threading.Thread/tests/System.Threading.Thread.Tests.csproj @@ -3,7 +3,7 @@ true true true - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release diff --git a/src/libraries/System.Threading.ThreadPool/System.Threading.ThreadPool.sln b/src/libraries/System.Threading.ThreadPool/System.Threading.ThreadPool.sln index 9181e194d9d96..bd39a0483bba5 100644 --- a/src/libraries/System.Threading.ThreadPool/System.Threading.ThreadPool.sln +++ b/src/libraries/System.Threading.ThreadPool/System.Threading.ThreadPool.sln @@ -26,18 +26,18 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {403AD1B8-6F95-4A2E-92A2-727606ABD866}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {403AD1B8-6F95-4A2E-92A2-727606ABD866}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {403AD1B8-6F95-4A2E-92A2-727606ABD866}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {403AD1B8-6F95-4A2E-92A2-727606ABD866}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU - {EE797598-BA64-4150-A3AA-8FB97DA63697}.Debug|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Debug|Any CPU - {EE797598-BA64-4150-A3AA-8FB97DA63697}.Debug|Any CPU.Build.0 = netcoreapp-Windows_NT-Debug|Any CPU - {EE797598-BA64-4150-A3AA-8FB97DA63697}.Release|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Release|Any CPU - {EE797598-BA64-4150-A3AA-8FB97DA63697}.Release|Any CPU.Build.0 = netcoreapp-Windows_NT-Release|Any CPU - {3A5A0D64-7796-4BC2-8288-4B04B97C4A70}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {3A5A0D64-7796-4BC2-8288-4B04B97C4A70}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {3A5A0D64-7796-4BC2-8288-4B04B97C4A70}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {3A5A0D64-7796-4BC2-8288-4B04B97C4A70}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU + {403AD1B8-6F95-4A2E-92A2-727606ABD866}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {403AD1B8-6F95-4A2E-92A2-727606ABD866}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {403AD1B8-6F95-4A2E-92A2-727606ABD866}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {403AD1B8-6F95-4A2E-92A2-727606ABD866}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU + {EE797598-BA64-4150-A3AA-8FB97DA63697}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Debug|Any CPU + {EE797598-BA64-4150-A3AA-8FB97DA63697}.Debug|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Debug|Any CPU + {EE797598-BA64-4150-A3AA-8FB97DA63697}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Release|Any CPU + {EE797598-BA64-4150-A3AA-8FB97DA63697}.Release|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Release|Any CPU + {3A5A0D64-7796-4BC2-8288-4B04B97C4A70}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {3A5A0D64-7796-4BC2-8288-4B04B97C4A70}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {3A5A0D64-7796-4BC2-8288-4B04B97C4A70}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {3A5A0D64-7796-4BC2-8288-4B04B97C4A70}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/src/libraries/System.Threading.ThreadPool/ref/Configurations.props b/src/libraries/System.Threading.ThreadPool/ref/Configurations.props index 89d6ac0f025b9..b6e0d3ce6383b 100644 --- a/src/libraries/System.Threading.ThreadPool/ref/Configurations.props +++ b/src/libraries/System.Threading.ThreadPool/ref/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Threading.ThreadPool/ref/System.Threading.ThreadPool.csproj b/src/libraries/System.Threading.ThreadPool/ref/System.Threading.ThreadPool.csproj index fef1c45306815..d00605c595a0b 100644 --- a/src/libraries/System.Threading.ThreadPool/ref/System.Threading.ThreadPool.csproj +++ b/src/libraries/System.Threading.ThreadPool/ref/System.Threading.ThreadPool.csproj @@ -1,7 +1,7 @@ true - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release enable diff --git a/src/libraries/System.Threading.ThreadPool/src/Configurations.props b/src/libraries/System.Threading.ThreadPool/src/Configurations.props index adabcc0290e8a..c10c0d25a71d5 100644 --- a/src/libraries/System.Threading.ThreadPool/src/Configurations.props +++ b/src/libraries/System.Threading.ThreadPool/src/Configurations.props @@ -1,8 +1,8 @@  - netcoreapp-Windows_NT; - netcoreapp-Unix; + $(NetCoreAppCurrent)-Windows_NT; + $(NetCoreAppCurrent)-Unix; diff --git a/src/libraries/System.Threading.ThreadPool/src/System.Threading.ThreadPool.csproj b/src/libraries/System.Threading.ThreadPool/src/System.Threading.ThreadPool.csproj index 6aafb2918d46f..07d8de02bf830 100644 --- a/src/libraries/System.Threading.ThreadPool/src/System.Threading.ThreadPool.csproj +++ b/src/libraries/System.Threading.ThreadPool/src/System.Threading.ThreadPool.csproj @@ -2,7 +2,7 @@ System.Threading.ThreadPool true - netcoreapp-Unix-Debug;netcoreapp-Unix-Release;netcoreapp-Windows_NT-Debug;netcoreapp-Windows_NT-Release + $(NetCoreAppCurrent)-Unix-Debug;$(NetCoreAppCurrent)-Unix-Release;$(NetCoreAppCurrent)-Windows_NT-Debug;$(NetCoreAppCurrent)-Windows_NT-Release diff --git a/src/libraries/System.Threading.ThreadPool/tests/Configurations.props b/src/libraries/System.Threading.ThreadPool/tests/Configurations.props index 89d6ac0f025b9..b6e0d3ce6383b 100644 --- a/src/libraries/System.Threading.ThreadPool/tests/Configurations.props +++ b/src/libraries/System.Threading.ThreadPool/tests/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Threading.ThreadPool/tests/System.Threading.ThreadPool.Tests.csproj b/src/libraries/System.Threading.ThreadPool/tests/System.Threading.ThreadPool.Tests.csproj index 3b494e727cda4..1ee11af9fc71e 100644 --- a/src/libraries/System.Threading.ThreadPool/tests/System.Threading.ThreadPool.Tests.csproj +++ b/src/libraries/System.Threading.ThreadPool/tests/System.Threading.ThreadPool.Tests.csproj @@ -1,7 +1,7 @@ true - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release true diff --git a/src/libraries/System.Threading.Timer/System.Threading.Timer.sln b/src/libraries/System.Threading.Timer/System.Threading.Timer.sln index ba97f370efc02..bf369306e84b4 100644 --- a/src/libraries/System.Threading.Timer/System.Threading.Timer.sln +++ b/src/libraries/System.Threading.Timer/System.Threading.Timer.sln @@ -26,18 +26,18 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {ac20a28f-fda8-45e8-8728-058ead16e44c}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {ac20a28f-fda8-45e8-8728-058ead16e44c}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {ac20a28f-fda8-45e8-8728-058ead16e44c}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {ac20a28f-fda8-45e8-8728-058ead16e44c}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU - {0F8B87B4-0E61-4DC6-9E90-CD4863025272}.Debug|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Debug|Any CPU - {0F8B87B4-0E61-4DC6-9E90-CD4863025272}.Debug|Any CPU.Build.0 = netcoreapp-Windows_NT-Debug|Any CPU - {0F8B87B4-0E61-4DC6-9E90-CD4863025272}.Release|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Release|Any CPU - {0F8B87B4-0E61-4DC6-9E90-CD4863025272}.Release|Any CPU.Build.0 = netcoreapp-Windows_NT-Release|Any CPU - {DC78B562-4F74-49C2-9766-3B65CD610CCC}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {DC78B562-4F74-49C2-9766-3B65CD610CCC}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {DC78B562-4F74-49C2-9766-3B65CD610CCC}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {DC78B562-4F74-49C2-9766-3B65CD610CCC}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU + {ac20a28f-fda8-45e8-8728-058ead16e44c}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {ac20a28f-fda8-45e8-8728-058ead16e44c}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {ac20a28f-fda8-45e8-8728-058ead16e44c}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {ac20a28f-fda8-45e8-8728-058ead16e44c}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU + {0F8B87B4-0E61-4DC6-9E90-CD4863025272}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Debug|Any CPU + {0F8B87B4-0E61-4DC6-9E90-CD4863025272}.Debug|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Debug|Any CPU + {0F8B87B4-0E61-4DC6-9E90-CD4863025272}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Release|Any CPU + {0F8B87B4-0E61-4DC6-9E90-CD4863025272}.Release|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Release|Any CPU + {DC78B562-4F74-49C2-9766-3B65CD610CCC}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {DC78B562-4F74-49C2-9766-3B65CD610CCC}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {DC78B562-4F74-49C2-9766-3B65CD610CCC}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {DC78B562-4F74-49C2-9766-3B65CD610CCC}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/src/libraries/System.Threading.Timer/ref/Configurations.props b/src/libraries/System.Threading.Timer/ref/Configurations.props index 89d6ac0f025b9..b6e0d3ce6383b 100644 --- a/src/libraries/System.Threading.Timer/ref/Configurations.props +++ b/src/libraries/System.Threading.Timer/ref/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Threading.Timer/ref/System.Threading.Timer.csproj b/src/libraries/System.Threading.Timer/ref/System.Threading.Timer.csproj index be71a217f716b..3e5863992db81 100644 --- a/src/libraries/System.Threading.Timer/ref/System.Threading.Timer.csproj +++ b/src/libraries/System.Threading.Timer/ref/System.Threading.Timer.csproj @@ -1,6 +1,6 @@ - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release enable diff --git a/src/libraries/System.Threading.Timer/src/Configurations.props b/src/libraries/System.Threading.Timer/src/Configurations.props index adabcc0290e8a..c10c0d25a71d5 100644 --- a/src/libraries/System.Threading.Timer/src/Configurations.props +++ b/src/libraries/System.Threading.Timer/src/Configurations.props @@ -1,8 +1,8 @@  - netcoreapp-Windows_NT; - netcoreapp-Unix; + $(NetCoreAppCurrent)-Windows_NT; + $(NetCoreAppCurrent)-Unix; diff --git a/src/libraries/System.Threading.Timer/src/System.Threading.Timer.csproj b/src/libraries/System.Threading.Timer/src/System.Threading.Timer.csproj index 8d4d52e237acf..79e59ff75623e 100644 --- a/src/libraries/System.Threading.Timer/src/System.Threading.Timer.csproj +++ b/src/libraries/System.Threading.Timer/src/System.Threading.Timer.csproj @@ -2,7 +2,7 @@ System.Threading.Timer true - netcoreapp-Unix-Debug;netcoreapp-Unix-Release;netcoreapp-Windows_NT-Debug;netcoreapp-Windows_NT-Release + $(NetCoreAppCurrent)-Unix-Debug;$(NetCoreAppCurrent)-Unix-Release;$(NetCoreAppCurrent)-Windows_NT-Debug;$(NetCoreAppCurrent)-Windows_NT-Release diff --git a/src/libraries/System.Threading.Timer/tests/Configurations.props b/src/libraries/System.Threading.Timer/tests/Configurations.props index 89d6ac0f025b9..b6e0d3ce6383b 100644 --- a/src/libraries/System.Threading.Timer/tests/Configurations.props +++ b/src/libraries/System.Threading.Timer/tests/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Threading.Timer/tests/System.Threading.Timer.Tests.csproj b/src/libraries/System.Threading.Timer/tests/System.Threading.Timer.Tests.csproj index 58b8a9c9984e1..96eb84de90ce0 100644 --- a/src/libraries/System.Threading.Timer/tests/System.Threading.Timer.Tests.csproj +++ b/src/libraries/System.Threading.Timer/tests/System.Threading.Timer.Tests.csproj @@ -1,6 +1,6 @@ - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release true true diff --git a/src/libraries/System.Threading/System.Threading.sln b/src/libraries/System.Threading/System.Threading.sln index 8dd0c96e634c2..a3827f8e5a57c 100644 --- a/src/libraries/System.Threading/System.Threading.sln +++ b/src/libraries/System.Threading/System.Threading.sln @@ -26,18 +26,18 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {18EF66B3-51EE-46D8-B283-1CB6A1197813}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {18EF66B3-51EE-46D8-B283-1CB6A1197813}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {18EF66B3-51EE-46D8-B283-1CB6A1197813}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {18EF66B3-51EE-46D8-B283-1CB6A1197813}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU - {604027F5-1DFC-42F4-B4FE-61F8789BA647}.Debug|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Debug|Any CPU - {604027F5-1DFC-42F4-B4FE-61F8789BA647}.Debug|Any CPU.Build.0 = netcoreapp-Windows_NT-Debug|Any CPU - {604027F5-1DFC-42F4-B4FE-61F8789BA647}.Release|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Release|Any CPU - {604027F5-1DFC-42F4-B4FE-61F8789BA647}.Release|Any CPU.Build.0 = netcoreapp-Windows_NT-Release|Any CPU - {F59F13CA-829A-4D02-9A1D-E40E61257177}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {F59F13CA-829A-4D02-9A1D-E40E61257177}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {F59F13CA-829A-4D02-9A1D-E40E61257177}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {F59F13CA-829A-4D02-9A1D-E40E61257177}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU + {18EF66B3-51EE-46D8-B283-1CB6A1197813}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {18EF66B3-51EE-46D8-B283-1CB6A1197813}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {18EF66B3-51EE-46D8-B283-1CB6A1197813}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {18EF66B3-51EE-46D8-B283-1CB6A1197813}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU + {604027F5-1DFC-42F4-B4FE-61F8789BA647}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Debug|Any CPU + {604027F5-1DFC-42F4-B4FE-61F8789BA647}.Debug|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Debug|Any CPU + {604027F5-1DFC-42F4-B4FE-61F8789BA647}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Release|Any CPU + {604027F5-1DFC-42F4-B4FE-61F8789BA647}.Release|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Release|Any CPU + {F59F13CA-829A-4D02-9A1D-E40E61257177}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {F59F13CA-829A-4D02-9A1D-E40E61257177}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {F59F13CA-829A-4D02-9A1D-E40E61257177}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {F59F13CA-829A-4D02-9A1D-E40E61257177}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/src/libraries/System.Threading/ref/Configurations.props b/src/libraries/System.Threading/ref/Configurations.props index 89d6ac0f025b9..b6e0d3ce6383b 100644 --- a/src/libraries/System.Threading/ref/Configurations.props +++ b/src/libraries/System.Threading/ref/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Threading/ref/System.Threading.csproj b/src/libraries/System.Threading/ref/System.Threading.csproj index 1706ea2d68c9a..ffd91ffbd74ac 100644 --- a/src/libraries/System.Threading/ref/System.Threading.csproj +++ b/src/libraries/System.Threading/ref/System.Threading.csproj @@ -1,6 +1,6 @@ - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release enable diff --git a/src/libraries/System.Threading/src/Configurations.props b/src/libraries/System.Threading/src/Configurations.props index adabcc0290e8a..c10c0d25a71d5 100644 --- a/src/libraries/System.Threading/src/Configurations.props +++ b/src/libraries/System.Threading/src/Configurations.props @@ -1,8 +1,8 @@  - netcoreapp-Windows_NT; - netcoreapp-Unix; + $(NetCoreAppCurrent)-Windows_NT; + $(NetCoreAppCurrent)-Unix; diff --git a/src/libraries/System.Threading/src/System.Threading.csproj b/src/libraries/System.Threading/src/System.Threading.csproj index 703be329ca2d3..9d84207a1cdd8 100644 --- a/src/libraries/System.Threading/src/System.Threading.csproj +++ b/src/libraries/System.Threading/src/System.Threading.csproj @@ -3,7 +3,7 @@ System.Threading true true - netcoreapp-Unix-Debug;netcoreapp-Unix-Release;netcoreapp-Windows_NT-Debug;netcoreapp-Windows_NT-Release + $(NetCoreAppCurrent)-Unix-Debug;$(NetCoreAppCurrent)-Unix-Release;$(NetCoreAppCurrent)-Windows_NT-Debug;$(NetCoreAppCurrent)-Windows_NT-Release enable diff --git a/src/libraries/System.Threading/tests/Configurations.props b/src/libraries/System.Threading/tests/Configurations.props index 89d6ac0f025b9..b6e0d3ce6383b 100644 --- a/src/libraries/System.Threading/tests/Configurations.props +++ b/src/libraries/System.Threading/tests/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Threading/tests/System.Threading.Tests.csproj b/src/libraries/System.Threading/tests/System.Threading.Tests.csproj index 7d9e1826fd025..51cd229554418 100644 --- a/src/libraries/System.Threading/tests/System.Threading.Tests.csproj +++ b/src/libraries/System.Threading/tests/System.Threading.Tests.csproj @@ -2,7 +2,7 @@ true true - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release diff --git a/src/libraries/System.Transactions.Local/System.Transactions.Local.sln b/src/libraries/System.Transactions.Local/System.Transactions.Local.sln index dccf033bff807..c7bdae7838362 100644 --- a/src/libraries/System.Transactions.Local/System.Transactions.Local.sln +++ b/src/libraries/System.Transactions.Local/System.Transactions.Local.sln @@ -26,18 +26,18 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {1C397868-9644-48CB-94BF-35805C4AE024}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {1C397868-9644-48CB-94BF-35805C4AE024}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {1C397868-9644-48CB-94BF-35805C4AE024}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {1C397868-9644-48CB-94BF-35805C4AE024}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU - {E97557E3-7DB1-4828-ACA5-44D8C68B6698}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {E97557E3-7DB1-4828-ACA5-44D8C68B6698}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {E97557E3-7DB1-4828-ACA5-44D8C68B6698}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {E97557E3-7DB1-4828-ACA5-44D8C68B6698}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU - {A0C4383D-B0B0-492F-AEEE-CA1BC6E5B6D4}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {A0C4383D-B0B0-492F-AEEE-CA1BC6E5B6D4}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {A0C4383D-B0B0-492F-AEEE-CA1BC6E5B6D4}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {A0C4383D-B0B0-492F-AEEE-CA1BC6E5B6D4}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU + {1C397868-9644-48CB-94BF-35805C4AE024}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {1C397868-9644-48CB-94BF-35805C4AE024}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {1C397868-9644-48CB-94BF-35805C4AE024}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {1C397868-9644-48CB-94BF-35805C4AE024}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU + {E97557E3-7DB1-4828-ACA5-44D8C68B6698}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {E97557E3-7DB1-4828-ACA5-44D8C68B6698}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {E97557E3-7DB1-4828-ACA5-44D8C68B6698}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {E97557E3-7DB1-4828-ACA5-44D8C68B6698}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU + {A0C4383D-B0B0-492F-AEEE-CA1BC6E5B6D4}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {A0C4383D-B0B0-492F-AEEE-CA1BC6E5B6D4}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {A0C4383D-B0B0-492F-AEEE-CA1BC6E5B6D4}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {A0C4383D-B0B0-492F-AEEE-CA1BC6E5B6D4}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/src/libraries/System.Transactions.Local/ref/Configurations.props b/src/libraries/System.Transactions.Local/ref/Configurations.props index 89d6ac0f025b9..b6e0d3ce6383b 100644 --- a/src/libraries/System.Transactions.Local/ref/Configurations.props +++ b/src/libraries/System.Transactions.Local/ref/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Transactions.Local/ref/System.Transactions.Local.csproj b/src/libraries/System.Transactions.Local/ref/System.Transactions.Local.csproj index 5de24ad4a73be..8d14826b99a4d 100644 --- a/src/libraries/System.Transactions.Local/ref/System.Transactions.Local.csproj +++ b/src/libraries/System.Transactions.Local/ref/System.Transactions.Local.csproj @@ -1,7 +1,7 @@ Library - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release enable diff --git a/src/libraries/System.Transactions.Local/src/Configurations.props b/src/libraries/System.Transactions.Local/src/Configurations.props index a1eadd7648d83..d3947cd2aa838 100644 --- a/src/libraries/System.Transactions.Local/src/Configurations.props +++ b/src/libraries/System.Transactions.Local/src/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); diff --git a/src/libraries/System.Transactions.Local/src/System.Transactions.Local.csproj b/src/libraries/System.Transactions.Local/src/System.Transactions.Local.csproj index 6f8fdc1f6741a..f7e2bc109482e 100644 --- a/src/libraries/System.Transactions.Local/src/System.Transactions.Local.csproj +++ b/src/libraries/System.Transactions.Local/src/System.Transactions.Local.csproj @@ -2,7 +2,7 @@ true true - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release enable diff --git a/src/libraries/System.Transactions.Local/tests/Configurations.props b/src/libraries/System.Transactions.Local/tests/Configurations.props index 89d6ac0f025b9..b6e0d3ce6383b 100644 --- a/src/libraries/System.Transactions.Local/tests/Configurations.props +++ b/src/libraries/System.Transactions.Local/tests/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Transactions.Local/tests/System.Transactions.Local.Tests.csproj b/src/libraries/System.Transactions.Local/tests/System.Transactions.Local.Tests.csproj index 52f38a351296f..dd0126be4cd5d 100644 --- a/src/libraries/System.Transactions.Local/tests/System.Transactions.Local.Tests.csproj +++ b/src/libraries/System.Transactions.Local/tests/System.Transactions.Local.Tests.csproj @@ -2,7 +2,7 @@ false true - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release diff --git a/src/libraries/System.Utf8String.Experimental/System.Utf8String.Experimental.sln b/src/libraries/System.Utf8String.Experimental/System.Utf8String.Experimental.sln index a505334f7f3f6..971b1b55a1925 100644 --- a/src/libraries/System.Utf8String.Experimental/System.Utf8String.Experimental.sln +++ b/src/libraries/System.Utf8String.Experimental/System.Utf8String.Experimental.sln @@ -26,18 +26,18 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {72E9FB32-4692-4692-A10B-9F053F8F1A88}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {72E9FB32-4692-4692-A10B-9F053F8F1A88}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {72E9FB32-4692-4692-A10B-9F053F8F1A88}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {72E9FB32-4692-4692-A10B-9F053F8F1A88}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU - {D4266847-6692-481B-9459-6141DB7DA339}.Debug|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Debug|Any CPU - {D4266847-6692-481B-9459-6141DB7DA339}.Debug|Any CPU.Build.0 = netcoreapp-Windows_NT-Debug|Any CPU - {D4266847-6692-481B-9459-6141DB7DA339}.Release|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Release|Any CPU - {D4266847-6692-481B-9459-6141DB7DA339}.Release|Any CPU.Build.0 = netcoreapp-Windows_NT-Release|Any CPU - {7AF57E6B-2CED-45C9-8BCA-5BBA60D018E0}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {7AF57E6B-2CED-45C9-8BCA-5BBA60D018E0}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {7AF57E6B-2CED-45C9-8BCA-5BBA60D018E0}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {7AF57E6B-2CED-45C9-8BCA-5BBA60D018E0}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU + {72E9FB32-4692-4692-A10B-9F053F8F1A88}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {72E9FB32-4692-4692-A10B-9F053F8F1A88}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {72E9FB32-4692-4692-A10B-9F053F8F1A88}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {72E9FB32-4692-4692-A10B-9F053F8F1A88}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU + {D4266847-6692-481B-9459-6141DB7DA339}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Debug|Any CPU + {D4266847-6692-481B-9459-6141DB7DA339}.Debug|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Debug|Any CPU + {D4266847-6692-481B-9459-6141DB7DA339}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Release|Any CPU + {D4266847-6692-481B-9459-6141DB7DA339}.Release|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Release|Any CPU + {7AF57E6B-2CED-45C9-8BCA-5BBA60D018E0}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {7AF57E6B-2CED-45C9-8BCA-5BBA60D018E0}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {7AF57E6B-2CED-45C9-8BCA-5BBA60D018E0}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {7AF57E6B-2CED-45C9-8BCA-5BBA60D018E0}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/src/libraries/System.Utf8String.Experimental/ref/Configurations.props b/src/libraries/System.Utf8String.Experimental/ref/Configurations.props index d3ac8a63c74af..30f4e076b5d62 100644 --- a/src/libraries/System.Utf8String.Experimental/ref/Configurations.props +++ b/src/libraries/System.Utf8String.Experimental/ref/Configurations.props @@ -2,7 +2,7 @@ - netcoreapp; + $(NetCoreAppCurrent); diff --git a/src/libraries/System.Utf8String.Experimental/ref/System.Utf8String.Experimental.csproj b/src/libraries/System.Utf8String.Experimental/ref/System.Utf8String.Experimental.csproj index dfb8a3560860b..b0e3ee9b372e7 100644 --- a/src/libraries/System.Utf8String.Experimental/ref/System.Utf8String.Experimental.csproj +++ b/src/libraries/System.Utf8String.Experimental/ref/System.Utf8String.Experimental.csproj @@ -4,7 +4,7 @@ {7AF57E6B-2CED-45C9-8BCA-5BBA60D018E0} $(NoWarn);0809;0618 - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release enable diff --git a/src/libraries/System.Utf8String.Experimental/src/Configurations.props b/src/libraries/System.Utf8String.Experimental/src/Configurations.props index e75400d142ff6..51d6e90cb31de 100644 --- a/src/libraries/System.Utf8String.Experimental/src/Configurations.props +++ b/src/libraries/System.Utf8String.Experimental/src/Configurations.props @@ -2,8 +2,8 @@ - netcoreapp-Windows_NT; - netcoreapp-Unix; + $(NetCoreAppCurrent)-Windows_NT; + $(NetCoreAppCurrent)-Unix; diff --git a/src/libraries/System.Utf8String.Experimental/src/System.Utf8String.Experimental.csproj b/src/libraries/System.Utf8String.Experimental/src/System.Utf8String.Experimental.csproj index cf970305f491d..264d83ace5a88 100644 --- a/src/libraries/System.Utf8String.Experimental/src/System.Utf8String.Experimental.csproj +++ b/src/libraries/System.Utf8String.Experimental/src/System.Utf8String.Experimental.csproj @@ -2,7 +2,7 @@ true true - netcoreapp-Unix-Debug;netcoreapp-Unix-Release;netcoreapp-Windows_NT-Debug;netcoreapp-Windows_NT-Release + $(NetCoreAppCurrent)-Unix-Debug;$(NetCoreAppCurrent)-Unix-Release;$(NetCoreAppCurrent)-Windows_NT-Debug;$(NetCoreAppCurrent)-Windows_NT-Release System diff --git a/src/libraries/System.Utf8String.Experimental/tests/Configurations.props b/src/libraries/System.Utf8String.Experimental/tests/Configurations.props index a1eadd7648d83..d3947cd2aa838 100644 --- a/src/libraries/System.Utf8String.Experimental/tests/Configurations.props +++ b/src/libraries/System.Utf8String.Experimental/tests/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); diff --git a/src/libraries/System.Utf8String.Experimental/tests/System.Utf8String.Experimental.Tests.csproj b/src/libraries/System.Utf8String.Experimental/tests/System.Utf8String.Experimental.Tests.csproj index e21b2a32c7929..e64275293863b 100644 --- a/src/libraries/System.Utf8String.Experimental/tests/System.Utf8String.Experimental.Tests.csproj +++ b/src/libraries/System.Utf8String.Experimental/tests/System.Utf8String.Experimental.Tests.csproj @@ -2,7 +2,7 @@ true true - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release true true System diff --git a/src/libraries/System.ValueTuple/System.ValueTuple.sln b/src/libraries/System.ValueTuple/System.ValueTuple.sln index 104d520befab9..97550d09a3333 100644 --- a/src/libraries/System.ValueTuple/System.ValueTuple.sln +++ b/src/libraries/System.ValueTuple/System.ValueTuple.sln @@ -26,18 +26,18 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {CBD5AE8D-8595-48E2-848F-1A3492A28FDB}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {CBD5AE8D-8595-48E2-848F-1A3492A28FDB}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {CBD5AE8D-8595-48E2-848F-1A3492A28FDB}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {CBD5AE8D-8595-48E2-848F-1A3492A28FDB}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU - {4C2655DB-BD9E-4C86-83A6-744ECDDBDF29}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {4C2655DB-BD9E-4C86-83A6-744ECDDBDF29}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {4C2655DB-BD9E-4C86-83A6-744ECDDBDF29}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {4C2655DB-BD9E-4C86-83A6-744ECDDBDF29}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU - {11AE73F7-3532-47B9-8FF6-B4F22D76456D}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {11AE73F7-3532-47B9-8FF6-B4F22D76456D}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {11AE73F7-3532-47B9-8FF6-B4F22D76456D}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {11AE73F7-3532-47B9-8FF6-B4F22D76456D}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU + {CBD5AE8D-8595-48E2-848F-1A3492A28FDB}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {CBD5AE8D-8595-48E2-848F-1A3492A28FDB}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {CBD5AE8D-8595-48E2-848F-1A3492A28FDB}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {CBD5AE8D-8595-48E2-848F-1A3492A28FDB}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU + {4C2655DB-BD9E-4C86-83A6-744ECDDBDF29}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {4C2655DB-BD9E-4C86-83A6-744ECDDBDF29}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {4C2655DB-BD9E-4C86-83A6-744ECDDBDF29}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {4C2655DB-BD9E-4C86-83A6-744ECDDBDF29}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU + {11AE73F7-3532-47B9-8FF6-B4F22D76456D}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {11AE73F7-3532-47B9-8FF6-B4F22D76456D}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {11AE73F7-3532-47B9-8FF6-B4F22D76456D}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {11AE73F7-3532-47B9-8FF6-B4F22D76456D}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/src/libraries/System.ValueTuple/ref/Configurations.props b/src/libraries/System.ValueTuple/ref/Configurations.props index 0cec8e86aa818..856345061cc12 100644 --- a/src/libraries/System.ValueTuple/ref/Configurations.props +++ b/src/libraries/System.ValueTuple/ref/Configurations.props @@ -1,8 +1,8 @@  - netcoreapp; - _netfx; + $(NetCoreAppCurrent); + _$(NetFrameworkCurrent); diff --git a/src/libraries/System.ValueTuple/ref/System.ValueTuple.csproj b/src/libraries/System.ValueTuple/ref/System.ValueTuple.csproj index 9c694e80c86d6..98e6707596b3b 100644 --- a/src/libraries/System.ValueTuple/ref/System.ValueTuple.csproj +++ b/src/libraries/System.ValueTuple/ref/System.ValueTuple.csproj @@ -3,7 +3,7 @@ 4.0.3.0 - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release diff --git a/src/libraries/System.ValueTuple/src/Configurations.props b/src/libraries/System.ValueTuple/src/Configurations.props index 0cec8e86aa818..856345061cc12 100644 --- a/src/libraries/System.ValueTuple/src/Configurations.props +++ b/src/libraries/System.ValueTuple/src/Configurations.props @@ -1,8 +1,8 @@  - netcoreapp; - _netfx; + $(NetCoreAppCurrent); + _$(NetFrameworkCurrent); diff --git a/src/libraries/System.ValueTuple/src/System.ValueTuple.csproj b/src/libraries/System.ValueTuple/src/System.ValueTuple.csproj index f642ec59cbd9d..deda52d18dcff 100644 --- a/src/libraries/System.ValueTuple/src/System.ValueTuple.csproj +++ b/src/libraries/System.ValueTuple/src/System.ValueTuple.csproj @@ -2,7 +2,7 @@ true - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release diff --git a/src/libraries/System.ValueTuple/tests/Configurations.props b/src/libraries/System.ValueTuple/tests/Configurations.props index 89d6ac0f025b9..b6e0d3ce6383b 100644 --- a/src/libraries/System.ValueTuple/tests/Configurations.props +++ b/src/libraries/System.ValueTuple/tests/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.ValueTuple/tests/System.ValueTuple.Tests.csproj b/src/libraries/System.ValueTuple/tests/System.ValueTuple.Tests.csproj index a32940e08502f..b0f4e7f2b7e3d 100644 --- a/src/libraries/System.ValueTuple/tests/System.ValueTuple.Tests.csproj +++ b/src/libraries/System.ValueTuple/tests/System.ValueTuple.Tests.csproj @@ -1,6 +1,6 @@ - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release true diff --git a/src/libraries/System.Web.HttpUtility/System.Web.HttpUtility.sln b/src/libraries/System.Web.HttpUtility/System.Web.HttpUtility.sln index c59100b07f50f..0d0a18a3c4683 100644 --- a/src/libraries/System.Web.HttpUtility/System.Web.HttpUtility.sln +++ b/src/libraries/System.Web.HttpUtility/System.Web.HttpUtility.sln @@ -26,18 +26,18 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {914279EE-58B1-4B27-BA18-66D988C8DFFA}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {914279EE-58B1-4B27-BA18-66D988C8DFFA}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {914279EE-58B1-4B27-BA18-66D988C8DFFA}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {914279EE-58B1-4B27-BA18-66D988C8DFFA}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU - {CE959FC9-5E04-4F29-96B5-454BF3E76306}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {CE959FC9-5E04-4F29-96B5-454BF3E76306}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {CE959FC9-5E04-4F29-96B5-454BF3E76306}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {CE959FC9-5E04-4F29-96B5-454BF3E76306}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU - {CB57F978-2BA8-4BF3-A755-A032030974A0}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {CB57F978-2BA8-4BF3-A755-A032030974A0}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {CB57F978-2BA8-4BF3-A755-A032030974A0}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {CB57F978-2BA8-4BF3-A755-A032030974A0}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU + {914279EE-58B1-4B27-BA18-66D988C8DFFA}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {914279EE-58B1-4B27-BA18-66D988C8DFFA}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {914279EE-58B1-4B27-BA18-66D988C8DFFA}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {914279EE-58B1-4B27-BA18-66D988C8DFFA}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU + {CE959FC9-5E04-4F29-96B5-454BF3E76306}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {CE959FC9-5E04-4F29-96B5-454BF3E76306}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {CE959FC9-5E04-4F29-96B5-454BF3E76306}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {CE959FC9-5E04-4F29-96B5-454BF3E76306}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU + {CB57F978-2BA8-4BF3-A755-A032030974A0}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {CB57F978-2BA8-4BF3-A755-A032030974A0}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {CB57F978-2BA8-4BF3-A755-A032030974A0}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {CB57F978-2BA8-4BF3-A755-A032030974A0}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/src/libraries/System.Web.HttpUtility/ref/Configurations.props b/src/libraries/System.Web.HttpUtility/ref/Configurations.props index 89d6ac0f025b9..b6e0d3ce6383b 100644 --- a/src/libraries/System.Web.HttpUtility/ref/Configurations.props +++ b/src/libraries/System.Web.HttpUtility/ref/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Web.HttpUtility/ref/System.Web.HttpUtility.csproj b/src/libraries/System.Web.HttpUtility/ref/System.Web.HttpUtility.csproj index d7db5ef1cf09d..47e5c808ef875 100644 --- a/src/libraries/System.Web.HttpUtility/ref/System.Web.HttpUtility.csproj +++ b/src/libraries/System.Web.HttpUtility/ref/System.Web.HttpUtility.csproj @@ -1,7 +1,7 @@ enable - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release diff --git a/src/libraries/System.Web.HttpUtility/src/Configurations.props b/src/libraries/System.Web.HttpUtility/src/Configurations.props index a1eadd7648d83..d3947cd2aa838 100644 --- a/src/libraries/System.Web.HttpUtility/src/Configurations.props +++ b/src/libraries/System.Web.HttpUtility/src/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); diff --git a/src/libraries/System.Web.HttpUtility/src/System.Web.HttpUtility.csproj b/src/libraries/System.Web.HttpUtility/src/System.Web.HttpUtility.csproj index 3c92390128576..433eda4bd67d4 100644 --- a/src/libraries/System.Web.HttpUtility/src/System.Web.HttpUtility.csproj +++ b/src/libraries/System.Web.HttpUtility/src/System.Web.HttpUtility.csproj @@ -2,7 +2,7 @@ true enable - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release diff --git a/src/libraries/System.Web.HttpUtility/tests/Configurations.props b/src/libraries/System.Web.HttpUtility/tests/Configurations.props index 89d6ac0f025b9..b6e0d3ce6383b 100644 --- a/src/libraries/System.Web.HttpUtility/tests/Configurations.props +++ b/src/libraries/System.Web.HttpUtility/tests/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Web.HttpUtility/tests/System.Web.HttpUtility.Tests.csproj b/src/libraries/System.Web.HttpUtility/tests/System.Web.HttpUtility.Tests.csproj index fb3fe78f8931a..bd1c0761fc918 100644 --- a/src/libraries/System.Web.HttpUtility/tests/System.Web.HttpUtility.Tests.csproj +++ b/src/libraries/System.Web.HttpUtility/tests/System.Web.HttpUtility.Tests.csproj @@ -1,6 +1,6 @@ - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release diff --git a/src/libraries/System.Windows.Extensions/System.Windows.Extensions.sln b/src/libraries/System.Windows.Extensions/System.Windows.Extensions.sln index 2154828951908..7037f84639ced 100644 --- a/src/libraries/System.Windows.Extensions/System.Windows.Extensions.sln +++ b/src/libraries/System.Windows.Extensions/System.Windows.Extensions.sln @@ -26,18 +26,18 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {AC1A1515-70D8-42E4-9B19-A72F739E974C}.Debug|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Debug|Any CPU - {AC1A1515-70D8-42E4-9B19-A72F739E974C}.Debug|Any CPU.Build.0 = netcoreapp-Windows_NT-Debug|Any CPU - {AC1A1515-70D8-42E4-9B19-A72F739E974C}.Release|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Release|Any CPU - {AC1A1515-70D8-42E4-9B19-A72F739E974C}.Release|Any CPU.Build.0 = netcoreapp-Windows_NT-Release|Any CPU - {E0C4E267-B1D6-463B-9C95-8C0D3C335924}.Debug|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Debug|Any CPU - {E0C4E267-B1D6-463B-9C95-8C0D3C335924}.Debug|Any CPU.Build.0 = netcoreapp-Windows_NT-Debug|Any CPU - {E0C4E267-B1D6-463B-9C95-8C0D3C335924}.Release|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Release|Any CPU - {E0C4E267-B1D6-463B-9C95-8C0D3C335924}.Release|Any CPU.Build.0 = netcoreapp-Windows_NT-Release|Any CPU - {36A0298D-E01E-411D-A19B-19EEC60B9A8A}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {36A0298D-E01E-411D-A19B-19EEC60B9A8A}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {36A0298D-E01E-411D-A19B-19EEC60B9A8A}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {36A0298D-E01E-411D-A19B-19EEC60B9A8A}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU + {AC1A1515-70D8-42E4-9B19-A72F739E974C}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Debug|Any CPU + {AC1A1515-70D8-42E4-9B19-A72F739E974C}.Debug|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Debug|Any CPU + {AC1A1515-70D8-42E4-9B19-A72F739E974C}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Release|Any CPU + {AC1A1515-70D8-42E4-9B19-A72F739E974C}.Release|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Release|Any CPU + {E0C4E267-B1D6-463B-9C95-8C0D3C335924}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Debug|Any CPU + {E0C4E267-B1D6-463B-9C95-8C0D3C335924}.Debug|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Debug|Any CPU + {E0C4E267-B1D6-463B-9C95-8C0D3C335924}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Release|Any CPU + {E0C4E267-B1D6-463B-9C95-8C0D3C335924}.Release|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Release|Any CPU + {36A0298D-E01E-411D-A19B-19EEC60B9A8A}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {36A0298D-E01E-411D-A19B-19EEC60B9A8A}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {36A0298D-E01E-411D-A19B-19EEC60B9A8A}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {36A0298D-E01E-411D-A19B-19EEC60B9A8A}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/src/libraries/System.Windows.Extensions/ref/Configurations.props b/src/libraries/System.Windows.Extensions/ref/Configurations.props index c770647e9089e..6422650fb1448 100644 --- a/src/libraries/System.Windows.Extensions/ref/Configurations.props +++ b/src/libraries/System.Windows.Extensions/ref/Configurations.props @@ -5,7 +5,7 @@ $(PackageConfigurations); - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Windows.Extensions/ref/System.Windows.Extensions.csproj b/src/libraries/System.Windows.Extensions/ref/System.Windows.Extensions.csproj index 8ed3c740828bb..0b52217816e5f 100644 --- a/src/libraries/System.Windows.Extensions/ref/System.Windows.Extensions.csproj +++ b/src/libraries/System.Windows.Extensions/ref/System.Windows.Extensions.csproj @@ -1,11 +1,11 @@  - netcoreapp-Debug;netcoreapp-Release;netcoreapp3.0-Debug;netcoreapp3.0-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release;netcoreapp3.0-Debug;netcoreapp3.0-Release - + diff --git a/src/libraries/System.Windows.Extensions/src/Configurations.props b/src/libraries/System.Windows.Extensions/src/Configurations.props index b540fc1d4840d..ff49cc1add279 100644 --- a/src/libraries/System.Windows.Extensions/src/Configurations.props +++ b/src/libraries/System.Windows.Extensions/src/Configurations.props @@ -6,8 +6,8 @@ $(PackageConfigurations); - netcoreapp-Windows_NT; - netcoreapp; + $(NetCoreAppCurrent)-Windows_NT; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Windows.Extensions/src/System.Windows.Extensions.csproj b/src/libraries/System.Windows.Extensions/src/System.Windows.Extensions.csproj index 4231e6c0c462d..654a47c319f70 100644 --- a/src/libraries/System.Windows.Extensions/src/System.Windows.Extensions.csproj +++ b/src/libraries/System.Windows.Extensions/src/System.Windows.Extensions.csproj @@ -2,7 +2,7 @@ SR.PlatformNotSupported_System_Windows_Extensions true - netcoreapp-Debug;netcoreapp-Release;netcoreapp-Windows_NT-Debug;netcoreapp-Windows_NT-Release;netcoreapp3.0-Debug;netcoreapp3.0-Release;netcoreapp3.0-Windows_NT-Debug;netcoreapp3.0-Windows_NT-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release;$(NetCoreAppCurrent)-Windows_NT-Debug;$(NetCoreAppCurrent)-Windows_NT-Release;netcoreapp3.0-Debug;netcoreapp3.0-Release;netcoreapp3.0-Windows_NT-Debug;netcoreapp3.0-Windows_NT-Release diff --git a/src/libraries/System.Windows.Extensions/tests/Configurations.props b/src/libraries/System.Windows.Extensions/tests/Configurations.props index 92024058a2c68..f88c388a3fa96 100644 --- a/src/libraries/System.Windows.Extensions/tests/Configurations.props +++ b/src/libraries/System.Windows.Extensions/tests/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp-Windows_NT; + $(NetCoreAppCurrent)-Windows_NT; diff --git a/src/libraries/System.Windows.Extensions/tests/System.Windows.Extensions.Tests.csproj b/src/libraries/System.Windows.Extensions/tests/System.Windows.Extensions.Tests.csproj index 4d963641a705c..848c12a43bfbd 100644 --- a/src/libraries/System.Windows.Extensions/tests/System.Windows.Extensions.Tests.csproj +++ b/src/libraries/System.Windows.Extensions/tests/System.Windows.Extensions.Tests.csproj @@ -1,6 +1,6 @@  - netcoreapp-Windows_NT-Debug;netcoreapp-Windows_NT-Release + $(NetCoreAppCurrent)-Windows_NT-Debug;$(NetCoreAppCurrent)-Windows_NT-Release diff --git a/src/libraries/System.Xml.ReaderWriter/System.Xml.ReaderWriter.sln b/src/libraries/System.Xml.ReaderWriter/System.Xml.ReaderWriter.sln index 1e41c927390d3..8b448335b73c4 100644 --- a/src/libraries/System.Xml.ReaderWriter/System.Xml.ReaderWriter.sln +++ b/src/libraries/System.Xml.ReaderWriter/System.Xml.ReaderWriter.sln @@ -19,14 +19,14 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {C559743A-762E-4D9D-B986-E77BDB97652E}.Debug|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Debug|Any CPU - {C559743A-762E-4D9D-B986-E77BDB97652E}.Debug|Any CPU.Build.0 = netcoreapp-Windows_NT-Debug|Any CPU - {C559743A-762E-4D9D-B986-E77BDB97652E}.Release|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Release|Any CPU - {C559743A-762E-4D9D-B986-E77BDB97652E}.Release|Any CPU.Build.0 = netcoreapp-Windows_NT-Release|Any CPU - {6F785D18-A969-4DB9-AB45-DD294839087D}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {6F785D18-A969-4DB9-AB45-DD294839087D}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {6F785D18-A969-4DB9-AB45-DD294839087D}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {6F785D18-A969-4DB9-AB45-DD294839087D}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU + {C559743A-762E-4D9D-B986-E77BDB97652E}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Debug|Any CPU + {C559743A-762E-4D9D-B986-E77BDB97652E}.Debug|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Debug|Any CPU + {C559743A-762E-4D9D-B986-E77BDB97652E}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Release|Any CPU + {C559743A-762E-4D9D-B986-E77BDB97652E}.Release|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Release|Any CPU + {6F785D18-A969-4DB9-AB45-DD294839087D}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {6F785D18-A969-4DB9-AB45-DD294839087D}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {6F785D18-A969-4DB9-AB45-DD294839087D}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {6F785D18-A969-4DB9-AB45-DD294839087D}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/src/libraries/System.Xml.ReaderWriter/ref/Configurations.props b/src/libraries/System.Xml.ReaderWriter/ref/Configurations.props index 89d6ac0f025b9..b6e0d3ce6383b 100644 --- a/src/libraries/System.Xml.ReaderWriter/ref/Configurations.props +++ b/src/libraries/System.Xml.ReaderWriter/ref/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Xml.ReaderWriter/ref/System.Xml.ReaderWriter.csproj b/src/libraries/System.Xml.ReaderWriter/ref/System.Xml.ReaderWriter.csproj index a8e6877dcc776..c48991e0eb183 100644 --- a/src/libraries/System.Xml.ReaderWriter/ref/System.Xml.ReaderWriter.csproj +++ b/src/libraries/System.Xml.ReaderWriter/ref/System.Xml.ReaderWriter.csproj @@ -1,6 +1,6 @@ - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release diff --git a/src/libraries/System.Xml.ReaderWriter/src/Configurations.props b/src/libraries/System.Xml.ReaderWriter/src/Configurations.props index adabcc0290e8a..c10c0d25a71d5 100644 --- a/src/libraries/System.Xml.ReaderWriter/src/Configurations.props +++ b/src/libraries/System.Xml.ReaderWriter/src/Configurations.props @@ -1,8 +1,8 @@  - netcoreapp-Windows_NT; - netcoreapp-Unix; + $(NetCoreAppCurrent)-Windows_NT; + $(NetCoreAppCurrent)-Unix; diff --git a/src/libraries/System.Xml.ReaderWriter/src/System.Xml.ReaderWriter.csproj b/src/libraries/System.Xml.ReaderWriter/src/System.Xml.ReaderWriter.csproj index 34a553569dc0f..415f62a2ed5aa 100644 --- a/src/libraries/System.Xml.ReaderWriter/src/System.Xml.ReaderWriter.csproj +++ b/src/libraries/System.Xml.ReaderWriter/src/System.Xml.ReaderWriter.csproj @@ -3,7 +3,7 @@ System.Xml.ReaderWriter System.Xml true - netcoreapp-Unix-Debug;netcoreapp-Unix-Release;netcoreapp-Windows_NT-Debug;netcoreapp-Windows_NT-Release + $(NetCoreAppCurrent)-Unix-Debug;$(NetCoreAppCurrent)-Unix-Release;$(NetCoreAppCurrent)-Windows_NT-Debug;$(NetCoreAppCurrent)-Windows_NT-Release diff --git a/src/libraries/System.Xml.XDocument/System.Xml.XDocument.sln b/src/libraries/System.Xml.XDocument/System.Xml.XDocument.sln index 90a1d6c5ccd93..a23dcb8686d7c 100644 --- a/src/libraries/System.Xml.XDocument/System.Xml.XDocument.sln +++ b/src/libraries/System.Xml.XDocument/System.Xml.XDocument.sln @@ -19,14 +19,14 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {442C5A88-29C2-4B00-B1DF-730D646D3861}.Debug|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Debug|Any CPU - {442C5A88-29C2-4B00-B1DF-730D646D3861}.Debug|Any CPU.Build.0 = netcoreapp-Windows_NT-Debug|Any CPU - {442C5A88-29C2-4B00-B1DF-730D646D3861}.Release|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Release|Any CPU - {442C5A88-29C2-4B00-B1DF-730D646D3861}.Release|Any CPU.Build.0 = netcoreapp-Windows_NT-Release|Any CPU - {506A8ECB-E5B4-4F10-8419-26A0EC7AB225}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {506A8ECB-E5B4-4F10-8419-26A0EC7AB225}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {506A8ECB-E5B4-4F10-8419-26A0EC7AB225}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {506A8ECB-E5B4-4F10-8419-26A0EC7AB225}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU + {442C5A88-29C2-4B00-B1DF-730D646D3861}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Debug|Any CPU + {442C5A88-29C2-4B00-B1DF-730D646D3861}.Debug|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Debug|Any CPU + {442C5A88-29C2-4B00-B1DF-730D646D3861}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Release|Any CPU + {442C5A88-29C2-4B00-B1DF-730D646D3861}.Release|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Release|Any CPU + {506A8ECB-E5B4-4F10-8419-26A0EC7AB225}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {506A8ECB-E5B4-4F10-8419-26A0EC7AB225}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {506A8ECB-E5B4-4F10-8419-26A0EC7AB225}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {506A8ECB-E5B4-4F10-8419-26A0EC7AB225}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/src/libraries/System.Xml.XDocument/ref/Configurations.props b/src/libraries/System.Xml.XDocument/ref/Configurations.props index 89d6ac0f025b9..b6e0d3ce6383b 100644 --- a/src/libraries/System.Xml.XDocument/ref/Configurations.props +++ b/src/libraries/System.Xml.XDocument/ref/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Xml.XDocument/ref/System.Xml.XDocument.csproj b/src/libraries/System.Xml.XDocument/ref/System.Xml.XDocument.csproj index f3b24cd81183b..f53a51850841c 100644 --- a/src/libraries/System.Xml.XDocument/ref/System.Xml.XDocument.csproj +++ b/src/libraries/System.Xml.XDocument/ref/System.Xml.XDocument.csproj @@ -1,6 +1,6 @@ - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release diff --git a/src/libraries/System.Xml.XDocument/src/Configurations.props b/src/libraries/System.Xml.XDocument/src/Configurations.props index adabcc0290e8a..c10c0d25a71d5 100644 --- a/src/libraries/System.Xml.XDocument/src/Configurations.props +++ b/src/libraries/System.Xml.XDocument/src/Configurations.props @@ -1,8 +1,8 @@  - netcoreapp-Windows_NT; - netcoreapp-Unix; + $(NetCoreAppCurrent)-Windows_NT; + $(NetCoreAppCurrent)-Unix; diff --git a/src/libraries/System.Xml.XDocument/src/System.Xml.XDocument.csproj b/src/libraries/System.Xml.XDocument/src/System.Xml.XDocument.csproj index ea77a26da4b83..4df5c8ca1f857 100644 --- a/src/libraries/System.Xml.XDocument/src/System.Xml.XDocument.csproj +++ b/src/libraries/System.Xml.XDocument/src/System.Xml.XDocument.csproj @@ -3,7 +3,7 @@ System.Xml.XDocument System.Xml true - netcoreapp-Unix-Debug;netcoreapp-Unix-Release;netcoreapp-Windows_NT-Debug;netcoreapp-Windows_NT-Release + $(NetCoreAppCurrent)-Unix-Debug;$(NetCoreAppCurrent)-Unix-Release;$(NetCoreAppCurrent)-Windows_NT-Debug;$(NetCoreAppCurrent)-Windows_NT-Release diff --git a/src/libraries/System.Xml.XPath.XDocument/System.Xml.XPath.XDocument.sln b/src/libraries/System.Xml.XPath.XDocument/System.Xml.XPath.XDocument.sln index d2cc420fe4b66..0cc04ceb251ad 100644 --- a/src/libraries/System.Xml.XPath.XDocument/System.Xml.XPath.XDocument.sln +++ b/src/libraries/System.Xml.XPath.XDocument/System.Xml.XPath.XDocument.sln @@ -19,14 +19,14 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {DAA1EA56-C318-4D2E-AB8D-1AB87D9F98F5}.Debug|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Debug|Any CPU - {DAA1EA56-C318-4D2E-AB8D-1AB87D9F98F5}.Debug|Any CPU.Build.0 = netcoreapp-Windows_NT-Debug|Any CPU - {DAA1EA56-C318-4D2E-AB8D-1AB87D9F98F5}.Release|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Release|Any CPU - {DAA1EA56-C318-4D2E-AB8D-1AB87D9F98F5}.Release|Any CPU.Build.0 = netcoreapp-Windows_NT-Release|Any CPU - {F44BEAB4-EDDB-497B-B15C-11E8DFB94092}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {F44BEAB4-EDDB-497B-B15C-11E8DFB94092}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {F44BEAB4-EDDB-497B-B15C-11E8DFB94092}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {F44BEAB4-EDDB-497B-B15C-11E8DFB94092}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU + {DAA1EA56-C318-4D2E-AB8D-1AB87D9F98F5}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Debug|Any CPU + {DAA1EA56-C318-4D2E-AB8D-1AB87D9F98F5}.Debug|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Debug|Any CPU + {DAA1EA56-C318-4D2E-AB8D-1AB87D9F98F5}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Release|Any CPU + {DAA1EA56-C318-4D2E-AB8D-1AB87D9F98F5}.Release|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Release|Any CPU + {F44BEAB4-EDDB-497B-B15C-11E8DFB94092}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {F44BEAB4-EDDB-497B-B15C-11E8DFB94092}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {F44BEAB4-EDDB-497B-B15C-11E8DFB94092}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {F44BEAB4-EDDB-497B-B15C-11E8DFB94092}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/src/libraries/System.Xml.XPath.XDocument/ref/Configurations.props b/src/libraries/System.Xml.XPath.XDocument/ref/Configurations.props index 89d6ac0f025b9..b6e0d3ce6383b 100644 --- a/src/libraries/System.Xml.XPath.XDocument/ref/Configurations.props +++ b/src/libraries/System.Xml.XPath.XDocument/ref/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Xml.XPath.XDocument/ref/System.Xml.XPath.XDocument.csproj b/src/libraries/System.Xml.XPath.XDocument/ref/System.Xml.XPath.XDocument.csproj index 5ec56207c3fb1..3ebe4f67c1d47 100644 --- a/src/libraries/System.Xml.XPath.XDocument/ref/System.Xml.XPath.XDocument.csproj +++ b/src/libraries/System.Xml.XPath.XDocument/ref/System.Xml.XPath.XDocument.csproj @@ -1,6 +1,6 @@ - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release diff --git a/src/libraries/System.Xml.XPath.XDocument/src/Configurations.props b/src/libraries/System.Xml.XPath.XDocument/src/Configurations.props index adabcc0290e8a..c10c0d25a71d5 100644 --- a/src/libraries/System.Xml.XPath.XDocument/src/Configurations.props +++ b/src/libraries/System.Xml.XPath.XDocument/src/Configurations.props @@ -1,8 +1,8 @@  - netcoreapp-Windows_NT; - netcoreapp-Unix; + $(NetCoreAppCurrent)-Windows_NT; + $(NetCoreAppCurrent)-Unix; diff --git a/src/libraries/System.Xml.XPath.XDocument/src/System.Xml.XPath.XDocument.csproj b/src/libraries/System.Xml.XPath.XDocument/src/System.Xml.XPath.XDocument.csproj index 971bbaa9fdca7..c14d21b0a1757 100644 --- a/src/libraries/System.Xml.XPath.XDocument/src/System.Xml.XPath.XDocument.csproj +++ b/src/libraries/System.Xml.XPath.XDocument/src/System.Xml.XPath.XDocument.csproj @@ -3,7 +3,7 @@ System.Xml.XPath.XDocument true true - netcoreapp-Unix-Debug;netcoreapp-Unix-Release;netcoreapp-Windows_NT-Debug;netcoreapp-Windows_NT-Release + $(NetCoreAppCurrent)-Unix-Debug;$(NetCoreAppCurrent)-Unix-Release;$(NetCoreAppCurrent)-Windows_NT-Debug;$(NetCoreAppCurrent)-Windows_NT-Release diff --git a/src/libraries/System.Xml.XPath/System.Xml.XPath.sln b/src/libraries/System.Xml.XPath/System.Xml.XPath.sln index ed2ffa1beaa13..753c945cb22a2 100644 --- a/src/libraries/System.Xml.XPath/System.Xml.XPath.sln +++ b/src/libraries/System.Xml.XPath/System.Xml.XPath.sln @@ -19,14 +19,14 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {783F801D-50DE-45B1-B8BE-C36A1F5049F1}.Debug|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Debug|Any CPU - {783F801D-50DE-45B1-B8BE-C36A1F5049F1}.Debug|Any CPU.Build.0 = netcoreapp-Windows_NT-Debug|Any CPU - {783F801D-50DE-45B1-B8BE-C36A1F5049F1}.Release|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Release|Any CPU - {783F801D-50DE-45B1-B8BE-C36A1F5049F1}.Release|Any CPU.Build.0 = netcoreapp-Windows_NT-Release|Any CPU - {A3B3FF23-D123-4F5A-8618-5128B18987C5}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {A3B3FF23-D123-4F5A-8618-5128B18987C5}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {A3B3FF23-D123-4F5A-8618-5128B18987C5}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {A3B3FF23-D123-4F5A-8618-5128B18987C5}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU + {783F801D-50DE-45B1-B8BE-C36A1F5049F1}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Debug|Any CPU + {783F801D-50DE-45B1-B8BE-C36A1F5049F1}.Debug|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Debug|Any CPU + {783F801D-50DE-45B1-B8BE-C36A1F5049F1}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Release|Any CPU + {783F801D-50DE-45B1-B8BE-C36A1F5049F1}.Release|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Release|Any CPU + {A3B3FF23-D123-4F5A-8618-5128B18987C5}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {A3B3FF23-D123-4F5A-8618-5128B18987C5}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {A3B3FF23-D123-4F5A-8618-5128B18987C5}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {A3B3FF23-D123-4F5A-8618-5128B18987C5}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/src/libraries/System.Xml.XPath/ref/Configurations.props b/src/libraries/System.Xml.XPath/ref/Configurations.props index 89d6ac0f025b9..b6e0d3ce6383b 100644 --- a/src/libraries/System.Xml.XPath/ref/Configurations.props +++ b/src/libraries/System.Xml.XPath/ref/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Xml.XPath/ref/System.Xml.XPath.csproj b/src/libraries/System.Xml.XPath/ref/System.Xml.XPath.csproj index 7e73225c63ccb..f64892ff3612e 100644 --- a/src/libraries/System.Xml.XPath/ref/System.Xml.XPath.csproj +++ b/src/libraries/System.Xml.XPath/ref/System.Xml.XPath.csproj @@ -1,6 +1,6 @@ - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release diff --git a/src/libraries/System.Xml.XPath/src/Configurations.props b/src/libraries/System.Xml.XPath/src/Configurations.props index adabcc0290e8a..c10c0d25a71d5 100644 --- a/src/libraries/System.Xml.XPath/src/Configurations.props +++ b/src/libraries/System.Xml.XPath/src/Configurations.props @@ -1,8 +1,8 @@  - netcoreapp-Windows_NT; - netcoreapp-Unix; + $(NetCoreAppCurrent)-Windows_NT; + $(NetCoreAppCurrent)-Unix; diff --git a/src/libraries/System.Xml.XPath/src/System.Xml.XPath.csproj b/src/libraries/System.Xml.XPath/src/System.Xml.XPath.csproj index dfbcccebf0a2e..316e947bafc16 100644 --- a/src/libraries/System.Xml.XPath/src/System.Xml.XPath.csproj +++ b/src/libraries/System.Xml.XPath/src/System.Xml.XPath.csproj @@ -2,7 +2,7 @@ System.Xml.XPath true - netcoreapp-Unix-Debug;netcoreapp-Unix-Release;netcoreapp-Windows_NT-Debug;netcoreapp-Windows_NT-Release + $(NetCoreAppCurrent)-Unix-Debug;$(NetCoreAppCurrent)-Unix-Release;$(NetCoreAppCurrent)-Windows_NT-Debug;$(NetCoreAppCurrent)-Windows_NT-Release diff --git a/src/libraries/System.Xml.XmlDocument/System.Xml.XmlDocument.sln b/src/libraries/System.Xml.XmlDocument/System.Xml.XmlDocument.sln index b2af1420fd864..8581ab0b46d40 100644 --- a/src/libraries/System.Xml.XmlDocument/System.Xml.XmlDocument.sln +++ b/src/libraries/System.Xml.XmlDocument/System.Xml.XmlDocument.sln @@ -19,14 +19,14 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {EC0F9F33-3D4E-470A-90E6-AE9D005F023A}.Debug|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Debug|Any CPU - {EC0F9F33-3D4E-470A-90E6-AE9D005F023A}.Debug|Any CPU.Build.0 = netcoreapp-Windows_NT-Debug|Any CPU - {EC0F9F33-3D4E-470A-90E6-AE9D005F023A}.Release|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Release|Any CPU - {EC0F9F33-3D4E-470A-90E6-AE9D005F023A}.Release|Any CPU.Build.0 = netcoreapp-Windows_NT-Release|Any CPU - {DFF03D7C-82DF-4E4C-A722-2EFFD844DA7E}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {DFF03D7C-82DF-4E4C-A722-2EFFD844DA7E}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {DFF03D7C-82DF-4E4C-A722-2EFFD844DA7E}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {DFF03D7C-82DF-4E4C-A722-2EFFD844DA7E}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU + {EC0F9F33-3D4E-470A-90E6-AE9D005F023A}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Debug|Any CPU + {EC0F9F33-3D4E-470A-90E6-AE9D005F023A}.Debug|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Debug|Any CPU + {EC0F9F33-3D4E-470A-90E6-AE9D005F023A}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Release|Any CPU + {EC0F9F33-3D4E-470A-90E6-AE9D005F023A}.Release|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Release|Any CPU + {DFF03D7C-82DF-4E4C-A722-2EFFD844DA7E}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {DFF03D7C-82DF-4E4C-A722-2EFFD844DA7E}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {DFF03D7C-82DF-4E4C-A722-2EFFD844DA7E}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {DFF03D7C-82DF-4E4C-A722-2EFFD844DA7E}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/src/libraries/System.Xml.XmlDocument/ref/Configurations.props b/src/libraries/System.Xml.XmlDocument/ref/Configurations.props index 89d6ac0f025b9..b6e0d3ce6383b 100644 --- a/src/libraries/System.Xml.XmlDocument/ref/Configurations.props +++ b/src/libraries/System.Xml.XmlDocument/ref/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Xml.XmlDocument/ref/System.Xml.XmlDocument.csproj b/src/libraries/System.Xml.XmlDocument/ref/System.Xml.XmlDocument.csproj index a6a86c8de823f..3b48070e39c76 100644 --- a/src/libraries/System.Xml.XmlDocument/ref/System.Xml.XmlDocument.csproj +++ b/src/libraries/System.Xml.XmlDocument/ref/System.Xml.XmlDocument.csproj @@ -1,6 +1,6 @@ - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release diff --git a/src/libraries/System.Xml.XmlDocument/src/Configurations.props b/src/libraries/System.Xml.XmlDocument/src/Configurations.props index adabcc0290e8a..c10c0d25a71d5 100644 --- a/src/libraries/System.Xml.XmlDocument/src/Configurations.props +++ b/src/libraries/System.Xml.XmlDocument/src/Configurations.props @@ -1,8 +1,8 @@  - netcoreapp-Windows_NT; - netcoreapp-Unix; + $(NetCoreAppCurrent)-Windows_NT; + $(NetCoreAppCurrent)-Unix; diff --git a/src/libraries/System.Xml.XmlDocument/src/System.Xml.XmlDocument.csproj b/src/libraries/System.Xml.XmlDocument/src/System.Xml.XmlDocument.csproj index 4950e31dd6983..da02d2a5a46ac 100644 --- a/src/libraries/System.Xml.XmlDocument/src/System.Xml.XmlDocument.csproj +++ b/src/libraries/System.Xml.XmlDocument/src/System.Xml.XmlDocument.csproj @@ -4,7 +4,7 @@ System.Xml.XmlDocument true true - netcoreapp-Unix-Debug;netcoreapp-Unix-Release;netcoreapp-Windows_NT-Debug;netcoreapp-Windows_NT-Release + $(NetCoreAppCurrent)-Unix-Debug;$(NetCoreAppCurrent)-Unix-Release;$(NetCoreAppCurrent)-Windows_NT-Debug;$(NetCoreAppCurrent)-Windows_NT-Release diff --git a/src/libraries/System.Xml.XmlSerializer/System.Xml.XmlSerializer.sln b/src/libraries/System.Xml.XmlSerializer/System.Xml.XmlSerializer.sln index ee7a7acfb32d4..fbdd08ed25b28 100644 --- a/src/libraries/System.Xml.XmlSerializer/System.Xml.XmlSerializer.sln +++ b/src/libraries/System.Xml.XmlSerializer/System.Xml.XmlSerializer.sln @@ -19,14 +19,14 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {D62A6082-5229-4845-8BE9-75753E08C65A}.Debug|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Debug|Any CPU - {D62A6082-5229-4845-8BE9-75753E08C65A}.Debug|Any CPU.Build.0 = netcoreapp-Windows_NT-Debug|Any CPU - {D62A6082-5229-4845-8BE9-75753E08C65A}.Release|Any CPU.ActiveCfg = netcoreapp-Windows_NT-Release|Any CPU - {D62A6082-5229-4845-8BE9-75753E08C65A}.Release|Any CPU.Build.0 = netcoreapp-Windows_NT-Release|Any CPU - {3F7C5D50-7CDA-44EF-BB05-912D496BAA46}.Debug|Any CPU.ActiveCfg = netcoreapp-Debug|Any CPU - {3F7C5D50-7CDA-44EF-BB05-912D496BAA46}.Debug|Any CPU.Build.0 = netcoreapp-Debug|Any CPU - {3F7C5D50-7CDA-44EF-BB05-912D496BAA46}.Release|Any CPU.ActiveCfg = netcoreapp-Release|Any CPU - {3F7C5D50-7CDA-44EF-BB05-912D496BAA46}.Release|Any CPU.Build.0 = netcoreapp-Release|Any CPU + {D62A6082-5229-4845-8BE9-75753E08C65A}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Debug|Any CPU + {D62A6082-5229-4845-8BE9-75753E08C65A}.Debug|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Debug|Any CPU + {D62A6082-5229-4845-8BE9-75753E08C65A}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Windows_NT-Release|Any CPU + {D62A6082-5229-4845-8BE9-75753E08C65A}.Release|Any CPU.Build.0 = netcoreapp5.0-Windows_NT-Release|Any CPU + {3F7C5D50-7CDA-44EF-BB05-912D496BAA46}.Debug|Any CPU.ActiveCfg = netcoreapp5.0-Debug|Any CPU + {3F7C5D50-7CDA-44EF-BB05-912D496BAA46}.Debug|Any CPU.Build.0 = netcoreapp5.0-Debug|Any CPU + {3F7C5D50-7CDA-44EF-BB05-912D496BAA46}.Release|Any CPU.ActiveCfg = netcoreapp5.0-Release|Any CPU + {3F7C5D50-7CDA-44EF-BB05-912D496BAA46}.Release|Any CPU.Build.0 = netcoreapp5.0-Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/src/libraries/System.Xml.XmlSerializer/ref/Configurations.props b/src/libraries/System.Xml.XmlSerializer/ref/Configurations.props index 89d6ac0f025b9..b6e0d3ce6383b 100644 --- a/src/libraries/System.Xml.XmlSerializer/ref/Configurations.props +++ b/src/libraries/System.Xml.XmlSerializer/ref/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/System.Xml.XmlSerializer/ref/System.Xml.XmlSerializer.csproj b/src/libraries/System.Xml.XmlSerializer/ref/System.Xml.XmlSerializer.csproj index 1bc1a27dd0323..5c0c924f7583c 100644 --- a/src/libraries/System.Xml.XmlSerializer/ref/System.Xml.XmlSerializer.csproj +++ b/src/libraries/System.Xml.XmlSerializer/ref/System.Xml.XmlSerializer.csproj @@ -1,6 +1,6 @@ - netcoreapp-Debug;netcoreapp-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release diff --git a/src/libraries/System.Xml.XmlSerializer/src/Configurations.props b/src/libraries/System.Xml.XmlSerializer/src/Configurations.props index adabcc0290e8a..c10c0d25a71d5 100644 --- a/src/libraries/System.Xml.XmlSerializer/src/Configurations.props +++ b/src/libraries/System.Xml.XmlSerializer/src/Configurations.props @@ -1,8 +1,8 @@  - netcoreapp-Windows_NT; - netcoreapp-Unix; + $(NetCoreAppCurrent)-Windows_NT; + $(NetCoreAppCurrent)-Unix; diff --git a/src/libraries/System.Xml.XmlSerializer/src/System.Xml.XmlSerializer.csproj b/src/libraries/System.Xml.XmlSerializer/src/System.Xml.XmlSerializer.csproj index 6ecbaada741e6..150baa6fa454a 100644 --- a/src/libraries/System.Xml.XmlSerializer/src/System.Xml.XmlSerializer.csproj +++ b/src/libraries/System.Xml.XmlSerializer/src/System.Xml.XmlSerializer.csproj @@ -3,7 +3,7 @@ System.Xml.XmlSerializer System.Xml.XmlSerializer true - netcoreapp-Unix-Debug;netcoreapp-Unix-Release;netcoreapp-Windows_NT-Debug;netcoreapp-Windows_NT-Release + $(NetCoreAppCurrent)-Unix-Debug;$(NetCoreAppCurrent)-Unix-Release;$(NetCoreAppCurrent)-Windows_NT-Debug;$(NetCoreAppCurrent)-Windows_NT-Release diff --git a/src/libraries/mscorlib.WinRT-Facade/ref/Configurations.props b/src/libraries/mscorlib.WinRT-Facade/ref/Configurations.props index 7ad541b5de0f0..06c4db0b6fb66 100644 --- a/src/libraries/mscorlib.WinRT-Facade/ref/Configurations.props +++ b/src/libraries/mscorlib.WinRT-Facade/ref/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); netstandard2.0; netstandard1.0; diff --git a/src/libraries/mscorlib.WinRT-Facade/ref/mscorlib.WinRT-Facade.csproj b/src/libraries/mscorlib.WinRT-Facade/ref/mscorlib.WinRT-Facade.csproj index 69924fac78cc1..de5ea4b335fe6 100644 --- a/src/libraries/mscorlib.WinRT-Facade/ref/mscorlib.WinRT-Facade.csproj +++ b/src/libraries/mscorlib.WinRT-Facade/ref/mscorlib.WinRT-Facade.csproj @@ -6,7 +6,7 @@ false - netcoreapp-Debug;netcoreapp-Release;netstandard2.0-Debug;netstandard2.0-Release;netstandard1.0-Debug;netstandard1.0-Release + $(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release;netstandard2.0-Debug;netstandard2.0-Release;netstandard1.0-Debug;netstandard1.0-Release diff --git a/src/libraries/pkg/Microsoft.Private.CoreFx.NETCoreApp/Configurations.props b/src/libraries/pkg/Microsoft.Private.CoreFx.NETCoreApp/Configurations.props index 19236e72c58fb..b79c1d7c3d9a0 100644 --- a/src/libraries/pkg/Microsoft.Private.CoreFx.NETCoreApp/Configurations.props +++ b/src/libraries/pkg/Microsoft.Private.CoreFx.NETCoreApp/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); diff --git a/src/libraries/pkg/Microsoft.Private.CoreFx.NETCoreApp/Microsoft.Private.CoreFx.NETCoreApp.builds b/src/libraries/pkg/Microsoft.Private.CoreFx.NETCoreApp/Microsoft.Private.CoreFx.NETCoreApp.builds index 6b4709c624250..c2a1c33d86f4d 100644 --- a/src/libraries/pkg/Microsoft.Private.CoreFx.NETCoreApp/Microsoft.Private.CoreFx.NETCoreApp.builds +++ b/src/libraries/pkg/Microsoft.Private.CoreFx.NETCoreApp/Microsoft.Private.CoreFx.NETCoreApp.builds @@ -3,7 +3,7 @@ - + diff --git a/src/libraries/pkg/Microsoft.Windows.Compatibility/tests/publishcompatibilityassets.ps1 b/src/libraries/pkg/Microsoft.Windows.Compatibility/tests/publishcompatibilityassets.ps1 index 56e5f1451e89a..5752a6928aab3 100644 --- a/src/libraries/pkg/Microsoft.Windows.Compatibility/tests/publishcompatibilityassets.ps1 +++ b/src/libraries/pkg/Microsoft.Windows.Compatibility/tests/publishcompatibilityassets.ps1 @@ -35,7 +35,7 @@ $dotnetPath = -join($repoRoot, "\.dotnet\dotnet.exe") $csprojPath = -join($PSScriptRoot, "\", (Get-ChildItem $PSScriptRoot"\*.csproj" | Select-Object -ExpandProperty Name)) $packagesCachePath = -join($repoRoot, "\packages") $localPackageSourcePath = -join($repoRoot, "\artifacts\packages\Debug\") -$targetFramework = -join("netcoreapp", $frameworkVersion) +$targetFramework = -join("netcoreapp5.0", $frameworkVersion) if (!(Test-Path $localPackageSourcePath)) { diff --git a/src/libraries/pkg/runtime.native.System.IO.Ports/Configurations.props b/src/libraries/pkg/runtime.native.System.IO.Ports/Configurations.props index 19236e72c58fb..b79c1d7c3d9a0 100644 --- a/src/libraries/pkg/runtime.native.System.IO.Ports/Configurations.props +++ b/src/libraries/pkg/runtime.native.System.IO.Ports/Configurations.props @@ -1,7 +1,7 @@  - netcoreapp; + $(NetCoreAppCurrent); diff --git a/src/libraries/pkg/runtime.native.System.IO.Ports/runtime.native.System.IO.Ports.builds b/src/libraries/pkg/runtime.native.System.IO.Ports/runtime.native.System.IO.Ports.builds index 6b4709c624250..c2a1c33d86f4d 100644 --- a/src/libraries/pkg/runtime.native.System.IO.Ports/runtime.native.System.IO.Ports.builds +++ b/src/libraries/pkg/runtime.native.System.IO.Ports/runtime.native.System.IO.Ports.builds @@ -3,7 +3,7 @@ - + diff --git a/src/libraries/pkg/test/testPackages.proj b/src/libraries/pkg/test/testPackages.proj index 6db7b5fbb7f24..0c68bde372970 100644 --- a/src/libraries/pkg/test/testPackages.proj +++ b/src/libraries/pkg/test/testPackages.proj @@ -22,7 +22,6 @@ - diff --git a/src/libraries/restore/binplacePackages/Configurations.props b/src/libraries/restore/binplacePackages/Configurations.props index 8c2ad7f67151e..a8698aee0c979 100644 --- a/src/libraries/restore/binplacePackages/Configurations.props +++ b/src/libraries/restore/binplacePackages/Configurations.props @@ -2,7 +2,7 @@ net461; - netfx; + $(NetFrameworkCurrent); netstandard1.1; netstandard1.2; netstandard1.3; @@ -13,7 +13,7 @@ netstandard2.0; netcoreapp2.0; netcoreapp3.0; - netcoreapp; + $(NetCoreAppCurrent); diff --git a/src/libraries/restore/binplacePackages/binplacePackages.depproj b/src/libraries/restore/binplacePackages/binplacePackages.depproj index 9535d89cecbb8..75a5ccee654ca 100644 --- a/src/libraries/restore/binplacePackages/binplacePackages.depproj +++ b/src/libraries/restore/binplacePackages/binplacePackages.depproj @@ -27,7 +27,7 @@ - + diff --git a/src/libraries/restore/netfx/Configurations.props b/src/libraries/restore/netfx/Configurations.props index 490a182fc8cd9..3a9d8d6635b3a 100644 --- a/src/libraries/restore/netfx/Configurations.props +++ b/src/libraries/restore/netfx/Configurations.props @@ -9,8 +9,8 @@ net462; net47; net471; - netfx; - netcoreapp; + $(NetFrameworkCurrent); + $(NetCoreAppCurrent); diff --git a/src/libraries/restore/netfx/netfx.depproj b/src/libraries/restore/netfx/netfx.depproj index 074c063ff43da..ef40cbe587aa8 100644 --- a/src/libraries/restore/netfx/netfx.depproj +++ b/src/libraries/restore/netfx/netfx.depproj @@ -11,7 +11,7 @@ - net472 + $(NetFrameworkCurrent) $(NoWarn);NU1701 Microsoft.TargetingPack.NETFramework.v4.7.2 @@ -40,7 +40,7 @@ 4.5.2 - + 4.5.0 diff --git a/src/libraries/restore/runtime/Configurations.props b/src/libraries/restore/runtime/Configurations.props index 2763918bc10ff..1a98ff9b6e0a1 100644 --- a/src/libraries/restore/runtime/Configurations.props +++ b/src/libraries/restore/runtime/Configurations.props @@ -3,8 +3,8 @@ netcoreapp3.0-Windows_NT; netcoreapp3.0-Unix; - netcoreapp-Windows_NT; - netcoreapp-Unix; + $(NetCoreAppCurrent)-Windows_NT; + $(NetCoreAppCurrent)-Unix; mono; diff --git a/src/libraries/restore/winrt/Configurations.props b/src/libraries/restore/winrt/Configurations.props index d7ebc9bbcedfa..7c50d5cb9392e 100644 --- a/src/libraries/restore/winrt/Configurations.props +++ b/src/libraries/restore/winrt/Configurations.props @@ -2,7 +2,7 @@ netcoreapp3.0; - netcoreapp; + $(NetCoreAppCurrent); netstandard1.0; diff --git a/src/libraries/shims/ApiCompat.proj b/src/libraries/shims/ApiCompat.proj index 6f5a401576e49..b4e732ed11f08 100644 --- a/src/libraries/shims/ApiCompat.proj +++ b/src/libraries/shims/ApiCompat.proj @@ -3,11 +3,13 @@ + $(TargetGroup) + netcoreapp $(IntermediateOutputPath)/apicompat.rsp - $(MSBuildThisFileDirectory)ApiCompatBaseline.$(TargetGroup).netfx461.txt - $(MSBuildThisFileDirectory)ApiCompatBaseline.$(TargetGroup).netfx461.ignore.txt - $(MSBuildThisFileDirectory)ApiCompatBaseline.$(TargetGroup).netstandard.txt - $(MSBuildThisFileDirectory)ApiCompatBaseline.$(TargetGroup).netstandardOnly.txt + $(MSBuildThisFileDirectory)ApiCompatBaseline.$(ApiCompatTarget).netfx461.txt + $(MSBuildThisFileDirectory)ApiCompatBaseline.$(ApiCompatTarget).netfx461.ignore.txt + $(MSBuildThisFileDirectory)ApiCompatBaseline.$(ApiCompatTarget).netstandard.txt + $(MSBuildThisFileDirectory)ApiCompatBaseline.$(ApiCompatTarget).netstandardOnly.txt $(RefPath.TrimEnd('\/')) false @@ -38,7 +40,7 @@ - + - + diff --git a/src/libraries/shims/ApiCompatBaseline.netcoreapp.netfx461.ignore.txt b/src/libraries/shims/ApiCompatBaseline.netcoreapp.netfx461.ignore.txt index 216d95eac181d..32abe286f9e82 100644 --- a/src/libraries/shims/ApiCompatBaseline.netcoreapp.netfx461.ignore.txt +++ b/src/libraries/shims/ApiCompatBaseline.netcoreapp.netfx461.ignore.txt @@ -49,7 +49,7 @@ MembersMustExist : Member 'System.AppDomain.SetupInformation.get()' does not exi // SetAccessControl in FileStream not going to be implemented in netcore20 as no ACL support: MembersMustExist : Member 'System.IO.FileStream.SetAccessControl(System.Security.AccessControl.FileSecurity)' does not exist in the implementation but it does exist in the contract. -// StackTrace ctor deprecated in netfx and won't be implemented in any netcoreapp versions: +// StackTrace ctor deprecated in net472 and won't be implemented in any netcoreapp versions: MembersMustExist : Member 'System.Diagnostics.StackTrace..ctor(System.Threading.Thread, System.Boolean)' does not exist in the implementation but it does exist in the contract. // Dan said there is a reason for those in System.Resrouces to ignore: diff --git a/src/libraries/shims/Configurations.props b/src/libraries/shims/Configurations.props index beb53a974e680..c50114dc4221a 100644 --- a/src/libraries/shims/Configurations.props +++ b/src/libraries/shims/Configurations.props @@ -1,7 +1,7 @@ - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/shims/Directory.Build.props b/src/libraries/shims/Directory.Build.props index d496b6b11b83c..8f605de7d6755 100644 --- a/src/libraries/shims/Directory.Build.props +++ b/src/libraries/shims/Directory.Build.props @@ -3,7 +3,7 @@ $(BuildConfigurations); - netcoreapp;; + $(NetCoreAppCurrent); diff --git a/src/libraries/shims/generated/Configurations.props b/src/libraries/shims/generated/Configurations.props index beb53a974e680..c50114dc4221a 100644 --- a/src/libraries/shims/generated/Configurations.props +++ b/src/libraries/shims/generated/Configurations.props @@ -1,7 +1,7 @@ - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file diff --git a/src/libraries/shims/manual/Configurations.props b/src/libraries/shims/manual/Configurations.props index beb53a974e680..c50114dc4221a 100644 --- a/src/libraries/shims/manual/Configurations.props +++ b/src/libraries/shims/manual/Configurations.props @@ -1,7 +1,7 @@ - netcoreapp; + $(NetCoreAppCurrent); \ No newline at end of file