From ffde0f46398a86417c860462f6af0556331cb5bb Mon Sep 17 00:00:00 2001 From: Matt <5415177+ZehMatt@users.noreply.github.com> Date: Fri, 9 Feb 2024 09:25:00 +0200 Subject: [PATCH] Pass configuration and platform individually to msbuild (#486) --- .github/workflows/main.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index f8a23bf9..8933ff9a 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -66,11 +66,11 @@ jobs: - name: Build user-mode run: | cd msvc - msbuild.exe Zydis.sln /m /t:Rebuild '/p:Configuration="Release MD";Platform=X64' + msbuild.exe Zydis.sln /m /t:Rebuild /p:Configuration="Release MD" /p:Platform=X64 - name: Build kernel-mode run: | cd msvc - msbuild.exe Zydis.sln /m /t:Rebuild '/p:Configuration="Release Kernel";Platform=X64' + msbuild.exe Zydis.sln /m /t:Rebuild /p:Configuration="Release Kernel" /p:Platform=X64 amalgamated: name: Amalgamated build (Ubuntu 22.04)