File tree Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -20,6 +20,7 @@ usage()
2020 echo " --rebuild Rebuild all projects"
2121 echo " --pack Build nuget packages"
2222 echo " --publish Publish build artifacts"
23+ echo " --sign Sign build artifacts"
2324 echo " --help Print help and exit"
2425 echo " "
2526 echo " Test actions:"
@@ -58,6 +59,7 @@ build=false
5859rebuild=false
5960pack=false
6061publish=false
62+ sign=false
6163test_core_clr=false
6264test_compilercomponent_tests=false
6365test_benchmarks=false
@@ -129,6 +131,9 @@ while [[ $# > 0 ]]; do
129131 --publish)
130132 publish=true
131133 ;;
134+ --sign)
135+ sign=true
136+ ;;
132137 --testcoreclr|--test|-t)
133138 test_core_clr=true
134139 ;;
@@ -297,6 +302,7 @@ function BuildSolution {
297302 /p:Rebuild=$rebuild \
298303 /p:Pack=$pack \
299304 /p:Publish=$publish \
305+ /p:Sign=$sign \
300306 /p:UseRoslynAnalyzers=$enable_analyzers \
301307 /p:ContinuousIntegrationBuild=$ci \
302308 /p:QuietRestore=$quiet_restore \
You can’t perform that action at this time.
0 commit comments