-
-
Couldn't load subscription status.
- Fork 1k
docs: Add docs for breaking changes of disassembler native dependencies #2836
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -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> | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Does it support specifying an exact platform? If not, it would be a good future improvement. [Edit] Just checked, looks like it does, either by |
||
| > ``` | ||
|
|
||
| ### Requirements | ||
|
|
||
| Disassembly Diagnoser requires following settings in your `.csproj` file: | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.