Private
Public Access
1
0

reinit branch

This commit is contained in:
2026-03-11 01:46:34 +01:00
commit bff9251737
129 changed files with 16115 additions and 0 deletions

14
build.ps1 Normal file
View File

@@ -0,0 +1,14 @@
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;