diff --git a/.github/workflows/msbuild.yml b/.github/workflows/msbuild.yml index 35c6f9e..d94d143 100644 --- a/.github/workflows/msbuild.yml +++ b/.github/workflows/msbuild.yml @@ -30,7 +30,7 @@ jobs: strategy: matrix: BUILD_CONFIGURATION: [Release, Debug] - BUILD_PLATFORM: [x64, Win32] + BUILD_PLATFORM: [x64, x86] runs-on: windows-latest @@ -48,4 +48,4 @@ jobs: working-directory: ${{env.GITHUB_WORKSPACE}} # Add additional options to the MSBuild command line here (like platform or verbosity level). # See https://docs.microsoft.com/visualstudio/msbuild/msbuild-command-line-reference - run: msbuild /m /p:Configuration=${{matrix.BUILD_CONFIGURATION}};Platform=${{matrix.BUILD_PLATFORM}} ${{env.SOLUTION_FILE_PATH}} + run: msbuild /m /p:Configuration=${{matrix.BUILD_CONFIGURATION}} /p:Platform=${{matrix.BUILD_PLATFORM}} ${{env.SOLUTION_FILE_PATH}}