Disable CrashExplorer build #6
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: Build | |
on: | |
push: | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
windows: | |
name: ${{ matrix.Configuration }} ${{ matrix.Platform }} | |
runs-on: windows-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
Configuration: [.NET Debug, .NET Release, Debug, Release, Unicode Debug, Unicode Release] | |
Platform: [x64, Win32] | |
steps: | |
- uses: actions/checkout@main | |
- uses: microsoft/setup-msbuild@main | |
- name: Restore NuGet packages | |
run: nuget restore source/BugTrap.sln | |
- name: Build | |
run: msbuild /m /p:Configuration="${{ matrix.Configuration }}" /p:Platform="${{ matrix.Platform }}" source/BugTrap.sln |