-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathProgram.cs
More file actions
24 lines (22 loc) · 801 Bytes
/
Program.cs
File metadata and controls
24 lines (22 loc) · 801 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
using BenchmarkDotNet.Configs;
using BenchmarkDotNet.Jobs;
using BenchmarkDotNet.Running;
using BenchmarkDotNet.Toolchains.InProcess.Emit;
namespace BenchmarkSourceGenerator
{
class Program
{
static void Main(string[] args)
{
var config = DefaultConfig.Instance
.AddJob(Job
.MediumRun
.WithLaunchCount(1)
.WithToolchain(InProcessEmitToolchain.Instance));
var summary = BenchmarkRunner.Run<Benchmarks>(config);
//Benchmarks benchmarks = new();
//benchmarks.NewtonSoftJsonSerializer();
//benchmarks.GeneratedSerializer();
}
}
}