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 {