Skip to content
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

Add docs for RSP file support #2348

Merged
merged 1 commit into from
Jul 1, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
15 changes: 15 additions & 0 deletions docs/articles/guides/console-args.md
Original file line number Diff line number Diff line change
Expand Up @@ -186,6 +186,21 @@ Now, the default settings are: `WarmupCount=1` but you might still overwrite it
dotnet run -c Release -- --warmupCount 2
```

## Response files support

Benchmark.NET supports parsing parameters via response files. for example you can create file `run.rsp` with following content
```
--warmupCount 1
--minIterationCount 9
--maxIterationCount 12
```

and run it using `dotnet run -c Release -- @run.rsp`. It would be equivalent to running following command line

```log
dotnet run -c Release -- --warmupCount 1 --minIterationCount 9 --maxIterationCount 12
```

## Statistical Test

To perform a Mann–Whitney U Test and display the results in a dedicated column you need to provide the Threshold:
Expand Down