From b5b9d5189ef2ea5a7bb7e2a88c1302c115d4dc71 Mon Sep 17 00:00:00 2001 From: Frederik Carlier Date: Wed, 21 Apr 2021 13:02:02 +0200 Subject: [PATCH] Replace CoreJob with SimpleJob(RuntimeMoniker.NetCoreApp50) --- plist-cil.benchmark/BinaryPropertyListParserBenchmarks.cs | 8 ++++---- plist-cil.benchmark/BinaryPropertyListWriterBenchmarks.cs | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/plist-cil.benchmark/BinaryPropertyListParserBenchmarks.cs b/plist-cil.benchmark/BinaryPropertyListParserBenchmarks.cs index 2885af7..881223e 100644 --- a/plist-cil.benchmark/BinaryPropertyListParserBenchmarks.cs +++ b/plist-cil.benchmark/BinaryPropertyListParserBenchmarks.cs @@ -1,10 +1,10 @@ -using System.IO; -using BenchmarkDotNet.Attributes; -using BenchmarkDotNet.Attributes.Jobs; +using BenchmarkDotNet.Attributes; +using BenchmarkDotNet.Jobs; +using System.IO; namespace Claunia.PropertyList.Benchmark { - [CoreJob] + [SimpleJob(RuntimeMoniker.NetCoreApp50)] [MemoryDiagnoser] public class BinaryPropertyListParserBenchmarks { diff --git a/plist-cil.benchmark/BinaryPropertyListWriterBenchmarks.cs b/plist-cil.benchmark/BinaryPropertyListWriterBenchmarks.cs index f40b807..3196637 100644 --- a/plist-cil.benchmark/BinaryPropertyListWriterBenchmarks.cs +++ b/plist-cil.benchmark/BinaryPropertyListWriterBenchmarks.cs @@ -1,9 +1,9 @@ using BenchmarkDotNet.Attributes; -using BenchmarkDotNet.Attributes.Jobs; +using BenchmarkDotNet.Jobs; namespace Claunia.PropertyList.Benchmark { - [CoreJob] + [SimpleJob(RuntimeMoniker.NetCoreApp50)] [MemoryDiagnoser] public class BinaryPropertyListWriterBenchmarks {