Skip to content

Commit e97b525

Browse files
committed
Add runInHost option to DisassemblyDiagnoserAttribute.
1 parent 9f6f0d9 commit e97b525

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/BenchmarkDotNet/Attributes/DisassemblyDiagnoserAttribute.cs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ public DisassemblyDiagnoserAttribute(
2525
bool exportHtml = false,
2626
bool exportCombinedDisassemblyReport = false,
2727
bool exportDiff = false,
28+
bool runInHost = false,
2829
params string[] filters)
2930
{
3031
Config = ManualConfig.CreateEmpty().AddDiagnoser(
@@ -38,7 +39,8 @@ public DisassemblyDiagnoserAttribute(
3839
exportGithubMarkdown: exportGithubMarkdown,
3940
exportHtml: exportHtml,
4041
exportCombinedDisassemblyReport: exportCombinedDisassemblyReport,
41-
exportDiff: exportDiff)));
42+
exportDiff: exportDiff,
43+
runInHost: runInHost)));
4244
}
4345

4446
// CLS-Compliant Code requires a constructor without an array in the argument list

0 commit comments

Comments
 (0)