mirror of https://github.com/SixLabors/ImageSharp
Browse Source
Former-commit-id: 2640c7c2f4ebff830b94f107e3416ae74ef90176 Former-commit-id: 9f18dfc5e7ffe3c034530d2612a2d388ebce0881 Former-commit-id: a1414ec493a93473ac1eb123f781c83a3df4233caf/merge-core
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> |
|||
<packageSources> |
|||
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" /> |
|||
<add key="benchmarkDotNetDevelop" value="https://ci.appveyor.com/nuget/benchmarkdotnet" /> |
|||
</packageSources> |
|||
</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
|
|||
this.Add(new BenchmarkDotNet.Diagnostics.Windows.MemoryDiagnoser()); |
|||
this.Add(new BenchmarkDotNet.Diagnostics.Windows.InliningDiagnoser()); |
|||
} |
|||
} |
|||
} |
|||
Loading…
Reference in new issue