diff --git a/Directory.Build.props b/Directory.Build.props
index 6c65af67d082d6..274f7931f37f03 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 b080fbefd8e4c2..39b14d468263e6 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 9f1cf4ef12f6a5..30813d23b6e27d 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 06a6dc67625018..5954ae39a0c003 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 924122b0e97e47..640a08821fb05b 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 63d8d1b1a20490..9065ac61308d5c 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 ddfa9676fceb84..710dfed04fcf6f 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 9e637df82a2847..ab1430a4614b93 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 9d362c93b1b2aa..f64d3894770427 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 a5495473c6c2ed..4382aa1fbfe4ec 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 1dad96057c14e3..1ff22dc52b52c7 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 febf1b42271aee..45269df7299e69 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 1ffe42339eae26..9d617612ab4ab8 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 1c0ceb0002ac40..f8d083e8f7a729 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 7538cfb5a8686b..4d7a02a5508f2e 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 4c2d9873e866bc..1a9d2d1e93c1b8 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 a5b5f02725fb94..a3d6b723615e91 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 2467b2eebca5af..990bf45ee28fd8 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 89d6ac0f025b98..b6e0d3ce6383ba 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 a64f644605f223..0ab1de296fcc91 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 14b00bc14afcbc..6129cb657d702c 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 6536d32bc16d5c..533f8bd0684d3d 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 f03803bb449e4f..954aefa51864cd 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 a5f5bb4d3352b3..781348267d404a 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 7538cfb5a8686b..4d7a02a5508f2e 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 ee89be8424a46f..084f226d301a27 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 1a037adc3e7c1d..f550cb30c4afd5 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 ad74aafa26ce90..527b447d123247 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 7881d222f85cfa..3643978c2cbc1b 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 55d2de1d23f8de..7ac45c966c4562 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 d695ab05b3a1c3..10c6e91cc5f725 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 1c0ceb0002ac40..f8d083e8f7a729 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 b4812782c598a0..4752a85954c0cd 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 55d2de1d23f8de..7ac45c966c4562 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 e2b8924bdb30e6..0a6049f1fee9e2 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 4dd1ded06247f0..5fb6f9de4cce74 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 c920a6563d85c4..60697bb573dff8 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 84535b9c6ad97e..5ddefaf36be4c5 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 cd4cc29ce49f2b..cd93747f928891 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 c02555416be0d1..19a854e168b462 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 c84dc3ce914adc..372831019a146e 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 afb36759a1e435..fb56e6625ddbbc 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 9c3c1e24b68801..942fce4182b344 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 e34056edb775c5..b4029b347f0a27 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 e5e8504061268b..6635a0ec0441e9 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 6c06203eb1351a..b1d54aae17ecbc 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 a837c0ae03e9c9..a346f691677a8c 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 d2b1d4d5d86138..d4f49616fbdcb7 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 df9f549f652dbe..bd6bee2da80ef6 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 50e94719c123a5..2fc4b5a00974cd 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 e34056edb775c5..b4029b347f0a27 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 dcc0e51974bd6b..5617adad535e4a 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 cbb889b978fd45..0860f3358eeb4c 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 7b55806b4c31b6..6538e6b9b94845 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 d2b1d4d5d86138..d4f49616fbdcb7 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 59df61485f1bf4..842ef8d8a98129 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 6e25f32593d4f0..1f9875970efe2d 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 55d2de1d23f8de..7ac45c966c4562 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 adbab7f1425e89..cb7d029fd04c80 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 dac523ba033019..831252e5ac1d62 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 08260a62a56cd9..5f6ec6aedee12f 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 55d2de1d23f8de..7ac45c966c4562 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 8e05a9ff317a9f..7ba345bfdd3205 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 db389259c06b14..f3922475141ae6 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 333ca55fcbf010..09c8bddfea2b1a 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 55d2de1d23f8de..7ac45c966c4562 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 6612f46f794f4a..2a150e88c9c857 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 ba69f7767b7467..b0ccaed92ba121 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 d0b1b2ca247a24..698e5953865742 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 60ccf4e84aff3f..fdc1f6745dee96 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 db389259c06b14..f3922475141ae6 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 75809ecd80f657..19bd595f254644 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 55d2de1d23f8de..7ac45c966c4562 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 47b09363a9b190..64054d1e4d86c0 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 7086ed9cc106be..d0310d01fdafe1 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 d8e7a6702bdf4f..642fe102f819e1 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 f2aebe0c6d600b..df45b996a24990 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 d8e7a6702bdf4f..642fe102f819e1 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 30b119cbb51884..07b67446bf6ad6 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 1a037adc3e7c1d..f550cb30c4afd5 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 02982a326cff37..a9bc05085764e5 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 5d763bd6b79bb3..ffde557e53bef7 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 55d2de1d23f8de..7ac45c966c4562 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 336960844f951b..6df9076883b491 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 7e12b46ca40c5f..c31cf2a4495cf2 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 32cb2f862f7ca8..3930e7e4a60917 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 55d2de1d23f8de..7ac45c966c4562 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 e3ee4fed734186..4d6d1444f040a2 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 12d6f8798e2cb0..a49fe78cc18bf0 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 620ac6f1f9893f..92c9ce3a643ba9 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 17dfed13868c21..18c3b30a75dd35 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 620ac6f1f9893f..92c9ce3a643ba9 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 50428abeb1b2a6..cc52892bb490f6 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 1a037adc3e7c1d..f550cb30c4afd5 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 4557b10fdb6a43..417af2ef06b3e7 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 896dd8a930de1d..d4430cbf0a6c17 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 55d2de1d23f8de..7ac45c966c4562 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 98c169a26dd159..51e5556eab84e7 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 55d2de1d23f8de..7ac45c966c4562 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 1c44bee0f02a7a..9cf8eedb1e91a3 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 55d2de1d23f8de..7ac45c966c4562 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 34b62bb548a48b..d0a568db43db38 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 fe2a4309d1cdd0..25d97afcca562a 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 55d2de1d23f8de..7ac45c966c4562 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 6ed79be21f5afb..7c6ca9323672af 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 55d2de1d23f8de..7ac45c966c4562 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 84ecdd0cf438a8..2890f5e29fd590 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 55d2de1d23f8de..7ac45c966c4562 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 53a747bf40f353..d7530aac72bbf3 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 c71e69246d53c9..9834d1d260127a 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 55d2de1d23f8de..7ac45c966c4562 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 e3e894606eb615..85054983a9bf10 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 db389259c06b14..f3922475141ae6 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 d3037f004bd5ef..8509e28105b426 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 55d2de1d23f8de..7ac45c966c4562 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 8b80191cfa2454..933bd437f10a08 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 cd86ad818c9507..eb4b75e1dfb715 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 1a037adc3e7c1d..f550cb30c4afd5 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 9f645e70e5e3e1..8fe3a069246d76 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 4715f9a3f03b47..c2e62e74257af6 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 19236e72c58fb4..b79c1d7c3d9a0b 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 1521c75b0fc299..2e6eb27398f99a 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 6cfffaaa2ce3e8..88db40ebcc4292 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 b1a453087dc503..d196aebf0851fa 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 0e7cb0ffa7da7f..b44f08eaa24eae 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 cb788f627cbbee..f7067b40ec7da4 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 19236e72c58fb4..b79c1d7c3d9a0b 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 dd775fc337b358..45cf78a7b3bdb6 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 3e6a0f0a58068f..7588fef3659148 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 55d2de1d23f8de..7ac45c966c4562 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 6a82f1e4810efa..f324fc50417301 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 55d2de1d23f8de..7ac45c966c4562 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 0faacb21f92611..4c6a483bf153e8 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 55d2de1d23f8de..7ac45c966c4562 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 2c5fce355affde..39dd7da60a3fac 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 0bbb97c4b9b223..404c31e55bb777 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 55d2de1d23f8de..7ac45c966c4562 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 d25ef11a03ff3a..5d5a6232200d39 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 55d2de1d23f8de..7ac45c966c4562 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 3d68cde78c8f0f..ee162e6f4bc742 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 55d2de1d23f8de..7ac45c966c4562 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 1c4530106d2475..345103092ed928 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 fdb868b87691dc..4bafb9a8521dd5 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 55d2de1d23f8de..7ac45c966c4562 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 117bdb958c80ea..ffe9dc549d5a01 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 55d2de1d23f8de..7ac45c966c4562 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 40f1406d18a27e..c8051d2b794b57 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 55d2de1d23f8de..7ac45c966c4562 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 528e6fcec4ba41..bc6b77370d4bcf 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 b2d5a09583d0cc..f6ddbf600179a9 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 55d2de1d23f8de..7ac45c966c4562 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 94a559fb453e5d..ccb7d78735ff71 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 55d2de1d23f8de..7ac45c966c4562 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 91315fdebfcb1d..3062041f6ad6f1 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 55d2de1d23f8de..7ac45c966c4562 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 18781532650f9c..d707f04894c717 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 a21e9135e91545..5337520c72e3a4 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 1a037adc3e7c1d..f550cb30c4afd5 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 6ba40ebdc5d764..fba0fa2c4c49d9 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 a3a2e09972ce4e..046974277b6dcd 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 1a037adc3e7c1d..f550cb30c4afd5 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 77f14be4fb9481..a100e22dcf7d07 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 cac2e9590a69ed..cbb90d854a5a13 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 1a037adc3e7c1d..f550cb30c4afd5 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 9ee5dd12b7e28f..0223b49a205a3f 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 de735fda9c4c74..167a473f026b8a 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 1a037adc3e7c1d..f550cb30c4afd5 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 5aa5025a26dd4b..383eed487675d3 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 f8b6e6abdd4a63..c57ae5c24821c5 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 1a037adc3e7c1d..f550cb30c4afd5 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 62f54c3cef081e..efa5d48173de0c 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 551252f6455ec9..e6ffbae2173ed7 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 1a037adc3e7c1d..f550cb30c4afd5 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 b8f9c7c7ebc1a4..85b172f5b0d384 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 84ebd7611e0975..ee6b65aced5fa8 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 b4925fb60b67f1..0dac4d73f4a20e 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 4ad85e43a78de6..39ae1bb065a498 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 9ec640e9d20f41..84807793befbea 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 48b30e99cedfd4..7acf1a93825f73 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 4eaa8e632f7a7b..61dd6d50aeccc1 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 f0efd58710abbd..d3560c99cb9596 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 bb1d6dcf2dbbf6..272951dc2dd2ac 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 55d2de1d23f8de..7ac45c966c4562 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 84284f03531833..cf496de3a4371c 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 1c0ceb0002ac40..f8d083e8f7a729 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 bff20b24718a06..c539c594bd36e5 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 2076da5c28fd9c..4614c37cf0f251 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 e576e0b2941d64..07b9eddfe97083 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 a6a1c30e25c647..c85dfbd755bf77 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 55d2de1d23f8de..7ac45c966c4562 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 c50b085cca7373..09f3d8b0c043d2 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 55d2de1d23f8de..7ac45c966c4562 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 418b062d163b1b..ae8deb1e7582eb 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 55d2de1d23f8de..7ac45c966c4562 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 77548d0813b6de..ada40ba7edd0d2 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 9ed643e9b3ad93..04e4b235efd080 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 55d2de1d23f8de..7ac45c966c4562 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 9c1d0f7d637a32..2cd636b2265f50 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 55d2de1d23f8de..7ac45c966c4562 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 88a77492311778..5271a90384a371 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 55d2de1d23f8de..7ac45c966c4562 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 b8013d066eb926..ab9920f017b214 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 33ee95d97e3c37..3212fdb3ddd458 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 e34056edb775c5..b4029b347f0a27 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 901ffa53458c7a..5c4a834b6d4f02 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 27e8e5bfba8391..f61ae46c039b26 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 9bc9bf03074e6b..804d1ccd5c9c94 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 b45ea690139745..9113a4ee995d19 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 88f254cfa6fa2a..7bcf574dfe24b3 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 9b4e58084b4207..9d5b6afc8ebce5 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 61636b6e1aa0f9..93dbde5607ff8b 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 23a6cc8aaed2a7..66ac0580b8ad46 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 18ac77b1dbf9d9..98d4b356ace523 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 3751609c9876c2..a37ba68cc76139 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 3c740bce963bf5..55b8fda937ec48 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 d2b1d4d5d86138..d4f49616fbdcb7 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 c74531c1ebce79..5dfec3f24454c3 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 54e999d8f1dcf6..3d402955c175f3 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 67f665391a7c81..96cab88710d6a1 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 3d9a54ff9f830e..614bae71d72f1c 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 c1bd3428a27ae4..3e86819ce3255d 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 235adc3db0756c..d5253434068889 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 42a40e420ac44e..9f1e7e99d9d160 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 4573bf83e3e5dd..be14e74dab7ce9 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 89d6ac0f025b98..b6e0d3ce6383ba 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 ec584d56415ffa..2ad3478157fbe6 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 c472e2acc9e28e..f350311bc68659 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 64910317e785ab..5cf78a86f4786b 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 c472e2acc9e28e..f350311bc68659 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 b78ec11d996f5a..76649bd53de1d7 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 c472e2acc9e28e..f350311bc68659 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 6d9050afee44c3..8978d128845de2 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 a006fc69ab1d7c..33ab4c63a70e4d 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 55d2de1d23f8de..7ac45c966c4562 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 ff5eb1d148a870..fb78412f2a8a4f 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 db389259c06b14..f3922475141ae6 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 ecde8c9a2b06ba..e72ee814bae3cf 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 55d2de1d23f8de..7ac45c966c4562 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 78f5b871031695..cce4715377200c 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 431f9cf6fbc3d1..46f31487afd921 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 55d2de1d23f8de..7ac45c966c4562 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 2ec7a40092dfe1..d0f8dc24445b38 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 7e12b46ca40c5f..c31cf2a4495cf2 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 eb0408e1b14508..4f03a4df60adbb 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 55d2de1d23f8de..7ac45c966c4562 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 9baca4b3703905..27f735d8edfeca 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 e933042e123782..0f4306b586d48e 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 53a1fe3529b3e7..839799ca7b0c5b 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 bca5df7184993a..017f85c16fdb08 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 4c9741158f55a8..6278dad0af5f6f 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 94022a3174f471..4edb574f459290 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 43256ffb702526..230da3221d1fe6 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 3aba3e357ac85e..18190fdb7a0f6b 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 d49070babf9bd5..fff940fa19d561 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 d7207b468324fd..9901e6092d1b34 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 fb77cf2a3e4e97..6c1b2d0f9c428c 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 fa6a00fb7a8125..944cd7c04ef510 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 40f3ad1efa94c0..74837d99b795cf 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 79e917c197596d..07d8052384673a 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 0825bea3f747af..de7a32a3ab73c5 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 3a51334ed0c551..df6fc46d33dc39 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 55d2de1d23f8de..7ac45c966c4562 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 4b3b7a5088878b..e7a966c31672ed 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 1c0ceb0002ac40..f8d083e8f7a729 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 558d3855e4d396..4832aa647fb4ef 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 7997802166c609..4fead5c4154c39 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 f0430925c7adc7..4c7e232338fbe2 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 19a5b59f8fcf54..8a0bfd1f0bb865 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 056b835f1c1ab4..be563cb44660c2 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 66ab08af672e6c..ebf177ed3b579e 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 287d8878035d72..e4dc4a7f6a5ced 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 6318ac23fbc9ed..39fd5565a679a0 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 9edd3c2070baf7..36a32270c125aa 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 ee663ddf27ba8d..d66daa212926d5 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 258f866af54dfc..60317cf4303116 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 97c3cbf37801ad..86e0cef4533bef 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 7941428f967fd7..7dbb7299805a20 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 55d2de1d23f8de..7ac45c966c4562 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 2bbcaeaa78c304..77943e319ad536 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 72f17e5ebaab43..212340da5b8dac 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 e277789012f81e..989642c7b4c34c 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 dd006cdc1e7d0b..75eaac02dc2081 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 c567a01f904a40..bcae59c3bce295 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 13ef7b7e777bfa..01c24912af0060 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 55d2de1d23f8de..7ac45c966c4562 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 bcb4d719cb34b7..6f7cab9a89c89f 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 db389259c06b14..f3922475141ae6 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 be32c6ceba87ef..ae317792449494 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 19236e72c58fb4..b79c1d7c3d9a0b 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 221ea6db3e2eef..65473080cb8d61 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 a31a62161c9c71..5fd0a7a6b42821 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 55d2de1d23f8de..7ac45c966c4562 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 3751d80051dad2..3688332e508fb8 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 dd006cdc1e7d0b..75eaac02dc2081 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 80d4fadfc8974d..7d865f9b60a4ce 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 55d2de1d23f8de..7ac45c966c4562 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 6a8d48f9c46395..48d48b58df2ffa 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 4347a4eb4debbe..d39ef4fc91e0d7 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 55d2de1d23f8de..7ac45c966c4562 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 205ab25f130678..9a3e1468c2ba84 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 db389259c06b14..f3922475141ae6 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 953480119b94a4..2921c063705819 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 55d2de1d23f8de..7ac45c966c4562 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 1fa531552172ce..fb9eaa4ba4d8f6 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 855ca0e012d96d..043906dde7e952 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 55d2de1d23f8de..7ac45c966c4562 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 45a1b5d071ab24..0cbc54e9a46deb 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 72f17e5ebaab43..212340da5b8dac 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 3e08189e461518..92695aaef26fd7 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 db389259c06b14..f3922475141ae6 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 e044346872a0c3..eaceb29c1691e5 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 264d2b5b052d96..f8c06dcf9d4586 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 55d2de1d23f8de..7ac45c966c4562 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 5bf5eac7f1270b..e5fdf84929bb20 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 db389259c06b14..f3922475141ae6 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 1b5a587f77b2df..d5378c345f77a4 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 dd006cdc1e7d0b..75eaac02dc2081 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 7b713566d1f9cd..ff9cc2082d40ff 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 98ba0525478f3b..4eedb21b7632b1 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 c4215eaf10fcdf..aefe09f7efa0b5 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 c935c28c964256..f876cf0635fb8a 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 258f866af54dfc..60317cf4303116 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 44b207b4dcb84d..de5eca2f890537 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 d3573efd37e5b1..e1ea5a483c5d1c 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 c4215eaf10fcdf..aefe09f7efa0b5 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 702fd0e7f9d35f..4554072edebb4c 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 9b3928d692a392..6b39e749e28080 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 fb11a1239e024a..e7504f822a7d74 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 a7e028fd36b93d..6e7c3a94f02724 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 a5f5bb4d3352b3..781348267d404a 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 c4215eaf10fcdf..aefe09f7efa0b5 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 a74062ddbf5b20..e03a0e92451619 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 c03a496a43b80a..cc3d67b6a31ed0 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 531d5ce6aab2c3..e3d130d43d065b 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 a3d9e63efc3309..85712d68c49493 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 f6425e5fd6d541..a03a3155c1b72a 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 4ea035df1690eb..1e6fa9b0b7d250 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 765b7fe84cf817..452e3cd7e260a7 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 847c2b95abfed8..fb6e5c1aefec8a 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 7538cfb5a8686b..4d7a02a5508f2e 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 215f610e3d9b27..25cf882c9cec24 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 51970ae096808d..7142a43fe1ddcd 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 55d2de1d23f8de..7ac45c966c4562 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 d0f1c8d7287185..e1dc8f8e7c3f5c 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 dd006cdc1e7d0b..75eaac02dc2081 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 972fd07b3219b8..b7c8ebcbc812dd 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 19236e72c58fb4..b79c1d7c3d9a0b 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 0850a882335345..9e3af0b91eb5df 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 85ee376e43768a..3cac828053d1f3 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 55d2de1d23f8de..7ac45c966c4562 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 00d55a5a4f1af7..c70b4e12f03ff2 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 55d2de1d23f8de..7ac45c966c4562 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 c5d30609b62f45..689fd0bf9f690b 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 55d2de1d23f8de..7ac45c966c4562 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 976ea31130304b..636b5aba47f233 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 1072c6dd44a703..ed1bcbc6ceff54 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 55d2de1d23f8de..7ac45c966c4562 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 b0ad5e4ad9026f..683934b543e5a0 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 db389259c06b14..f3922475141ae6 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 09aaac9ffd978d..f6eae82cda86d1 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 89d6ac0f025b98..b6e0d3ce6383ba 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 e458662774e8a7..dc7ecb8d891f9b 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 beb53a974e6803..c50114dc4221a3 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 e7cf25b1d5f38c..82656cdacf7507 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 58ee1246c09388..861a47920ca7d7 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 55d2de1d23f8de..7ac45c966c4562 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 7fcfaed642b760..9132aa822903ae 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 1c0ceb0002ac40..f8d083e8f7a729 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 03fb60f3ef7d2c..722461d326b7a3 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 55d2de1d23f8de..7ac45c966c4562 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 2c326b8fd44c77..14e35b610ac812 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 fa0df39c5b5df0..084a2f7361eb18 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 55d2de1d23f8de..7ac45c966c4562 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 a9f6d996407032..8a816920a7f267 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 db389259c06b14..f3922475141ae6 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 d29735d22c0d32..cb7009c7070948 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 55d2de1d23f8de..7ac45c966c4562 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 89d6ac0f025b98..b6e0d3ce6383ba 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 00292d26b2c881..4cc696c953e1d3 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 9d36854f192a61..d5dcfcdcffeb9f 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 92298d174de0ea..bd33a9468d2857 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 55d2de1d23f8de..7ac45c966c4562 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 5dd840193e61da..b241a21b6d2adb 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 1c0ceb0002ac40..f8d083e8f7a729 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 a13db20faf6348..72f83901f01413 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 1c0ceb0002ac40..f8d083e8f7a729 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 59838b7440d2c5..699eef5047c3db 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 365cee4a24231a..25dfde9e207ec0 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 55d2de1d23f8de..7ac45c966c4562 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 dff22c476bd7d2..6eb131605a822c 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 55d2de1d23f8de..7ac45c966c4562 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 e4e0c5aeb9a814..09c9f31600a1d6 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 55d2de1d23f8de..7ac45c966c4562 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 41c18389c57cb6..be319c4daf8344 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 56dddb143ffb87..c12272ebe453be 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 55d2de1d23f8de..7ac45c966c4562 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 40de8f591572cd..7f549dc0350db9 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 1c0ceb0002ac40..f8d083e8f7a729 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 b98f947a201bb4..c3443265ebc1d7 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 1c0ceb0002ac40..f8d083e8f7a729 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 908bad838fe815..bc96746dfc62c6 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 e4e3294c54650f..18ee4113442759 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 d45a867033f594..3f9144e6b2648b 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 ac05089124d79b..dbc2ca8c726814 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 1592bf1cc561c8..9bfc9e62e1a037 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 83610292998892..65f2e7635294ed 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 c84dc3ce914adc..372831019a146e 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 99ab7939cfb710..17e9d5c601fdad 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 199df552c84c2e..de096fdc5effeb 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 55d2de1d23f8de..7ac45c966c4562 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 2027e8706f5419..caa35345297c9f 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 1c0ceb0002ac40..f8d083e8f7a729 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 cd18c3fb3a7fc4..3d20d06d7acd3e 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 7e12b46ca40c5f..c31cf2a4495cf2 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 8a1f2f3b9b866d..cccf5f413fba34 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 1ba575b8d7a441..dac0cbc03dba80 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 55d2de1d23f8de..7ac45c966c4562 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 30b24f2e4f7309..51522ce3b7d244 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 55d2de1d23f8de..7ac45c966c4562 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 9987d32142e487..bbf4124e96c62d 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 55d2de1d23f8de..7ac45c966c4562 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 53b7df55f62e66..2859a2f9eda6e1 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 72fec8e04afb9f..e682415d497038 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 55d2de1d23f8de..7ac45c966c4562 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 c0ad246b21ab3b..e14d3f4eae998f 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 d23e9c1537197f..d785c0b896f63f 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 154aea675ba581..28dc72ed5398f9 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 d23e9c1537197f..d785c0b896f63f 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 102bf2aefc8ada..fb0c8dea47a6de 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 42726a58fee0bb..53887915be34ee 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 55d2de1d23f8de..7ac45c966c4562 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 58940b1181b8a5..12019c6dae0fc9 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 1c0ceb0002ac40..f8d083e8f7a729 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 5941d5e42d1ebc..1ac2b823618167 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 1c0ceb0002ac40..f8d083e8f7a729 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 abd5c831a66ea0..81ce3afcf5fdeb 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 8aef26ff116731..592ad4f804ae04 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 55d2de1d23f8de..7ac45c966c4562 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 f4d130c5606d2e..4189232d33fc29 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 6a1e7c24ac8ec5..5ddac46609b7f5 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 14d1313df2016c..3e2ead7a91a98c 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 1c0ceb0002ac40..f8d083e8f7a729 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 be077143f77437..2a5a22010d6235 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 5396e51f41de00..a5c4eba2080874 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 55d2de1d23f8de..7ac45c966c4562 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 75999332a37347..db040f887c26b8 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 1c0ceb0002ac40..f8d083e8f7a729 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 351c95928066b7..756d349f4ce2e0 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 1c0ceb0002ac40..f8d083e8f7a729 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 3643db1774a3cb..88b5bbb04e13c0 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 9c3bafb19d2906..b615a0ca3b0b81 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 45236a653405ca..0975fa8107cedd 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 cecaf0c914d4b5..8e0b81923ae7c0 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 c8d25685223430..d151f62638d697 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 28f890bf917912..b41ac06a52ccd4 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 1a037adc3e7c1d..f550cb30c4afd5 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 759191c71aaefb..37e05c2b442984 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 9123a7d9ac4785..00ddd529062aef 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 e19e870e9d867c..724ad567e735ac 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 57da081644d224..84019bd764074f 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 7538cfb5a8686b..4d7a02a5508f2e 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 76efb2dab5ce1b..e526bbfdd6eb9d 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 8f46da67427542..ad4627425b090c 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 805bd981998e26..3d43aee6a66e49 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 664f982caa10ec..00ed0208ebf40a 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 d594d8a77854e6..537af9acf13e8b 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 30fdc15c392fd0..327a0ff490fe95 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 e8bd0dfe9a7354..9c1a62d13f0600 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 55d2de1d23f8de..7ac45c966c4562 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 3ded1bf208ba72..7824dd968efc32 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 1c0ceb0002ac40..f8d083e8f7a729 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 c8b6fdd9937366..411cb733892763 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 1c0ceb0002ac40..f8d083e8f7a729 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 a136cab95e28da..fc1a56e7a8b885 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 992c48b10d93cc..94d9c52868bc95 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 9a39f69c81f75e..f2e4882f43731b 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 a258b76008df2d..276078ce92b9aa 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 06550b4088189f..38b3c69b3e2c2f 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 dc94ef4e1a679c..e9a6dab6b8bf34 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 6a40cf66cc79dc..1ab889d48c8d33 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 d65df94bbe2a17..7ce3e0240d627c 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 1105c4c0ab0ad2..2749cfbbf28d97 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 55d2de1d23f8de..7ac45c966c4562 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 1621790b32b746..16db853bbc3648 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 db389259c06b14..f3922475141ae6 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 b11d028c23ee9b..bae20e9796f3fb 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 55d2de1d23f8de..7ac45c966c4562 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 6c23b9010417c7..9d0524facdc46a 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 9fcc875d9d43d0..427e3bfa15f6d4 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 55d2de1d23f8de..7ac45c966c4562 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 82919c6d1f8606..68f6922dbd1721 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 55d2de1d23f8de..7ac45c966c4562 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 fc4390de132dda..b205fb81ac8c4a 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 55d2de1d23f8de..7ac45c966c4562 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 22f066eef12280..d75b6bf92e2bf9 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 2cff5eb68b7aa0..64e284ea33524f 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 1a037adc3e7c1d..f550cb30c4afd5 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 e50aa0bd2b364a..78a9a6e735b7e8 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 0c1b9ac6d62aa5..dab0d87b50dcdc 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 55d2de1d23f8de..7ac45c966c4562 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 0048bdcb1eedde..b665f924a0f818 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 7e12b46ca40c5f..c31cf2a4495cf2 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 b1fba0ea64abce..c4e9ba1ea5efc0 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 1c0ceb0002ac40..f8d083e8f7a729 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 1dd4394f3da6d2..03eca32c028f67 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 27547131a8031f..e0bb69ecc78ebc 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 55d2de1d23f8de..7ac45c966c4562 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 8f3766799bdaf2..7d1ce06248df72 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 55d2de1d23f8de..7ac45c966c4562 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 a87011f4bb97e6..35d36fd3579e65 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 55d2de1d23f8de..7ac45c966c4562 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 66a9960e7cdf92..3164b73fee3d7d 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 e4854ff4c866de..653bc87c5ff893 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 55d2de1d23f8de..7ac45c966c4562 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 81ad250341a473..f958c36cbfee5c 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 55d2de1d23f8de..7ac45c966c4562 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 56eb1dab0aafaa..c65d218cbe52dd 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 55d2de1d23f8de..7ac45c966c4562 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 d918b37ef49406..1255ddb87dd8da 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 fb87094032f1ce..0d1bfe7634a306 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 55d2de1d23f8de..7ac45c966c4562 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 1639c7ce8437ea..7e076d87082c84 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 55d2de1d23f8de..7ac45c966c4562 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 1649b1c7bd4dd0..0de1af02c43c2f 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 19236e72c58fb4..b79c1d7c3d9a0b 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 5b3ab11ab5811a..9950b1ba75eaea 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 9627992d806bd5..cc400b20992b4b 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 c4215eaf10fcdf..aefe09f7efa0b5 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 efc1c0fb269715..c08e8b805fc600 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 c03a496a43b80a..cc3d67b6a31ed0 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 f9c78d27b455f1..5753e84eb6418c 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 786d0a37ec5e8d..8d6b1a5ade647e 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 19236e72c58fb4..b79c1d7c3d9a0b 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 e7cd32253340b6..5f7d24cc233159 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 db389259c06b14..f3922475141ae6 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 efe4512f56a171..6e2285e1364fef 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 19236e72c58fb4..b79c1d7c3d9a0b 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 e0c7784c83987c..aebd4ba41beb1a 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 3c40982786da0a..845e6eacab2caa 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 cd4cc29ce49f2b..cd93747f928891 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 1d630a97f3f624..3162793532d55f 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 8bfb431d9ba664..96779f45bfb69c 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 664167ae2891fe..68941aa696d33c 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 0d96800a87b958..f687adbbdefe3b 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 b8bca5faaba5f0..640d738faac294 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 aca8883d827c3a..c6b94d4f344ab9 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 55d2de1d23f8de..7ac45c966c4562 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 622263d922076b..f3e18d11def4c8 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 77782190baf1b5..380403a6f1c44b 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 72302dfa5e3b3a..8de5e9452585e8 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 3ad47b80e5f4c6..9956ab2c60802c 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 5afe2ba47b84d7..82f3806c962af4 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 adabcc0290e8a3..c10c0d25a71d5a 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 5c97da2c29d8e8..0b68363a2fea0c 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 28007ae5b29508..01aaf3eabdafb2 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 6aeebda024894e..69c2dfc1a7e428 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 b090f028781458..534663c7ed285b 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 55d2de1d23f8de..7ac45c966c4562 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 d89e8400a7d27e..54a28a5049254a 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 dd006cdc1e7d0b..75eaac02dc2081 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 b45a263fb86ddb..7f56d3519798f5 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 7a72d5d118c936..34685e869339ee 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 7557fd65cd2f94..f08d4cca2cc00a 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 95c349a57a8540..c2926937d526d9 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 55d2de1d23f8de..7ac45c966c4562 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 fd42a2d2b9fb8c..5f2089b23d52d8 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 1c0ceb0002ac40..f8d083e8f7a729 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 d343c9ef4678bd..c66cbad6c9d375 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 89d6ac0f025b98..b6e0d3ce6383ba 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 f91fe3a0abbb5c..56329c4229c5cb 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 ad8296d246d1f2..eca4299792e25d 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 926815f7d3308f..0c5f7228033729 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 feedd11e76028d..877fff9789b0e4 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 55d2de1d23f8de..7ac45c966c4562 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 b3e76ad3f11abb..18389f198d8c09 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 dd006cdc1e7d0b..75eaac02dc2081 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 f261d928c0b980..901370db804c5c 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 ad8296d246d1f2..eca4299792e25d 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 89d0f71f0500ed..f92b32bdabbe40 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 ad8296d246d1f2..eca4299792e25d 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 f5bc1d17684348..167908b39a2caf 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 ad8296d246d1f2..eca4299792e25d 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 f94f132a89eb82..2368b52dcf0105 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 38a8bd8f824927..a5c706a393967e 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 55d2de1d23f8de..7ac45c966c4562 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 60c6f52812971e..e3c5453638e7a7 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 d23e9c1537197f..d785c0b896f63f 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 9c9664f0ad3a56..2035f79d3f2d7c 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 89d6ac0f025b98..b6e0d3ce6383ba 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 88d9188bd375ba..cff5ff64617f55 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 6bab4e30e020b1..ba1af7a43412e1 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 55d2de1d23f8de..7ac45c966c4562 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 503686688a4e97..8504e06720a9e9 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 1c0ceb0002ac40..f8d083e8f7a729 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 5cc3ced7fd5796..91f6652cb483da 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 1e8dd5d9394b86..30c654bebfdd72 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 83edf55cd5511c..ab07a0f0e0dd07 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 9e8a4fe71f10b2..771e1ccca1c361 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 55d2de1d23f8de..7ac45c966c4562 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 2932f48f4e341a..2974804431a7b2 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 1c0ceb0002ac40..f8d083e8f7a729 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 af501a41dc42d7..555d5d5c04ad42 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 ad8296d246d1f2..eca4299792e25d 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 3e54cc97fe65b3..dc6f0c764d6ccd 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 1ace90aa62419c..042d257dfef945 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 55d2de1d23f8de..7ac45c966c4562 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 f36204c0398c33..7d51fe224eb85b 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 1c0ceb0002ac40..f8d083e8f7a729 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 11825f52677b0b..4e87c1628c97a7 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 55d2de1d23f8de..7ac45c966c4562 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 aa4da6a66615c0..08009c99e61790 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 c332679765e145..c9eae8cb85d543 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 55d2de1d23f8de..7ac45c966c4562 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 6bcbc00cd2a01c..60ec14329179c2 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 77782190baf1b5..380403a6f1c44b 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 f883a565146bef..4b47e638a45940 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 3ad47b80e5f4c6..9956ab2c60802c 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 506734ba7cbfa1..275b2d8173ee3a 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 d2c7d64703f16d..c074f91a4a09c0 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 5bb33e43cc8828..afddd56a90bee4 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 704a0aea736b09..55d3a5dde8f331 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 c7bbd245fb5457..09d343ba1edf01 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 06f23940d1b72c..038cd43b044032 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 55d2de1d23f8de..7ac45c966c4562 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 3dc7b9c8b49cd7..a44ab0565cc465 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 19236e72c58fb4..b79c1d7c3d9a0b 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 d6879957158dd4..73f53e6cc97805 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 55d2de1d23f8de..7ac45c966c4562 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 1cf0152a221e80..08a39d55d3bbc4 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 c840bcbc91fa0b..24601b61909f1b 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 55d2de1d23f8de..7ac45c966c4562 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 3904382ddd52ac..4298e4f8bd014c 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 1c0ceb0002ac40..f8d083e8f7a729 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 5c59d5caa68d9f..f6383a1f7aeeb5 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 8f8693c484d8b7..1c19ff38e48e4f 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 55d2de1d23f8de..7ac45c966c4562 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 992ca86d05cc7a..9f62cecd5f130c 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 19236e72c58fb4..b79c1d7c3d9a0b 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 03f249008f09b9..020d3ecfdb13c5 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 55d2de1d23f8de..7ac45c966c4562 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 00bbdf11e10ebb..f92b0de8c0e9ee 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 124ae6dcca0d92..803a1d61833157 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 55d2de1d23f8de..7ac45c966c4562 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 ab6c09a4b4d81b..e67e2052e47826 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 55d2de1d23f8de..7ac45c966c4562 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 b4afb74a3a8cf2..dbec9c6a511f7d 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 55d2de1d23f8de..7ac45c966c4562 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 835f9d896d69c3..85c375154ae7d4 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 b2116f95bf361e..ed1048db32ab00 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 55d2de1d23f8de..7ac45c966c4562 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 01a6a231b764a1..b6b7ea48103593 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 19236e72c58fb4..b79c1d7c3d9a0b 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 ee84582c0e18dd..936dfb40ca66b6 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 55d2de1d23f8de..7ac45c966c4562 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 d2f8aa45130fe3..1b7f188dde166b 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 da7ffdf54eda84..8a603ec1039613 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 55d2de1d23f8de..7ac45c966c4562 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 fa82c413ca7995..f1a7d20c373b58 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 1c0ceb0002ac40..f8d083e8f7a729 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 6d5f85f6edf24a..7a9e293ff23e3c 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 dd006cdc1e7d0b..75eaac02dc2081 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 d32a462f71b6e7..078dbc1af02cc2 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 3aac1b1047d862..ff36adb8f43512 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 49a9f1f4211abd..dbfbb7d1b2de22 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 0c26f89f113fbe..7d4e9ab3ad470e 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 1a037adc3e7c1d..f550cb30c4afd5 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 7376287bf55f9a..1352ebfa64e06a 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 b7cd4bda70a0e8..87ffb3bc04d5f4 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 55d2de1d23f8de..7ac45c966c4562 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 209bb962ad971f..b611277e2829c6 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 55d2de1d23f8de..7ac45c966c4562 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 70629c2a8cbe11..1b522024821614 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 55d2de1d23f8de..7ac45c966c4562 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 0ca48819d94056..9c8d2b53806cff 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 2ae0d0187d3516..1c6e3ab6eedbb9 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 19236e72c58fb4..b79c1d7c3d9a0b 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 a8a89be2d230b6..48f953d75882ea 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 364023c90e572a..a419eb99b839d8 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 19236e72c58fb4..b79c1d7c3d9a0b 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 ee125f4d144117..6b717a31b0ee81 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 db389259c06b14..f3922475141ae6 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 799f70e5860bf7..c9c65cd8a60c50 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 19236e72c58fb4..b79c1d7c3d9a0b 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 8ec2ddc974d6fc..e7433e8b2af26f 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 e1b14ad762ee9d..4e1fffe826e7f8 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 55d2de1d23f8de..7ac45c966c4562 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 bafa956bddb2ff..ce6d7a44060cdb 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 55d2de1d23f8de..7ac45c966c4562 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 d04f9eb4de5749..0eb6d910c191f5 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 55d2de1d23f8de..7ac45c966c4562 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 e11d165bf84b06..5935960db418ea 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 824729cf2883a2..d62e824a954e10 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 19236e72c58fb4..b79c1d7c3d9a0b 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 3185cc051435d6..d4c921c3fc65d6 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 ed55d3227d4892..390be114c05c2d 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 7e12b46ca40c5f..c31cf2a4495cf2 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 43f98928e7b366..a7e3afb423d3bf 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 a1eadd7648d83b..d3947cd2aa838f 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 5d3ab19741bff5..cc2a70143376a0 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 a1eadd7648d83b..d3947cd2aa838f 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 0a0d0b10083163..d4459620e84fd2 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 a1eadd7648d83b..d3947cd2aa838f 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 82fb2fe94dc35d..d00150a98615bf 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 4bc27e79422908..b9cf872602544f 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 db389259c06b14..f3922475141ae6 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 dfb876006fb388..296f1a3a376e4f 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 7eb0e1133dd938..947de17d405eb4 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 1e35c623a95169..1b1801382e5ae7 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 beb53a974e6803..c50114dc4221a3 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 0a71ab2c2f58a9..e9a725f018708d 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 7eb0e1133dd938..947de17d405eb4 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 ec534355d3ba4f..1ebe87affd4552 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 7eb0e1133dd938..947de17d405eb4 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 @@