File: src\Shared\BenchmarkRunner\DefaultCoreValidationConfig.cs
Web Access
Project: src\src\Http\Http.Abstractions\perf\Microbenchmarks\Microsoft.AspNetCore.Http.Abstractions.Microbenchmarks.csproj (Microsoft.AspNetCore.Http.Abstractions.Microbenchmarks)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
 
using BenchmarkDotNet.Configs;
using BenchmarkDotNet.Jobs;
using BenchmarkDotNet.Loggers;
using BenchmarkDotNet.Toolchains.InProcess.NoEmit;
 
namespace BenchmarkDotNet.Attributes;
 
internal sealed class DefaultCoreValidationConfig : ManualConfig
{
    public DefaultCoreValidationConfig()
    {
        AddLogger(ConsoleLogger.Default);
 
        AddJob(Job.Dry.WithToolchain(InProcessNoEmitToolchain.Instance));
    }
}