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
Copy file name to clipboardExpand all lines: src/BenchmarkDotNet.Annotations/Jobs/RuntimeMoniker.cs
+16-1Lines changed: 16 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -88,7 +88,12 @@ public enum RuntimeMoniker
88
88
/// <summary>
89
89
/// .NET 6.0
90
90
/// </summary>
91
-
Net60,// it's after NetCoreApp50 and Net50 in the enum definition because the value of enumeration is used for framework version comparison using > < operators
91
+
Net60,
92
+
93
+
/// <summary>
94
+
/// .NET 7.0
95
+
/// </summary>
96
+
Net70,
92
97
93
98
/// <summary>
94
99
/// CoreRT compiled as netcoreapp2.0
@@ -125,6 +130,11 @@ public enum RuntimeMoniker
125
130
/// </summary>
126
131
CoreRt60,
127
132
133
+
/// <summary>
134
+
/// CoreRT compiled as net7.0
135
+
/// </summary>
136
+
CoreRt70,
137
+
128
138
/// <summary>
129
139
/// WebAssembly with default .Net version
130
140
/// </summary>
@@ -140,6 +150,11 @@ public enum RuntimeMoniker
140
150
/// </summary>
141
151
WasmNet60,
142
152
153
+
/// <summary>
154
+
/// WebAssembly with .net7.0
155
+
/// </summary>
156
+
WasmNet70,
157
+
143
158
/// <summary>
144
159
/// Mono with the Ahead of Time LLVM Compiler backend
Copy file name to clipboardExpand all lines: src/BenchmarkDotNet/Toolchains/CoreRt/CoreRtToolchain.cs
+3-1Lines changed: 3 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -35,6 +35,8 @@ public class CoreRtToolchain : Toolchain
35
35
/// compiled as net6.0, targets latest (6.0.0-*) CoreRT build from the new feed: https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet-experimental/nuget/v3/index.json
0 commit comments