You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* remove Obsolete fields
* add a possibility to disable specific benchmarks for AOT runtimes
* remove support for old experimental builds of CoreRT that are targeting runtimes that are not longer supported (nobody should be using this combination)
* introduce NativeAotRuntime
* rename --coreRtVersion to --ilCompilerVersion (not dependent on CoreRT/NativeAOT naming)
* update default ILCompilerVersion and NuGet feed url to point to latest 7.0 bits
* IsCoreRT should return false on .NET 7
* annotate GenericTypeArgumentsAttribute with [DynamicallyAccessedMembers(DynamicallyAccessedMemberTypes.All)]
Copy file name to clipboardExpand all lines: src/BenchmarkDotNet/ConsoleArguments/CommandLineOptions.cs
+2-2
Original file line number
Diff line number
Diff line change
@@ -94,8 +94,8 @@ public class CommandLineOptions
94
94
[Option("clrVersion",Required=false,HelpText="Optional version of private CLR build used as the value of COMPLUS_Version env var.")]
95
95
publicstringClrVersion{get;set;}
96
96
97
-
[Option("coreRtVersion",Required=false,HelpText="Optional version of Microsoft.DotNet.ILCompiler which should be used to run with CoreRT. Example: \"1.0.0-alpha-26414-01\"")]
98
-
publicstringCoreRtVersion{get;set;}
97
+
[Option("ilCompilerVersion",Required=false,HelpText="Optional version of Microsoft.DotNet.ILCompiler which should be used to run with CoreRT/NativeAOT. Example: \"7.0.0-preview.3.22123.2\"")]
98
+
publicstringILCompilerVersion{get;set;}
99
99
100
100
[Option("ilcPath",Required=false,HelpText="Optional IlcPath which should be used to run with private CoreRT build.")]
0 commit comments