Skip to content

Commit 795ba1f

Browse files
ellahathawaycaptainsafia
authored andcommitted
Add -sign to build.sh (#59041)
1 parent 9df51a4 commit 795ba1f

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

eng/build.sh

+9
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ run_build=true
2020
run_pack=false
2121
run_publish=false
2222
run_tests=false
23+
run_sign=false
2324
build_all=false
2425
build_deps=true
2526
only_build_repo_tasks=false
@@ -64,6 +65,7 @@ Options:
6465
--[no-]pack Produce packages.
6566
--[no-]test Run tests.
6667
--[no-]publish Run publish.
68+
--[no-]sign Run code signing.
6769
6870
--projects A list of projects to build. (Must be an absolute path.)
6971
Globbing patterns are supported, such as \"$(pwd)/**/*.csproj\".
@@ -166,6 +168,12 @@ while [[ $# -gt 0 ]]; do
166168
-no-test|-notest)
167169
run_tests=false
168170
;;
171+
-sign)
172+
run_sign=true
173+
;;
174+
-no-sign|-nosign)
175+
run_sign=false
176+
;;
169177
-projects)
170178
shift
171179
build_projects="${1:-}"
@@ -297,6 +305,7 @@ fi
297305
msbuild_args[${#msbuild_args[*]}]="-p:Pack=$run_pack"
298306
msbuild_args[${#msbuild_args[*]}]="-p:Publish=$run_publish"
299307
msbuild_args[${#msbuild_args[*]}]="-p:Test=$run_tests"
308+
msbuild_args[${#msbuild_args[*]}]="-p:Sign=$run_sign"
300309

301310
msbuild_args[${#msbuild_args[*]}]="-p:TargetArchitecture=$target_arch"
302311
msbuild_args[${#msbuild_args[*]}]="-p:TargetOsName=$target_os_name"

0 commit comments

Comments
 (0)