25개 이상의 토픽을 선택하실 수 없습니다.
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- using BenchmarkDotNet.Configs;
- using BenchmarkDotNet.Environments;
- using BenchmarkDotNet.Jobs;
- using BenchmarkDotNet.Toolchains.CsProj;
-
- namespace MQTTnet.Benchmarks.Configurations
- {
- public class RuntimeCompareConfig : BaseConfig
- {
- public RuntimeCompareConfig()
- {
- Add(Job.Default.With(Runtime.Clr));
- Add(Job.Default.With(Runtime.Core).With(CsProjCoreToolchain.NetCoreApp21));
- }
-
- }
- }
|