Files
netch/BUILD.ps1
2021-03-27 17:44:47 +08:00

11 lines
192 B
PowerShell

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