Skip to content

Commit

Permalink
Basic support of InProcessNoEmitRunner for NativeAOT. (#2702)
Browse files Browse the repository at this point in the history
* Basic support of `InProcessNoEmitRunner` for NativeAOT.

* Wrap DynamicDependency with support macro condition.

Co-authored-by: Tim Cassell <[email protected]>

* Fix missing usings.

---------

Co-authored-by: Tim Cassell <[email protected]>
  • Loading branch information
eliphatfs and timcassell authored Mar 2, 2025
1 parent 021fc69 commit 6ce9795
Showing 1 changed file with 6 additions and 2 deletions.
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)
}
}
}
}
}

0 comments on commit 6ce9795

Please sign in to comment.