Skip to content

Commit aa0a539

Browse files
committed
docs: move note section content
1 parent f819ff3 commit aa0a539

File tree

1 file changed

+8
-12
lines changed

1 file changed

+8
-12
lines changed

docs/articles/features/disassembler.md

Lines changed: 8 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -17,18 +17,6 @@ The configuration options available from code level are:
1717
* `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).
1818
* `exportDiff`: Exports a diff of the assembly code to the Github markdown format. False by default.
1919

20-
The configuration options available for MSBuild properties:
21-
22-
* `BenchmarkDotNetTargetPlatform`: Specify `all` to include all native dependencies of disassembler.
23-
24-
> [!NOTE]
25-
> By default, BenchmarkDotNet excludes disassembler's native dependencies that aren't used on current target platform.
26-
> Use the following settings when running the benchmark binary on a different platform than it was built on, or multiple platforms.
27-
>
28-
> ```xml
29-
> <BenchmarkDotNetTargetPlatform>all</BenchmarkDotNetTargetPlatform>
30-
> ```
31-
3220
### Requirements
3321

3422
Disassembly Diagnoser requires following settings in your `.csproj` file:
@@ -45,6 +33,14 @@ To get the source code we need to locate and read the `.pdb` files.
4533
This is why we need `DebugType` and `DebugSymbols` settings.
4634
To compare different platforms the project which defines benchmarks has to target `AnyCPU`.
4735

36+
> [!NOTE]
37+
> By default, BenchmarkDotNet excludes disassembler's native dependencies that aren't used on current target platform.
38+
> Use the following settings when running the benchmark binary on a different platform than it was built on, or multiple platforms.
39+
>
40+
> ```xml
41+
> <BenchmarkDotNetTargetPlatform>all</BenchmarkDotNetTargetPlatform>
42+
> ```
43+
4844
### Disassembly Diagnoser for Mono on Windows
4945
5046
If you want to get a disassembly listing for Mono on Windows, you need `as` and `x86_64-w64-mingw32-objdump.exe` tools.

0 commit comments

Comments
 (0)