14 lines
411 B
PowerShell
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; |