This repository was archived by the owner on Apr 20, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change 1616
1717if ($Help )
1818{
19- Write-Output " Usage: .\run-build.ps1 [-Configuration <CONFIGURATION>] [-Architecture <ARCHITECTURE>] [-NoPackage] [-Help]"
19+ Write-Output " Usage: .\run-build.ps1 [-Configuration <CONFIGURATION>] [-Architecture <ARCHITECTURE>] [-NoPackage] [-NoBuild] [- Help]"
2020 Write-Output " "
2121 Write-Output " Options:"
2222 Write-Output " -Configuration <CONFIGURATION> Build the specified Configuration (Debug or Release, default: Debug)"
Original file line number Diff line number Diff line change @@ -103,14 +103,16 @@ while [[ $# > 0 ]]; do
103103 shift
104104 ;;
105105 --help)
106- echo " Usage: $0 [--configuration <CONFIGURATION>] [--architecture <ARCHITECTURE>] [--skip-prereqs] [--nopackage] [--nobuild ] [--help]"
106+ echo " Usage: $0 [--configuration <CONFIGURATION>] [--architecture <ARCHITECTURE>] [--skip-prereqs] [--nopackage] [--nobuild ] [--docker <IMAGENAME>] [--stage0 <DIRECTORY>] [-- help]"
107107 echo " "
108108 echo " Options:"
109109 echo " --configuration <CONFIGURATION> Build the specified Configuration (Debug or Release, default: Debug)"
110110 echo " --architecture <ARCHITECTURE> Build the specified architecture (x64 or x86 (supported only on Windows), default: x64)"
111111 echo " --skip-prereqs Skip checks for pre-reqs in dotnet_install"
112112 echo " --nopackage Skip packaging targets"
113113 echo " --nobuild Skip building, showing the command that would be used to build"
114+ echo " --docker <IMAGENAME> Build in Docker using the Dockerfile located in scripts/docker/IMAGENAME"
115+ echo " --stage0 <DIRECTORY> Set the stage0 source directory. The default is to download it from Azure."
114116 echo " --help Display this help message"
115117 exit 0
116118 ;;
You can’t perform that action at this time.
0 commit comments