Skip to content
Merged
Changes from 1 commit
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
12 changes: 12 additions & 0 deletions docs/articles/features/disassembler.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
> <BenchmarkDotNetTargetPlatform>all</BenchmarkDotNetTargetPlatform>
> ```

### Requirements

Disassembly Diagnoser requires following settings in your `.csproj` file:
Expand Down
Loading