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 3ad15fa commit 0ecaa3aCopy full SHA for 0ecaa3a
1 file changed
src/FirebirdSql.Data.FirebirdClient.Benchmarks/BenchmarkConfig.cs
@@ -17,7 +17,9 @@
17
18
using BenchmarkDotNet.Configs;
19
using BenchmarkDotNet.Diagnosers;
20
+using BenchmarkDotNet.Exporters;
21
using BenchmarkDotNet.Jobs;
22
+using BenchmarkDotNet.Order;
23
using BenchmarkDotNet.Toolchains.CsProj;
24
using BenchmarkDotNet.Toolchains.DotNetCli;
25
using BenchmarkDotNet.Validators;
@@ -51,6 +53,10 @@ public BenchmarkConfig()
51
53
52
54
AddDiagnoser(MemoryDiagnoser.Default);
55
56
+ AddExporter(MarkdownExporter.GitHub);
57
+
58
+ Orderer = new DefaultOrderer(SummaryOrderPolicy.FastestToSlowest);
59
60
AddValidator(BaselineValidator.FailOnError);
61
AddValidator(JitOptimizationsValidator.FailOnError);
62
}
0 commit comments