using BenchmarkDotNet.Configs;
using BenchmarkDotNet.Jobs;
public class CustomConfig : ManualConfig
{
public CustomConfig()
{
// Starts with an empty config adding only the jobs you want
AddJob(Job.Default.WithCustomBuildConfiguration("Benchmarks"));
}
}