Private
Public Access
1
0
Files
OrekiWoofsBeehives/build.ps1
2026-03-11 02:01:27 +01:00

14 lines
411 B
PowerShell

dotnet run --project ZZCakeBuild\OrekiWoofsBeehivesCakeBuild.csproj -- $args
if ($LASTEXITCODE -eq 0) {
Set-Location .\RoamingBees
dotnet run --project ZZCakeBuild\RoamingBeesCakeBuild.csproj
Set-Location ..
}
if ($LASTEXITCODE -eq 0) {
New-Item -ItemType Directory -Path .\Releases -Force | Out-Null
Copy-Item -Path .\RoamingBees\Releases\* -Destination .\Releases -Recurse -Force
}
exit $LASTEXITCODE;