You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If the code you want to benchmark requires `[System.STAThread]`
8
8
then you need to apply this attribute to the benchmarked method.
9
-
BenchmarkDotNet will generate executable with `[STAThread]` applied to it's`Main` method.
9
+
BenchmarkDotNet will generate an executable with `[STAThread]` applied to its`Main` method.
10
10
11
-
Currently it does not work for .NET Core 2.0 due to [this](https://github.com/dotnet/runtime/issues/8834) bug.
11
+
Using this feature on .NET Core requires .NET Core 2.1 or newer. Older versions will not work due to [this](https://github.com/dotnet/runtime/issues/8834) bug.
0 commit comments