mirror of
https://github.com/netchx/netch.git
synced 2026-03-18 18:13:21 +08:00
13 lines
241 B
PowerShell
13 lines
241 B
PowerShell
Write-Host 'Building'
|
|
|
|
msbuild -v:n /p:Configuration="Release" `
|
|
/p:Platform="x64" `
|
|
/p:TargetFramework=net48 `
|
|
/p:SolutionDir="$pwd\" `
|
|
/restore `
|
|
Netch\Netch.csproj
|
|
|
|
if ($LASTEXITCODE) { exit $LASTEXITCODE }
|
|
|
|
Write-Host 'Build done'
|