mirror of
https://github.com/hykilpikonna/AquaDX.git
synced 2026-08-08 12:05:53 -05:00
* [+] Build with cake * ci * ci * fetch-tags * fetch-depth: 0 * melonloader 显示 Git 版本 * remove ci build alert * set FileVersion to git version * add describe to tg * fix
14 lines
319 B
PowerShell
14 lines
319 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 }
|
|
|
|
dotnet cake @args
|
|
if ($LASTEXITCODE -ne 0) { exit $LASTEXITCODE }
|