From c4da4e15c2e0c5b4d6be9ab4070406d0c4208e5d Mon Sep 17 00:00:00 2001
From: Viktor Hofer <viktor.hofer@microsoft.com>
Date: Thu, 1 Feb 2024 17:44:39 +0100
Subject: [PATCH] Support --source-build / -sb switches as well in the VMR
 (#18492)

---
 src/SourceBuild/content/build.sh | 40 ++++++++++++++++----------------
 1 file changed, 20 insertions(+), 20 deletions(-)

diff --git a/src/SourceBuild/content/build.sh b/src/SourceBuild/content/build.sh
index e461d8f9a..02d4fa08a 100755
--- a/src/SourceBuild/content/build.sh
+++ b/src/SourceBuild/content/build.sh
@@ -10,34 +10,34 @@ set -e
 usage()
 {
   echo "Common settings:"
-  echo "  --binaryLog                  Create MSBuild binary log (short: -bl)"
-  echo "  --configuration <value>      Build configuration: 'Debug' or 'Release' (short: -c)"
-  echo "  --verbosity <value>          Msbuild verbosity: q[uiet], m[inimal], n[ormal], d[etailed], and diag[nostic] (short: -v)"
+  echo "  --binaryLog                     Create MSBuild binary log (short: -bl)"
+  echo "  --configuration <value>         Build configuration: 'Debug' or 'Release' (short: -c)"
+  echo "  --verbosity <value>             Msbuild verbosity: q[uiet], m[inimal], n[ormal], d[etailed], and diag[nostic] (short: -v)"
   echo ""
 
   echo "Actions:"
-  echo "  --clean                      Clean the solution"
-  echo "  --help                       Print help and exit (short: -h)"
-  echo "  --test                       Run smoke tests (short: -t)"
+  echo "  --clean                         Clean the solution"
+  echo "  --help                          Print help and exit (short: -h)"
+  echo "  --test                          Run smoke tests (short: -t)"
   echo ""
 
   echo "Source-only settings:"
-  echo "  --source-only                Source-build the solution (short: -so)"
-  echo "  --online                     Build using online sources"
-  echo "  --poison                     Build with poisoning checks"
-  echo "  --release-manifest <FILE>    A JSON file, an alternative source of Source Link metadata"
-  echo "  --source-repository <URL>    Source Link repository URL, required when building from tarball"
-  echo "  --source-version <SHA>       Source Link revision, required when building from tarball"
-  echo "  --use-mono-runtime           Output uses the mono runtime"
-  echo "  --with-packages <DIR>        Use the specified directory of previously-built packages"
-  echo "  --with-sdk <DIR>             Use the SDK in the specified directory for bootstrapping"
+  echo "  --source-only, --source-build   Source-build the solution (short: -so, -sb)"
+  echo "  --online                        Build using online sources"
+  echo "  --poison                        Build with poisoning checks"
+  echo "  --release-manifest <FILE>       A JSON file, an alternative source of Source Link metadata"
+  echo "  --source-repository <URL>       Source Link repository URL, required when building from tarball"
+  echo "  --source-version <SHA>          Source Link revision, required when building from tarball"
+  echo "  --use-mono-runtime              Output uses the mono runtime"
+  echo "  --with-packages <DIR>           Use the specified directory of previously-built packages"
+  echo "  --with-sdk <DIR>                Use the SDK in the specified directory for bootstrapping"
   echo ""
 
   echo "Advanced settings:"
-  echo "  --ci                         Set when running on CI server"
-  echo "  --clean-while-building       Cleans each repo after building (reduces disk space usage, short: -cwb)"
-  echo "  --excludeCIBinarylog         Don't output binary log (short: -nobl)"
-  echo "  --prepareMachine             Prepare machine for CI run, clean up processes after build"
+  echo "  --ci                            Set when running on CI server"
+  echo "  --clean-while-building          Cleans each repo after building (reduces disk space usage, short: -cwb)"
+  echo "  --excludeCIBinarylog            Don't output binary log (short: -nobl)"
+  echo "  --prepareMachine                Prepare machine for CI run, clean up processes after build"
   echo ""
   echo "Command line arguments not listed above are passed thru to msbuild."
   echo "Arguments can also be passed in with a single hyphen."
@@ -117,7 +117,7 @@ while [[ $# > 0 ]]; do
       ;;
 
     # Source-only settings
-    -source-only|-so)
+    -source-only|-source-build|-so|-sb)
       sourceOnly=true
       properties="$properties /p:DotNetBuildSourceOnly=true"
       ;;