Files
netch/BUILD.ps1
2021-03-28 03:15:31 +08:00

10 lines
166 B
PowerShell

Write-Host 'Building'
dotnet build -p:Configuration="Release" `
-restore `
Netch\Netch.csproj
if ($LASTEXITCODE) { exit $LASTEXITCODE }
Write-Host 'Build done'