mirror of
https://github.com/netchx/netch.git
synced 2026-03-14 17:43:18 +08:00
10 lines
167 B
PowerShell
10 lines
167 B
PowerShell
Write-Host 'Building'
|
|
|
|
dotnet publish -c "Release" `
|
|
-o Netch\bin\Publish\ `
|
|
Netch\Netch.csproj
|
|
|
|
if ($LASTEXITCODE) { exit $LASTEXITCODE }
|
|
|
|
Write-Host 'Build done'
|