From ef1f48ab97174131f1753efe9241295b1309d3e2 Mon Sep 17 00:00:00 2001 From: softworkz Date: Tue, 11 Aug 2020 20:27:46 +0200 Subject: [PATCH] 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. --- docs/BuildFromSource.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/BuildFromSource.md b/docs/BuildFromSource.md index 23e107b5cb..95858315fc 100644 --- a/docs/BuildFromSource.md +++ b/docs/BuildFromSource.md @@ -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: