Skip to content

Commit

Permalink
Merge PR #441: Update the benchmark project to BenchmarkDotNet 0.12.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Numpsy authored Apr 12, 2020
1 parent b54b511 commit aa97f8a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

<ItemGroup>
<PackageReference Include="BenchmarkDotNet">
<Version>0.11.4</Version>
<Version>0.12.1</Version>
</PackageReference>
</ItemGroup>

Expand Down
4 changes: 2 additions & 2 deletions benchmark/ICSharpCode.SharpZipLib.Benchmark/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ public class MultipleRuntimes : ManualConfig
{
public MultipleRuntimes()
{
Add(Job.Default.With(CsProjClassicNetToolchain.Net461).AsBaseline()); // NET 4.6.1
Add(Job.Default.With(CsProjCoreToolchain.NetCoreApp21)); // .NET Core 2.1
AddJob(Job.Default.WithToolchain(CsProjClassicNetToolchain.Net461).AsBaseline()); // NET 4.6.1
AddJob(Job.Default.WithToolchain(CsProjCoreToolchain.NetCoreApp21)); // .NET Core 2.1
//Add(Job.Default.With(CsProjCoreToolchain.NetCoreApp30)); // .NET Core 3.0
}
}
Expand Down

0 comments on commit aa97f8a

Please sign in to comment.