mirror of
https://github.com/qmlnet/qmlnet.git
synced 2026-05-22 06:05:26 -06:00
15 lines
No EOL
311 B
C#
15 lines
No EOL
311 B
C#
using BenchmarkDotNet.Configs;
|
|
using BenchmarkDotNet.Diagnosers;
|
|
using BenchmarkDotNet.Jobs;
|
|
|
|
namespace Qml.Net.Benchmarks
|
|
{
|
|
public class Config : ManualConfig
|
|
{
|
|
public Config()
|
|
{
|
|
Add(MemoryDiagnoser.Default);
|
|
Add(Job.Core.WithGcForce(true));
|
|
}
|
|
}
|
|
} |