Files
netch/BUILD.ps1
2021-03-27 18:09:00 +08:00

12 lines
213 B
PowerShell

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