File tree Expand file tree Collapse file tree 1 file changed +8
-0
lines changed
src/BenchmarkDotNet/Toolchains/DotNetCli Expand file tree Collapse file tree 1 file changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -69,6 +69,8 @@ private static string Map(Capture capture)
69
69
return "net472" ;
70
70
case ".NETFramework,Version=v4.8" :
71
71
return "net48" ;
72
+ case ".NETFramework,Version=v4.8.1" :
73
+ return "net481" ;
72
74
case ".NETCoreApp,Version=v2.0" :
73
75
return "netcoreapp2.0" ;
74
76
case ".NETCoreApp,Version=v2.1" :
@@ -83,6 +85,12 @@ private static string Map(Capture capture)
83
85
return "net5.0" ;
84
86
case ".NETCoreApp,Version=v6.0" :
85
87
return "net6.0" ;
88
+ case ".NETCoreApp,Version=v7.0" :
89
+ return "net7.0" ;
90
+ case ".NETCoreApp,Version=v8.0" :
91
+ return "net8.0" ;
92
+ case ".NETCoreApp,Version=v9.0" :
93
+ return "net9.0" ;
86
94
default :
87
95
return capture . Value ; // we don't want to throw for future versions of .NET
88
96
}
You can’t perform that action at this time.
0 commit comments