17 строки
414 B
PowerShell
17 строки
414 B
PowerShell
# Copyright (c) Microsoft Corporation. All rights reserved.
|
|
# Licensed under the MIT License.
|
|
|
|
$ErrorActionPreference = 'Stop'
|
|
|
|
Set-Location -LiteralPath $PSScriptRoot
|
|
|
|
$env:DOTNET_SKIP_FIRST_TIME_EXPERIENCE = '1'
|
|
$env:DOTNET_CLI_TELEMETRY_OPTOUT = '1'
|
|
$env:DOTNET_NOLOGO = '1'
|
|
|
|
dotnet tool restore
|
|
if ($LASTEXITCODE -ne 0) { exit $LASTEXITCODE }
|
|
|
|
dotnet cake @args
|
|
if ($LASTEXITCODE -ne 0) { exit $LASTEXITCODE }
|