Build Minecraft.World

This commit is contained in:
NOTPIES 2026-04-21 00:27:22 -04:00
parent 7d8f03698c
commit 046642df32

View file

@ -94,6 +94,21 @@ jobs:
- name: Build Minecraft.Client (Release)
shell: pwsh
run: |
msbuild .\Minecraft.World\Minecraft.World.vcxproj `
/m `
/t:Build `
/p:Configuration=Release `
/p:Platform=x64 `
/p:PlatformToolset=${{ env.WINDOWS_PLATFORM_TOOLSET }} `
/p:PreferredToolArchitecture=x64 `
/p:UseMultiToolTask=true `
/p:CL_MPCount=8 `
/verbosity:minimal
if (-not (Test-Path .\Minecraft.World\x64_Release\Minecraft.World.lib)) {
throw "Minecraft.World.lib was not produced at .\\Minecraft.World\\x64_Release\\Minecraft.World.lib"
}
msbuild .\\Minecraft.Client\\Minecraft.Client.vcxproj `
/m `
/t:Build `
@ -327,6 +342,24 @@ jobs:
exit 1
}
- name: Build Minecraft.World (Release)
shell: pwsh
run: |
msbuild .\Minecraft.World\Minecraft.World.vcxproj `
/m `
/t:Build `
/p:Configuration=Release `
/p:Platform=x64 `
/p:PlatformToolset=${{ env.WINDOWS_PLATFORM_TOOLSET }} `
/p:PreferredToolArchitecture=x64 `
/p:UseMultiToolTask=true `
/p:CL_MPCount=8 `
/verbosity:minimal
if (-not (Test-Path .\Minecraft.World\x64_Release\Minecraft.World.lib)) {
throw "Minecraft.World.lib was not produced at .\\Minecraft.World\\x64_Release\\Minecraft.World.lib"
}
- name: Build Minecraft.Server (Release)
shell: pwsh
run: |