File tree Expand file tree Collapse file tree 1 file changed +9
-0
lines changed Expand file tree Collapse file tree 1 file changed +9
-0
lines changed Original file line number Diff line number Diff line change @@ -20,6 +20,7 @@ run_build=true
2020run_pack=false
2121run_publish=false
2222run_tests=false
23+ run_sign=false
2324build_all=false
2425build_deps=true
2526only_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:- } "
297305msbuild_args[${# msbuild_args[*]} ]=" -p:Pack=$run_pack "
298306msbuild_args[${# msbuild_args[*]} ]=" -p:Publish=$run_publish "
299307msbuild_args[${# msbuild_args[*]} ]=" -p:Test=$run_tests "
308+ msbuild_args[${# msbuild_args[*]} ]=" -p:Sign=$run_sign "
300309
301310msbuild_args[${# msbuild_args[*]} ]=" -p:TargetArchitecture=$target_arch "
302311msbuild_args[${# msbuild_args[*]} ]=" -p:TargetOsName=$target_os_name "
You can’t perform that action at this time.
0 commit comments