Commit 3aa18e66 authored by mgravell's avatar mgravell

more lib updates

parent 3ffd486c
......@@ -15,7 +15,7 @@
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Pipelines.Sockets.Unofficial" Version="2.1.0" />
<PackageReference Include="Pipelines.Sockets.Unofficial" Version="2.1.1" />
<PackageReference Include="System.Diagnostics.PerformanceCounter" Version="4.7.0" />
<PackageReference Include="System.IO.Pipelines" Version="4.7.0" />
<PackageReference Include="System.Threading.Channels" Version="4.7.0" />
......
......@@ -5,6 +5,7 @@
using BenchmarkDotNet.Columns;
using BenchmarkDotNet.Configs;
using BenchmarkDotNet.Diagnosers;
using BenchmarkDotNet.Environments;
using BenchmarkDotNet.Jobs;
using BenchmarkDotNet.Running;
using BenchmarkDotNet.Toolchains.InProcess;
......@@ -30,8 +31,9 @@ public CustomConfig()
Add(StatisticColumn.OperationsPerSecond);
Add(JitOptimizationsValidator.FailOnError);
Add(Configure(Job.Clr));
Add(Configure(Job.Core));
Add(Configure(Job.Default.With(ClrRuntime.Net472)));
Add(Configure(Job.Default.With(CoreRuntime.Core30)));
Add(Configure(Job.Default.With(CoreRuntime.Core31)));
}
}
internal class SlowConfig : CustomConfig
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment