Skip to content
Merged
Changes from all commits
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
10 changes: 10 additions & 0 deletions docs/core/tools/dotnet-test.md
Original file line number Diff line number Diff line change
Expand Up @@ -437,6 +437,8 @@ dotnet test
[--no-ansi]
[--no-progress]
[--output <VERBOSITY_LEVEL>]
[--no-launch-profile]
[--no-launch-profile-arguments]
[<args>...]

dotnet test -h|--help
Expand Down Expand Up @@ -523,6 +525,14 @@ With Microsoft Testing Platform, `dotnet test` operates faster than with VSTest.

Specifies the output verbosity when reporting tests. Valid values are `Normal` and `Detailed`. The default is `Normal`.

- **`--no-launch-profile`**

Do not attempt to use launchSettings.json to configure the application. By default, `launchSettings.json` is used, which can apply environment variables and command-line arguments to the test executable.

- **`--no-launch-profile-arguments`**

Do not use arguments specified by `commandLineArgs` in launch profile to run the application.

- **`--property:<NAME>=<VALUE>`**

Sets one or more MSBuild properties. Specify multiple properties by repeating the option:
Expand Down