mirror of
https://github.com/netchx/netch.git
synced 2026-03-30 19:09:48 +08:00
11 lines
192 B
PowerShell
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'
|