File: src\Shared\BenchmarkRunner\ParameterizedJobConfigAttribute.cs
Web Access
Project: src\src\Security\perf\Microbenchmarks\Microsoft.AspNetCore.Security.Microbenchmarks.csproj (Microsoft.AspNetCore.Security.Microbenchmarks)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
 
using System;
 
namespace BenchmarkDotNet.Attributes;
 
[AttributeUsage(AttributeTargets.Class | AttributeTargets.Assembly)]
internal sealed class ParameterizedJobConfigAttribute : AspNetCoreBenchmarkAttribute
{
    public ParameterizedJobConfigAttribute(Type configType) : base(configType)
    {
    }
}