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 5f63e8d commit b0a1dafCopy full SHA for b0a1daf
src/tools/ResultsComparer/Data.cs
@@ -136,6 +136,8 @@ private static string GetMoniker(string key)
136
return "nativeaot6.0";
137
if (key.Contains("net7.0-preview"))
138
return "net7.0-preview" + key[key.IndexOf("net7.0-preview") + "net7.0-preview".Length];
139
+ if (key.Contains("net7.0-rc"))
140
+ return "net7.0-rc" + key[key.IndexOf("net7.0-rc") + "net7.0-rc".Length];
141
if (key.Contains("nativeaot7.0-preview"))
142
return "nativeaot7.0-preview" + key[key.IndexOf("nativeaot7.0-preview") + "nativeaot7.0-preview".Length];
143
@@ -167,4 +169,4 @@ private static string GetSimplifiedProcessorName(string processorName)
167
169
return processorName.Replace(" ", "");
168
170
}
171
-}
172
+}
0 commit comments