Skip to content

Commit ffde0f4

Browse files
authored
Pass configuration and platform individually to msbuild (#486)
1 parent 03fd6d8 commit ffde0f4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/main.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -66,11 +66,11 @@ jobs:
6666
- name: Build user-mode
6767
run: |
6868
cd msvc
69-
msbuild.exe Zydis.sln /m /t:Rebuild '/p:Configuration="Release MD";Platform=X64'
69+
msbuild.exe Zydis.sln /m /t:Rebuild /p:Configuration="Release MD" /p:Platform=X64
7070
- name: Build kernel-mode
7171
run: |
7272
cd msvc
73-
msbuild.exe Zydis.sln /m /t:Rebuild '/p:Configuration="Release Kernel";Platform=X64'
73+
msbuild.exe Zydis.sln /m /t:Rebuild /p:Configuration="Release Kernel" /p:Platform=X64
7474
7575
amalgamated:
7676
name: Amalgamated build (Ubuntu 22.04)

0 commit comments

Comments
 (0)