Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Retire .NET 5 #69911

Merged
merged 35 commits into from
Oct 27, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
769881f
Change net5.0 to $(NetCoreAppCurrent) in viewing-jit-dumps.md
ArminShoeibi May 27, 2022
7da703f
Change net5.0 to $(NetCoreAppCurrent) and net6.0 in cross-building.md
ArminShoeibi May 27, 2022
c3da7ee
Change net5.0 to net6.0 in debugging.md
ArminShoeibi May 27, 2022
69d9031
Change netcoreapp5.0 to net6.0 in running-aspnet-benchmarks-with-cros…
ArminShoeibi May 27, 2022
82da010
Change net5.0 to $(NetCoreAppCurrent) in testing.md
ArminShoeibi May 27, 2022
0ba2ebb
Delete $dotnet5Source in SetupNugetSources.ps1
ArminShoeibi May 27, 2022
268d369
Delete dotnet5-internal and dotnet5-internal-transport in SetupNugetS…
ArminShoeibi May 27, 2022
eaaf145
Update docs/design/coreclr/jit/viewing-jit-dumps.md
ArminShoeibi May 31, 2022
ef93490
Address remaining occurrences
am11 Jul 1, 2022
00f45b2
Change net5.0 to net6.0 in workloads.csproj
ArminShoeibi Jul 1, 2022
4a19ced
Use Net6 enum member instead of Net5 in Compiles file
ArminShoeibi Jul 1, 2022
7ad2a26
Delete Net5 from TestTargetFramework enum
ArminShoeibi Jul 1, 2022
c18e494
Delete TestTargetFramework.Net5 reference from AdditionalAttrinutesOn…
ArminShoeibi Jul 1, 2022
0c04b0c
Delete net5.0 and netcoreapp3.0 from MultipleHives.cs
ArminShoeibi Jul 1, 2022
750aa96
Update src/tests/BuildWasmApps/testassets/BlazorApp/BlazorApp.csproj
ArminShoeibi Jul 2, 2022
e54f5a3
Change tfm to net7.0 in workloads.csproj
ArminShoeibi Jul 2, 2022
eb64e01
Revert 'src/tests' changes
ArminShoeibi Jul 2, 2022
79c5fa6
Revert a condition in TargetInfo.cs
ArminShoeibi Jul 2, 2022
d6db845
Apply patch to TargetInfo.cs
ArminShoeibi Jul 2, 2022
4c142b5
Update src/installer/managed/Microsoft.NET.HostModel/Bundle/TargetInf…
ArminShoeibi Jul 3, 2022
3e320d6
Update src/installer/managed/Microsoft.NET.HostModel/Bundle/TargetInf…
ArminShoeibi Jul 3, 2022
c750ee8
Revert CompatibilitySuppressions.xml
ArminShoeibi Jul 3, 2022
9d4e4c5
Delete 'src\tests\BuildWasmApps\testassets\BlazorApp' directory
ArminShoeibi Jul 3, 2022
143d22b
Revert 'src/libraries/System.Security.Permissions/src/CompatibilitySu…
ArminShoeibi Jul 4, 2022
a78a6a9
Revert 'eng/tesing' directory
ArminShoeibi Jul 8, 2022
d6d3e43
Resolve conflicts
ArminShoeibi Oct 4, 2022
3596a21
Add comments to inline data attributes of FrameworkHiveSelection
ArminShoeibi Oct 4, 2022
046af4b
change net5.0 to net6.0 in inline data attributes of FrameworkResolut…
ArminShoeibi Oct 4, 2022
d488e4b
change Constants.Tfm.Net5 to Constants.Tfm.Net6 in FrameworkHiveSelec…
ArminShoeibi Oct 4, 2022
927e5f3
fix CodeSnippetsToValidateFallbackForwarder in Compiles.cs
ArminShoeibi Oct 4, 2022
4c8255d
Update src/installer/managed/Microsoft.NET.HostModel/Bundle/Manifest.cs
ArminShoeibi Oct 6, 2022
a2a4db3
Resolve conflicts
ArminShoeibi Oct 24, 2022
45f06a4
Update src/installer/managed/Microsoft.NET.HostModel/Bundle/TargetInf…
ArminShoeibi Oct 24, 2022
8cfe719
Use Environment.Version instead of hard code values in CompileNuget m…
ArminShoeibi Oct 24, 2022
56db16f
Update src/coreclr/tools/r2rtest/Commands/CompileNugetCommand.cs
ArminShoeibi Oct 24, 2022
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions docs/design/coreclr/jit/viewing-jit-dumps.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ The first thing to do is setup the .NET Core app we want to dump. Here are the s

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net5.0</TargetFramework>
<TargetFramework>net6.0</TargetFramework>
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
</PropertyGroup>

Expand Down Expand Up @@ -58,17 +58,17 @@ The first thing to do is setup the .NET Core app we want to dump. Here are the s
}
```

* After you've finished editing the code, run `dotnet restore` and `dotnet publish -c Release`. This should drop all of the binaries needed to run your app in `bin/Release/net5.0/<rid>/publish`.
* After you've finished editing the code, run `dotnet restore` and `dotnet publish -c Release`. This should drop all of the binaries needed to run your app in `bin/Release/<tfm>/<rid>/publish`.
* Overwrite the CLR dlls with the ones you've built locally. If you're a fan of the command line, here are some shell commands for doing this:

```shell
# Windows
robocopy /e <runtime-repo path>\artifacts\bin\coreclr\windows.<arch>.Release <app root>\bin\Release\net5.0\<rid>\publish > NUL
copy /y <runtime-repo path>\artifacts\bin\coreclr\windows.<arch>.Debug\clrjit.dll <app root>\bin\Release\net5.0\<rid>\publish > NUL
robocopy /e <runtime-repo path>\artifacts\bin\coreclr\windows.<arch>.Release <app root>\bin\Release\<tfm>\<rid>\publish > NUL
copy /y <runtime-repo path>\artifacts\bin\coreclr\windows.<arch>.Debug\clrjit.dll <app root>\bin\Release\<tfm>\<rid>\publish > NUL

# Unix
cp -rT <runtime-repo path>/artifacts/bin/coreclr/<OS>.<arch>.Release <app root>/bin/Release/net5.0/<rid>/publish
cp <runtime-repo path>/artifacts/bin/coreclr/<OS>.<arch>.Debug/libclrjit.so <app root>/bin/Release/net5.0/<rid>/publish
cp -rT <runtime-repo path>/artifacts/bin/coreclr/<OS>.<arch>.Release <app root>/bin/Release/<tfm>/<rid>/publish
cp <runtime-repo path>/artifacts/bin/coreclr/<OS>.<arch>.Debug/libclrjit.so <app root>/bin/Release/<tfm>/<rid>/publish
```

* Set the configuration knobs you need (see below) and run your published app. The info you want should be dumped to stdout.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ jobs:
transport: Sockets
scenario: plaintext
channel: edge
framework: netcoreapp5.0
framework: net6.0
arguments: "--nonInteractive true --scenarios {{scenario}} --server-urls {{protocol}}://[*]:{{serverPort}} --server {{server}} --kestrelTransport {{transport}} --protocol {{protocol}}"

scenarios:
Expand Down
4 changes: 2 additions & 2 deletions docs/workflow/testing/host/testing.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,12 +64,12 @@ If all tests have not been previously run, make sure the [test context](#test-co

Tests from a specific test project can be run using [`dotnet test`](https://docs.microsoft.com/dotnet/core/tools/dotnet-test) targeting the built test binary. For example:
```
dotnet test artifacts/bin/HostActivation.Tests/Debug/net5.0/HostActivation.Tests.dll --filter category!=failing
dotnet test artifacts/bin/HostActivation.Tests/Debug/net6.0/HostActivation.Tests.dll --filter category!=failing
```

To filter to specific tests within the test library, use the [filter options](https://docs.microsoft.com/dotnet/core/tools/dotnet-test#filter-option-details) available for `dotnet test`. For example:
```
dotnet test artifacts/bin/HostActivation.Tests/Debug/net5.0/HostActivation.Tests.dll --filter "DependencyResolution&category!=failing"
dotnet test artifacts/bin/HostActivation.Tests/Debug/net6.0/HostActivation.Tests.dll --filter "DependencyResolution&category!=failing"
```

The `category!=failing` is to respect the [filtering traits](../libraries/filtering-tests.md) used by the runtime repo.
Expand Down
8 changes: 4 additions & 4 deletions eng/common/SetupNugetSources.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# This file should be removed as part of this issue: https://github.com/dotnet/arcade/issues/4080
#
# What the script does is iterate over all package sources in the pointed NuGet.config and add a credential entry
# under <packageSourceCredentials> for each Maestro managed private feed. Two additional credential
# under <packageSourceCredentials> for each Maestro managed private feed. Two additional credential
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I would just revert these whitespace-only changes in eng/common.

# entries are also added for the two private static internal feeds: dotnet3-internal and dotnet3-internal-transport.
#
# This script needs to be called in every job that will restore packages and which the base repo has
Expand Down Expand Up @@ -37,7 +37,7 @@ Set-StrictMode -Version 2.0
# Add source entry to PackageSources
function AddPackageSource($sources, $SourceName, $SourceEndPoint, $creds, $Username, $Password) {
$packageSource = $sources.SelectSingleNode("add[@key='$SourceName']")

if ($packageSource -eq $null)
{
$packageSource = $doc.CreateElement("add")
Expand All @@ -48,7 +48,7 @@ function AddPackageSource($sources, $SourceName, $SourceEndPoint, $creds, $Usern
else {
Write-Host "Package source $SourceName already present."
}

AddCredential -Creds $creds -Source $SourceName -Username $Username -Password $Password
}

Expand Down Expand Up @@ -89,7 +89,7 @@ function InsertMaestroPrivateFeedCredentials($Sources, $Creds, $Username, $Passw
$maestroPrivateSources = $Sources.SelectNodes("add[contains(@key,'darc-int')]")

Write-Host "Inserting credentials for $($maestroPrivateSources.Count) Maestro's private feeds."

ForEach ($PackageSource in $maestroPrivateSources) {
Write-Host "`tInserting credential for Maestro's feed:" $PackageSource.Key
AddCredential -Creds $creds -Source $PackageSource.Key -Username $Username -Password $Password
Expand Down
6 changes: 3 additions & 3 deletions eng/common/SetupNugetSources.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# This file should be removed as part of this issue: https://github.com/dotnet/arcade/issues/4080
#
# What the script does is iterate over all package sources in the pointed NuGet.config and add a credential entry
# under <packageSourceCredentials> for each Maestro's managed private feed. Two additional credential
# under <packageSourceCredentials> for each Maestro's managed private feed. Two additional credential
# entries are also added for the two private static internal feeds: dotnet3-internal and dotnet3-internal-transport.
#
# This script needs to be called in every job that will restore packages and which the base repo has
Expand Down Expand Up @@ -68,7 +68,7 @@ if [ "$?" != "0" ]; then
sed -i.bak "s|$ConfigNodeHeader|$ConfigNodeHeader${NL}$PackageSourcesTemplate|" $ConfigFile
fi

# Ensure there is a <packageSourceCredentials>...</packageSourceCredentials> section.
# Ensure there is a <packageSourceCredentials>...</packageSourceCredentials> section.
grep -i "<packageSourceCredentials>" $ConfigFile
if [ "$?" != "0" ]; then
echo "Adding <packageSourceCredentials>...</packageSourceCredentials> section."
Expand Down Expand Up @@ -142,7 +142,7 @@ IFS=$PrevIFS

for FeedName in ${PackageSources[@]} ; do
# Check if there is no existing credential for this FeedName
grep -i "<$FeedName>" $ConfigFile
grep -i "<$FeedName>" $ConfigFile
if [ "$?" != "0" ]; then
echo "Adding credentials for $FeedName."

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,6 @@ public static class PathUtilities
public const string TFMDirectoryName = "net7.0";
#elif NET6_0
public const string TFMDirectoryName = "net6.0";
#elif NET5_0
public const string TFMDirectoryName = "net5.0";
#elif NETCOREAPP3_0
public const string TFMDirectoryName = "netcoreapp3.0";
#else
#error "Unknown TFM"
#endif
Expand Down
7 changes: 5 additions & 2 deletions src/coreclr/tools/r2rtest/Commands/CompileNugetCommand.cs
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,9 @@ public static int CompileNuget(BuildOptions options)
string appFolder = Path.Combine(nugetOutputFolder, $"{package}.TestApp");
Directory.CreateDirectory(appFolder);

int exitCode = DotnetCli.New(appFolder, "console", nugetLog);
Version version = Environment.Version;
string targetFramework = $"net{version.Major}.{version.Minor}";
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@kasperk81 @elinor-fung if you folks have any recommendations about this variable name I'm all ears.

int exitCode = DotnetCli.New(appFolder, $"console -f {targetFramework}", nugetLog);
if (exitCode != 0)
{
nugetLog.WriteLine($"dotnet new console for {package} failed with exit code {exitCode}");
Expand All @@ -80,7 +82,8 @@ public static int CompileNuget(BuildOptions options)
}

// This is not a reliable way of building the publish folder
string publishFolder = Path.Combine(appFolder, @"artifacts\Debug\net5.0\publish");

string publishFolder = Path.Combine(appFolder, "artifacts", "Debug", targetFramework, "publish");
if (!Directory.Exists(publishFolder))
{
nugetLog.WriteLine($"Could not find folder {publishFolder} containing the published app.");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ namespace Microsoft.NET.HostModel.Bundle
/// </summary>
public class Manifest
{
// NetcoreApp3CompatMode flag is set on a .net5 app,
// NetcoreApp3CompatMode flag is set on a .net5+ app,
// which chooses to build single-file apps in .netcore3.x compat mode,
// by constructing the bundler with BundleAllContent option.
// This mode is expected to be deprecated in future versions of .NET.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,21 +33,21 @@ public TargetInfo(OSPlatform? os, Architecture? arch, Version targetFrameworkVer
{
OS = os ?? HostOS;
Arch = arch ?? RuntimeInformation.OSArchitecture;
FrameworkVersion = targetFrameworkVersion ?? net60;
FrameworkVersion = targetFrameworkVersion ?? Environment.Version;

ArminShoeibi marked this conversation as resolved.
Show resolved Hide resolved
Debug.Assert(IsLinux || IsOSX || IsWindows);

if (FrameworkVersion.CompareTo(net60) >= 0)
if (FrameworkVersion.Major >= 6)
{
BundleMajorVersion = 6u;
DefaultOptions = BundleOptions.None;
}
else if (FrameworkVersion.CompareTo(net50) >= 0)
else if (FrameworkVersion.Major == 5)
{
BundleMajorVersion = 2u;
DefaultOptions = BundleOptions.None;
}
else if (FrameworkVersion.Major == 3 && (FrameworkVersion.Minor == 0 || FrameworkVersion.Minor == 1))
else if (FrameworkVersion.Major == 3)
{
BundleMajorVersion = 1u;
DefaultOptions = BundleOptions.BundleAllContent;
Expand Down Expand Up @@ -116,11 +116,7 @@ public override string ToString()
public bool ShouldExclude(string relativePath) =>
(FrameworkVersion.Major != 3) && (relativePath.Equals(HostFxr) || relativePath.Equals(HostPolicy));

private readonly Version net60 = new Version(6, 0);
private readonly Version net50 = new Version(5, 0);
private string HostFxr => IsWindows ? "hostfxr.dll" : IsLinux ? "libhostfxr.so" : "libhostfxr.dylib";
private string HostPolicy => IsWindows ? "hostpolicy.dll" : IsLinux ? "libhostpolicy.so" : "libhostpolicy.dylib";


}
}
Original file line number Diff line number Diff line change
Expand Up @@ -23,17 +23,10 @@ public MultipleHives(SharedTestState sharedState)
}

[Theory]
// MLL where global hive has a better match
[InlineData("5.0.0", "net5.0", true, "5.1.2")]
[InlineData("5.0.0", "net5.0", null, "5.1.2")] // MLL is on by default before 7.0, so same as true
[InlineData("5.0.0", "net5.0", false, "5.2.0")] // No global hive allowed
elinor-fung marked this conversation as resolved.
Show resolved Hide resolved
// MLL (where global hive has better match) with various TFMs
[InlineData("5.0.0", "netcoreapp3.0", true, "5.1.2")]
[InlineData("5.0.0", "netcoreapp3.0", null, "5.1.2")]
[InlineData("5.0.0", "netcoreapp3.0", false, "5.2.0")]
[InlineData("5.0.0", "netcoreapp3.1", true, "5.1.2")]
[InlineData("5.0.0", "netcoreapp3.1", null, "5.1.2")]
[InlineData("5.0.0", "netcoreapp3.1", false, "5.2.0")]
[InlineData("5.0.0", "netcoreapp3.1", null, "5.1.2")] // MLL is on by default before 7.0, so same as true
[InlineData("5.0.0", "netcoreapp3.1", false, "5.2.0")] // No global hive allowed
[InlineData("5.0.0", "net6.0", true, "5.1.2")]
[InlineData("5.0.0", "net6.0", null, "5.1.2")]
[InlineData("5.0.0", "net6.0", false, "5.2.0")]
Expand Down Expand Up @@ -68,7 +61,7 @@ public void FrameworkHiveSelection_CurrentDirectoryIsIgnored()
{
RunTest(new TestSettings()
.WithRuntimeConfigCustomizer(runtimeConfig => runtimeConfig
.WithTfm(Constants.Tfm.Net5)
.WithTfm(Constants.Tfm.Net6)
.WithFramework(MicrosoftNETCoreApp, "5.0.0"))
.WithWorkingDirectory(SharedState.DotNetCurrentHive.BinPath),
multiLevelLookup: true)
Expand Down Expand Up @@ -191,9 +184,9 @@ public void DotnetInfo(bool? multiLevelLookup)
}

[Theory]
[InlineData("net5.0", true, true)]
[InlineData("net5.0", null, true)]
[InlineData("net5.0", false, false)]
elinor-fung marked this conversation as resolved.
Show resolved Hide resolved
[InlineData("net6.0", true, true)]
[InlineData("net6.0", null, true)]
[InlineData("net6.0", false, false)]
// MLL is disabled for 7.0+
[InlineData("net7.0", true, false)]
[InlineData("net7.0", null, false)]
Expand Down
3 changes: 0 additions & 3 deletions src/installer/tests/TestUtils/Constants.cs
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,6 @@ public static class RollForwardSetting
public static class Tfm
{
public const string RuntimeConfigPropertyName = "tfm";
public const string NetCoreApp30 = "netcoreapp3.0";
public const string NetCoreApp31 = "netcoreapp3.1";
public const string Net5 = "net5.0";
public const string Net6 = "net6.0";
public const string Net7 = "net7.0";
}
Expand Down
10 changes: 5 additions & 5 deletions src/libraries/Common/tests/StaticTestGenerator/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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\net5.0-windows-Debug-x64\shared\Microsoft.NETCore.App\5.0.0" "d:\repos\runtime\artifacts\bin\System.Runtime.Tests\net5.0-windows-Debug\System.Runtime.Tests.dll"
dotnet run d:\output "d:\repos\runtime\artifacts\bin\testhost\net6.0-windows-Debug-x64\shared\Microsoft.NETCore.App\5.0.0" "d:\repos\runtime\artifacts\bin\System.Runtime.Tests\net6.0-windows-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\net5.0-windows-Debug\System.Runtime.Tests.dll
3/27/2019 10:55:37 PM | Helper assemblies path: d:\repos\runtime\artifacts\bin\testhost\net5.0-windows-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\net6.0-windows-Debug\System.Runtime.Tests.dll
3/27/2019 10:55:37 PM | Helper assemblies path: d:\repos\runtime\artifacts\bin\testhost\net6.0-windows-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\net5.0-windows-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\net6.0-windows-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\net5.0-windows-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\net6.0-windows-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 |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,10 +45,6 @@ public enum TestTargetFramework
/// </summary>
Net,
/// <summary>
/// .NET version 5.0.
/// </summary>
Net5,
/// <summary>
/// .NET version 6.0.
/// </summary>
Net6,
Expand Down Expand Up @@ -212,7 +208,6 @@ private static async Task<ImmutableArray<MetadataReference>> GetReferenceAssembl
TestTargetFramework.Framework => ReferenceAssemblies.NetFramework.Net48.Default,
TestTargetFramework.Standard => ReferenceAssemblies.NetStandard.NetStandard21,
TestTargetFramework.Core => ReferenceAssemblies.NetCore.NetCoreApp31,
TestTargetFramework.Net5 => ReferenceAssemblies.Net.Net50,
TestTargetFramework.Net6 => ReferenceAssemblies.Net.Net60,
_ => ReferenceAssemblies.Default
};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,6 @@ public static IEnumerable<object[]> GetDownlevelTargetFrameworks()
{
yield return new object[] { TestTargetFramework.Net, true };
yield return new object[] { TestTargetFramework.Net6, true };
yield return new object[] { TestTargetFramework.Net5, true };
yield return new object[] { TestTargetFramework.Core, false };
yield return new object[] { TestTargetFramework.Standard, false };
yield return new object[] { TestTargetFramework.Framework, false };
Expand Down
Loading