File tree Expand file tree Collapse file tree 2 files changed +2
-13
lines changed Expand file tree Collapse file tree 2 files changed +2
-13
lines changed Original file line number Diff line number Diff line change 99 [switch ][Alias (' nobl' )]$excludeCIBinarylog ,
1010 [switch ][Alias (' pb' )]$productBuild ,
1111 [switch ]$fromVMR ,
12- [bool ]$warnAsError = $true ,
1312 [bool ]$nodeReuse = $true ,
1413 [Parameter (ValueFromRemainingArguments = $true )][string []]$properties
1514)
@@ -44,4 +43,4 @@ catch {
4443 ExitWithExitCode 1
4544}
4645
47- ExitWithExitCode 0
46+ ExitWithExitCode 0
Original file line number Diff line number Diff line change @@ -14,7 +14,6 @@ source_build=false
1414product_build=false
1515from_vmr=false
1616ci=false
17- warn_as_error=true
1817node_reuse=true
1918binary_log=false
2019
@@ -58,10 +57,6 @@ while [[ $# > 0 ]]; do
5857 --from-vmr|--fromvmr)
5958 from_vmr=true
6059 ;;
61- --warnaserror)
62- warn_as_error=$2
63- shift
64- ;;
6560 --nodereuse)
6661 node_reuse=$2
6762 shift
@@ -133,9 +128,4 @@ if [[ "$ci" == true ]]; then
133128 node_reuse=false
134129fi
135130
136- local warnaserror_switch=" "
137- if [[ $warn_as_error == true ]]; then
138- warnaserror_switch=" /warnaserror"
139- fi
140-
141- " $DOTNET " msbuild /m /nologo /clp:Summary /v:$verbosity /nr:$node_reuse $warnaserror_switch /p:TreatWarningsAsErrors=$warn_as_error /p:ContinuousIntegrationBuild=$ci $bl ${dotnetArguments[@]+" ${dotnetArguments[@]} " } ${args[@]+" ${args[@]} " }
131+ " $DOTNET " msbuild /m /nologo /clp:Summary /v:$verbosity /nr:$node_reuse /p:ContinuousIntegrationBuild=$ci $bl ${dotnetArguments[@]+" ${dotnetArguments[@]} " } ${args[@]+" ${args[@]} " }
You can’t perform that action at this time.
0 commit comments