27 lines
484 B
PowerShell
27 lines
484 B
PowerShell
|
[CmdletBinding(PositionalBinding=$false)]
|
||
|
Param(
|
||
|
[string] $verbosity = "minimal",
|
||
|
[bool] $warnAsError = $true,
|
||
|
[bool] $nodeReuse = $true,
|
||
|
[switch] $ci,
|
||
|
[switch] $prepareMachine,
|
||
|
[Parameter(ValueFromRemainingArguments=$true)][String[]]$extraArgs
|
||
|
)
|
||
|
|
||
|
. $PSScriptRoot\tools.ps1
|
||
|
|
||
|
try {
|
||
|
if ($ci) {
|
||
|
$nodeReuse = $false
|
||
|
}
|
||
|
|
||
|
MSBuild @extraArgs
|
||
|
}
|
||
|
catch {
|
||
|
Write-Host $_
|
||
|
Write-Host $_.Exception
|
||
|
Write-Host $_.ScriptStackTrace
|
||
|
ExitWithExitCode 1
|
||
|
}
|
||
|
|
||
|
ExitWithExitCode 0
|