Skip to content

Commit

Permalink
Add docs for RSP file support (#2348)
Browse files Browse the repository at this point in the history
  • Loading branch information
kant2002 committed Jul 1, 2023
1 parent 977c05e commit 17df128
Showing 1 changed file with 15 additions and 0 deletions.
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

0 comments on commit 17df128

Please sign in to comment.