Replace CoreJob with SimpleJob(RuntimeMoniker.NetCoreApp50)

This commit is contained in:
Frederik Carlier
2021-04-21 13:02:02 +02:00
parent ad0f8aa915
commit b5b9d5189e
2 changed files with 6 additions and 6 deletions

View File

@@ -1,10 +1,10 @@
using System.IO; using BenchmarkDotNet.Attributes;
using BenchmarkDotNet.Attributes; using BenchmarkDotNet.Jobs;
using BenchmarkDotNet.Attributes.Jobs; using System.IO;
namespace Claunia.PropertyList.Benchmark namespace Claunia.PropertyList.Benchmark
{ {
[CoreJob] [SimpleJob(RuntimeMoniker.NetCoreApp50)]
[MemoryDiagnoser] [MemoryDiagnoser]
public class BinaryPropertyListParserBenchmarks public class BinaryPropertyListParserBenchmarks
{ {

View File

@@ -1,9 +1,9 @@
using BenchmarkDotNet.Attributes; using BenchmarkDotNet.Attributes;
using BenchmarkDotNet.Attributes.Jobs; using BenchmarkDotNet.Jobs;
namespace Claunia.PropertyList.Benchmark namespace Claunia.PropertyList.Benchmark
{ {
[CoreJob] [SimpleJob(RuntimeMoniker.NetCoreApp50)]
[MemoryDiagnoser] [MemoryDiagnoser]
public class BinaryPropertyListWriterBenchmarks public class BinaryPropertyListWriterBenchmarks
{ {