File tree 1 file changed +9
-0
lines changed
1 file changed +9
-0
lines changed Original file line number Diff line number Diff line change @@ -20,6 +20,7 @@ run_build=true
20
20
run_pack=false
21
21
run_publish=false
22
22
run_tests=false
23
+ run_sign=false
23
24
build_all=false
24
25
build_deps=true
25
26
only_build_repo_tasks=false
@@ -64,6 +65,7 @@ Options:
64
65
--[no-]pack Produce packages.
65
66
--[no-]test Run tests.
66
67
--[no-]publish Run publish.
68
+ --[no-]sign Run code signing.
67
69
68
70
--projects A list of projects to build. (Must be an absolute path.)
69
71
Globbing patterns are supported, such as \" $( pwd) /**/*.csproj\" .
@@ -166,6 +168,12 @@ while [[ $# -gt 0 ]]; do
166
168
-no-test|-notest)
167
169
run_tests=false
168
170
;;
171
+ -sign)
172
+ run_sign=true
173
+ ;;
174
+ -no-sign|-nosign)
175
+ run_sign=false
176
+ ;;
169
177
-projects)
170
178
shift
171
179
build_projects=" ${1:- } "
297
305
msbuild_args[${# msbuild_args[*]} ]=" -p:Pack=$run_pack "
298
306
msbuild_args[${# msbuild_args[*]} ]=" -p:Publish=$run_publish "
299
307
msbuild_args[${# msbuild_args[*]} ]=" -p:Test=$run_tests "
308
+ msbuild_args[${# msbuild_args[*]} ]=" -p:Sign=$run_sign "
300
309
301
310
msbuild_args[${# msbuild_args[*]} ]=" -p:TargetArchitecture=$target_arch "
302
311
msbuild_args[${# msbuild_args[*]} ]=" -p:TargetOsName=$target_os_name "
You can’t perform that action at this time.
0 commit comments