Skip to content

Commit ef1f48a

Browse files
authored
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.
1 parent 7632afc commit ef1f48a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/BuildFromSource.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -234,7 +234,7 @@ Furthermore, you can use flags on `build.cmd`/`.sh` to build subsets based on la
234234
Additional properties can be added as an argument in the form `/property:$name=$value`, or `/p:$name=$value` for short. For example:
235235

236236
```ps1
237-
.\build.cmd /p:Configuration=Release
237+
.\build.cmd -Configuration Release
238238
```
239239

240240
Common properties include:

0 commit comments

Comments
 (0)