Regular merge #111
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: MSBuild | |
on: | |
push: | |
branches: [ "main", "answer" ] | |
pull_request: | |
branches: [ "main", "answer" ] | |
jobs: | |
build: | |
runs-on: windows-latest | |
steps: | |
- name: Checks-out this repo under GITHUB_WORKSPACE | |
uses: actions/[email protected] | |
- name: Add MSBuild to PATH | |
uses: microsoft/[email protected] | |
- name: Setup thirdparty | |
run: ${{github.workspace}}/SetupThirdParty.bat | |
- name: Setup project | |
run: ${{github.workspace}}/Setup.bat | |
- name: Build Debug x64 | |
run: msbuild ${{github.workspace}}/Frame.sln /p:Configuration=Debug /p:Platform=x64 | |
- name: Build Release x64 | |
run: msbuild ${{github.workspace}}/Frame.sln /p:Configuration=Release /p:Platform=x64 |