Merge pull request #505 from runejo/update-from-upstream-3 #772
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 | |
jobs: | |
build: | |
runs-on: windows-2019 | |
strategy: | |
matrix: | |
configuration: [Debug, Release] | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: microsoft/setup-msbuild@v2 | |
- uses: NuGet/setup-nuget@v2 | |
- name: Restore NuGet packages | |
run: nuget restore | |
- name: Build the application | |
run: msbuild /p:Configuration=$env:Configuration | |
env: | |
Configuration: ${{ matrix.configuration }} |