diff --git a/docs/articles/features/disassembler.md b/docs/articles/features/disassembler.md index c33527d0d7..85374ce2a4 100644 --- a/docs/articles/features/disassembler.md +++ b/docs/articles/features/disassembler.md @@ -17,6 +17,18 @@ The configuration options available from code level are: * `exportCombinedDisassemblyReport`: Exports all benchmarks to a single HTML report. Makes it easy to compare different runtimes or methods (each becomes a column in HTML table). * `exportDiff`: Exports a diff of the assembly code to the Github markdown format. False by default. +The configuration options available for MSBuild properties: + +* `BenchmarkDotNetTargetPlatform`: Specify `all` to include all native dependencies of disassembler. + +> [!NOTE] +> By default, BenchmarkDotNet excludes disassembler's native dependencies that aren't used on current target platform. +> Use the following settings when running the benchmark binary on multiple platforms. +> +> ```xml +> all +> ``` + ### Requirements Disassembly Diagnoser requires following settings in your `.csproj` file: