Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/dotnet/runtime.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeremy Koritzinsky <jekoritz@microsoft.com>2020-03-11 23:36:56 +0300
committerGitHub <noreply@github.com>2020-03-11 23:36:56 +0300
commit2b27323e4aa61f540b8c6600f4add5b29860a0a3 (patch)
tree7e2629ab7e2870864874971d4e28945a438245da /build.cmd
parent514db28b87f5053720db1c3a0e5b82495278515e (diff)
Implement building the repo for multiple configurations and architectures with a single command on Windows. (#33295)
* Implement building the repo for multiple configurations and architectures with a single command on Windows. * Use -Command instead of -File to invoke pwsh build script. * Run all builds and output which builds failed at the end (if any) * Update help output. * Prepend argument list with architecture args instead of appending so as to allow scripts to override them with MSBuild arguments. * Fix typo.
Diffstat (limited to 'build.cmd')
-rw-r--r--build.cmd2
1 files changed, 1 insertions, 1 deletions
diff --git a/build.cmd b/build.cmd
index 9474e960d71..615bef6c65b 100644
--- a/build.cmd
+++ b/build.cmd
@@ -4,5 +4,5 @@ setlocal
set _args=%*
if "%~1"=="-?" set _args=-help
-powershell -ExecutionPolicy ByPass -NoProfile -File "%~dp0eng\build.ps1" %_args%
+powershell -ExecutionPolicy ByPass -NoProfile -Command "%~dp0eng\build.ps1" %_args%
exit /b %ERRORLEVEL%