Skip to content

Basic support of InProcessNoEmitRunner for NativeAOT. #2702

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Mar 2, 2025
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)
}
}
}
}
}