Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
using System;
using System;
using System.Diagnostics.CodeAnalysis;
using System.Reflection;
using BenchmarkDotNet.Engines;
using BenchmarkDotNet.Environments;
Expand All @@ -15,6 +16,9 @@ namespace BenchmarkDotNet.Toolchains.InProcess.NoEmit
/// </summary>
internal class InProcessNoEmitRunner
{
#if NET6_0_OR_GREATER
[DynamicDependency(DynamicallyAccessedMemberTypes.All, typeof(Runnable))]
#endif
public static int Run(IHost host, BenchmarkCase benchmarkCase)
{
// the first thing to do is to let diagnosers hook in before anything happens
Expand Down Expand Up @@ -157,4 +161,4 @@ public static void RunCore(IHost host, BenchmarkCase benchmarkCase)
}
}
}
}
}