mirror of https://github.com/SixLabors/ImageSharp
Browse Source
update to latest #BenchmarkDotNet version Former-commit-id: 6d20e2b7eafb6b03248c3e3738ce5ca4d0e735a0 Former-commit-id: d580af6501f444a3f1e471cf65dd9777012d951b Former-commit-id: bb8865e8d97be8ac1df10df192c6056f5fa58034af/merge-core
committed by
GitHub
5 changed files with 23 additions and 28 deletions
@ -1,6 +1,7 @@ |
|||||
<?xml version="1.0" encoding="utf-8"?> |
<?xml version="1.0" encoding="utf-8"?> |
||||
<configuration> |
<configuration> |
||||
<packageSources> |
<packageSources> |
||||
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" /> |
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" /> |
||||
|
<add key="benchmarkDotNetDevelop" value="https://ci.appveyor.com/nuget/benchmarkdotnet" /> |
||||
</packageSources> |
</packageSources> |
||||
</configuration> |
</configuration> |
||||
@ -0,0 +1,14 @@ |
|||||
|
using BenchmarkDotNet.Configs; |
||||
|
|
||||
|
namespace ImageProcessorCore.Benchmarks |
||||
|
{ |
||||
|
public class Config : ManualConfig |
||||
|
{ |
||||
|
public Config() |
||||
|
{ |
||||
|
// uncomment if you want to use any of the diagnoser
|
||||
|
//Add(new BenchmarkDotNet.Diagnostics.Windows.MemoryDiagnoser());
|
||||
|
//Add(new BenchmarkDotNet.Diagnostics.Windows.InliningDiagnoser());
|
||||
|
} |
||||
|
} |
||||
|
} |
||||
Loading…
Reference in new issue