try it again...

This commit is contained in:
Brady McDermott
2024-03-30 18:02:22 -06:00
parent 69baa0e28c
commit 1beddc7695

View File

@@ -30,7 +30,7 @@ jobs:
strategy: strategy:
matrix: matrix:
BUILD_CONFIGURATION: [Release, Debug] BUILD_CONFIGURATION: [Release, Debug]
BUILD_PLATFORM: [x64, Win32] BUILD_PLATFORM: [x64, x86]
runs-on: windows-latest runs-on: windows-latest
@@ -48,4 +48,4 @@ jobs:
working-directory: ${{env.GITHUB_WORKSPACE}} working-directory: ${{env.GITHUB_WORKSPACE}}
# Add additional options to the MSBuild command line here (like platform or verbosity level). # 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 # 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}}