Fix invalid Build command (#24771)

build.cmd does not directly take MSBuild parameters (only after `-MSBuildArguments`)
But for configuration, there is already the `-Configuration` parameter.
This commit is contained in:
softworkz 2020-08-11 20:27:46 +02:00 committed by GitHub
parent 7632afc4eb
commit ef1f48ab97
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -234,7 +234,7 @@ Furthermore, you can use flags on `build.cmd`/`.sh` to build subsets based on la
Additional properties can be added as an argument in the form `/property:$name=$value`, or `/p:$name=$value` for short. For example:
```ps1
.\build.cmd /p:Configuration=Release
.\build.cmd -Configuration Release
```
Common properties include: