From 43a27b7f80a94d1db42c32f2938ceb51956cfac2 Mon Sep 17 00:00:00 2001 From: NOTPIES Date: Mon, 20 Apr 2026 23:49:18 -0400 Subject: [PATCH] fix workflow 1 --- .github/workflows/build-channel.yml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build-channel.yml b/.github/workflows/build-channel.yml index 578ae47..1689ad4 100644 --- a/.github/workflows/build-channel.yml +++ b/.github/workflows/build-channel.yml @@ -88,15 +88,16 @@ jobs: - name: Build Minecraft.Client (Release) shell: pwsh run: | - msbuild .\\MinecraftConsoles.sln ` + msbuild .\\Minecraft.Client\\Minecraft.Client.vcxproj ` /m ` - /t:Minecraft.Client ` + /t:Build ` /p:Configuration=Release ` /p:Platform=Windows64 ` /p:PlatformToolset=v143 ` /p:PreferredToolArchitecture=x64 ` /p:UseMultiToolTask=true ` /p:CL_MPCount=8 ` + /p:BuildProjectReferences=true ` /verbosity:minimal - name: Stage Windows64 client package @@ -298,15 +299,16 @@ jobs: - name: Build Minecraft.Server (Release) shell: pwsh run: | - msbuild .\\MinecraftConsoles.sln ` + msbuild .\\Minecraft.Server\\Minecraft.Server.vcxproj ` /m ` - /t:Minecraft.Server ` + /t:Build ` /p:Configuration=Release ` /p:Platform=Windows64 ` /p:PlatformToolset=v143 ` /p:PreferredToolArchitecture=x64 ` /p:UseMultiToolTask=true ` /p:CL_MPCount=8 ` + /p:BuildProjectReferences=true ` /verbosity:minimal - name: Stage Windows dedicated server artifact