File tree 1 file changed +6
-0
lines changed
1 file changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -20,6 +20,7 @@ usage()
20
20
echo " --rebuild Rebuild all projects"
21
21
echo " --pack Build nuget packages"
22
22
echo " --publish Publish build artifacts"
23
+ echo " --sign Sign build artifacts"
23
24
echo " --help Print help and exit"
24
25
echo " "
25
26
echo " Test actions:"
@@ -58,6 +59,7 @@ build=false
58
59
rebuild=false
59
60
pack=false
60
61
publish=false
62
+ sign=false
61
63
test_core_clr=false
62
64
test_compilercomponent_tests=false
63
65
test_benchmarks=false
@@ -129,6 +131,9 @@ while [[ $# > 0 ]]; do
129
131
--publish)
130
132
publish=true
131
133
;;
134
+ --sign)
135
+ sign=true
136
+ ;;
132
137
--testcoreclr|--test|-t)
133
138
test_core_clr=true
134
139
;;
@@ -297,6 +302,7 @@ function BuildSolution {
297
302
/p:Rebuild=$rebuild \
298
303
/p:Pack=$pack \
299
304
/p:Publish=$publish \
305
+ /p:Sign=$sign \
300
306
/p:UseRoslynAnalyzers=$enable_analyzers \
301
307
/p:ContinuousIntegrationBuild=$ci \
302
308
/p:QuietRestore=$quiet_restore \
You can’t perform that action at this time.
0 commit comments