We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 56c66d0 commit bfb1927Copy full SHA for bfb1927
src/BenchmarkDotNet/Environments/Runtimes/CoreRuntime.cs
@@ -71,6 +71,7 @@ internal static CoreRuntime FromVersion(Version version)
71
case Version v when v.Major == 5 && v.Minor == 0: return GetPlatformSpecific(Core50);
72
case Version v when v.Major == 6 && v.Minor == 0: return GetPlatformSpecific(Core60);
73
case Version v when v.Major == 7 && v.Minor == 0: return GetPlatformSpecific(Core70);
74
+ case Version v when v.Major == 8 && v.Minor == 0: return GetPlatformSpecific(Core80);
75
default:
76
return CreateForNewVersion($"net{version.Major}.{version.Minor}", $".NET {version.Major}.{version.Minor}");
77
}
0 commit comments