Skip to content

Commit 2232263

Browse files
authored
Update Program.cs
1 parent 8cd352b commit 2232263

1 file changed

Lines changed: 1 addition & 9 deletions

File tree

  • gdpicture/GdPictureNuGetVersionBenchmark

gdpicture/GdPictureNuGetVersionBenchmark/Program.cs

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -24,27 +24,19 @@
2424

2525
var baseJob = Job.ShortRun
2626
.WithRuntime(CoreRuntime.Core10_0)
27-
.WithGcServer(true)
28-
.WithArguments([
29-
new MsBuildArgument("-p:WarningLevel=0"),
30-
new MsBuildArgument("-p:ObfuscateProject=false")
31-
]);
27+
.WithGcServer(true);
3228

3329
var config = ManualConfig
3430
.Create(DefaultConfig.Instance)
3531
.AddJob(baseJob
3632
.WithId($"GdPicture {baselineVersion}")
3733
.WithBaseline(true)
3834
.WithArguments([
39-
new MsBuildArgument("-p:WarningLevel=0"),
40-
new MsBuildArgument("-p:ObfuscateProject=false"),
4135
new MsBuildArgument($"-p:VersionGdPicture={baselineVersion}")
4236
]))
4337
.AddJob(baseJob
4438
.WithId($"GdPicture {candidateVersion}")
4539
.WithArguments([
46-
new MsBuildArgument("-p:WarningLevel=0"),
47-
new MsBuildArgument("-p:ObfuscateProject=false"),
4840
new MsBuildArgument($"-p:VersionGdPicture={candidateVersion}")
4941
]))
5042
.WithSummaryStyle(SummaryStyle.Default.WithRatioStyle(RatioStyle.Percentage))

0 commit comments

Comments
 (0)