summaryrefslogtreecommitdiff
path: root/build-test.sh
diff options
context:
space:
mode:
Diffstat (limited to 'build-test.sh')
-rwxr-xr-xbuild-test.sh5
1 files changed, 5 insertions, 0 deletions
diff --git a/build-test.sh b/build-test.sh
index 59f4fe6bbd..6ef1447b77 100755
--- a/build-test.sh
+++ b/build-test.sh
@@ -578,6 +578,7 @@ usage()
echo "bindir - output directory (defaults to $__ProjectRoot/bin)"
echo "msbuildonunsupportedplatform - build managed binaries even if distro is not officially supported."
echo "priority1 - include priority=1 tests in the build"
+ echo "skipgenerateversion - disable version generation even if MSBuild is supported."
exit 1
}
@@ -933,6 +934,10 @@ while :; do
__UnprocessedBuildArgs+=("/p:CLRTestPriorityToBuild=1")
;;
+ skipgenerateversion)
+ __SkipGenerateVersion=1
+ ;;
+
*)
__UnprocessedBuildArgs+=("$1")
;;