We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8662fa2 commit 2b76cc2Copy full SHA for 2b76cc2
Runner/Jobs/BenchmarkLibrariesJob.cs
@@ -121,6 +121,16 @@ private async Task CloneDotnetPerformanceAndSetupToolsAsync()
121
File.WriteAllText(Path, source);
122
}
123
124
+ {
125
+ const string Path = "performance/src/benchmarks/micro/MicroBenchmarks.csproj";
126
+ string source = File.ReadAllText(Path);
127
+ source = source.Replace(
128
+ "<OutputType>Exe</OutputType>",
129
+ "<TreatWarningsAsErrors>false</TreatWarningsAsErrors>\r\n <OutputType>Exe</OutputType>",
130
+ StringComparison.OrdinalIgnoreCase);
131
+ File.WriteAllText(Path, source);
132
+ }
133
+
134
if (TryGetFlag("parallel"))
135
{
136
0 commit comments