mirror of
https://github.com/hykilpikonna/AquaDX.git
synced 2026-08-08 12:05:53 -05:00
16 lines
351 B
PowerShell
16 lines
351 B
PowerShell
$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 }
|
|
|
|
taskkill.exe /f /im dotnet.exe
|
|
|
|
dotnet cake @args
|
|
if ($LASTEXITCODE -ne 0) { exit $LASTEXITCODE }
|