mirror of https://github.com/SixLabors/ImageSharp
Browse Source
Former-commit-id: 6ca587c2d3f773d2f430030e2ca0d8d4bd7fe11b Former-commit-id: 01b7b1e4c8fb0146d5efa0d755d0d0f248df5eeb Former-commit-id: 20c535434e174f9adb525313989423a986df908epull/1/head
5 changed files with 24 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.MemoryDiagnoser());
|
||||
|
//Add(new BenchmarkDotNet.Diagnostics.InliningDiagnoser());
|
||||
|
} |
||||
|
} |
||||
|
} |
||||
Loading…
Reference in new issue