176c6c4b79
[main] Update dependencies from dotnet/arcade - Coherency Updates: - XliffTasks: from 1.0.0-beta.21251.1 to 1.0.0-beta.21254.1 (parent: Microsoft.DotNet.Arcade.Sdk)
27 lines
No EOL
536 B
PowerShell
27 lines
No EOL
536 B
PowerShell
[CmdletBinding(PositionalBinding=$false)]
|
|
Param(
|
|
[string] $verbosity = 'minimal',
|
|
[bool] $warnAsError = $true,
|
|
[bool] $nodeReuse = $true,
|
|
[switch] $ci,
|
|
[switch] $prepareMachine,
|
|
[switch] $excludePrereleaseVS,
|
|
[Parameter(ValueFromRemainingArguments=$true)][String[]]$extraArgs
|
|
)
|
|
|
|
. $PSScriptRoot\tools.ps1
|
|
|
|
try {
|
|
if ($ci) {
|
|
$nodeReuse = $false
|
|
}
|
|
|
|
MSBuild @extraArgs
|
|
}
|
|
catch {
|
|
Write-Host $_.ScriptStackTrace
|
|
Write-PipelineTelemetryError -Category 'Build' -Message $_
|
|
ExitWithExitCode 1
|
|
}
|
|
|
|
ExitWithExitCode 0 |