summaryrefslogtreecommitdiff
path: root/eng/common/msbuild.ps1
diff options
context:
space:
mode:
authordotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>2018-12-12 13:02:42 +0000
committerGitHub <noreply@github.com>2018-12-12 13:02:42 +0000
commit60467e9aa8f39c7c93c90cdf007dc4ccb21f53a0 (patch)
treeb1aea7529a8de2354289e2c2822e45d1d9c3ecdd /eng/common/msbuild.ps1
parent5b687cf51745790ff02c2de3f9f992ddc94bfae1 (diff)
downloadcoreclr-60467e9aa8f39c7c93c90cdf007dc4ccb21f53a0.tar.gz
coreclr-60467e9aa8f39c7c93c90cdf007dc4ccb21f53a0.tar.bz2
coreclr-60467e9aa8f39c7c93c90cdf007dc4ccb21f53a0.zip
Update dependencies from https://github.com/dotnet/arcade build 708 (#21487)
This change updates the following dependencies - Microsoft.DotNet.Arcade.Sdk - 1.0.0-beta.18610.4 - Microsoft.DotNet.Helix.Sdk - 1.0.0-beta.18610.4
Diffstat (limited to 'eng/common/msbuild.ps1')
-rw-r--r--eng/common/msbuild.ps110
1 files changed, 5 insertions, 5 deletions
diff --git a/eng/common/msbuild.ps1 b/eng/common/msbuild.ps1
index 43b837f4df..3cd667219a 100644
--- a/eng/common/msbuild.ps1
+++ b/eng/common/msbuild.ps1
@@ -1,8 +1,8 @@
[CmdletBinding(PositionalBinding=$false)]
Param(
[string] $verbosity = "minimal",
- [bool] $warnaserror = $true,
- [bool] $nodereuse = $true,
+ [bool] $warnAsError = $true,
+ [bool] $nodeReuse = $true,
[switch] $ci,
[switch] $prepareMachine,
[Parameter(ValueFromRemainingArguments=$true)][String[]]$extraArgs
@@ -11,13 +11,13 @@ Param(
. $PSScriptRoot\tools.ps1
try {
- InitializeTools
MSBuild @extraArgs
- ExitWithExitCode $lastExitCode
-}
+}
catch {
Write-Host $_
Write-Host $_.Exception
Write-Host $_.ScriptStackTrace
ExitWithExitCode 1
}
+
+ExitWithExitCode 0 \ No newline at end of file