Update __debugbreak comments in TargetApp.cpp #24
Workflow file for this run
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: Pull Request | |
on: | |
pull_request: | |
branches: [ main ] | |
# Run this workflow manually from the Actions tab | |
workflow_dispatch: | |
jobs: | |
windows_build: | |
strategy: | |
matrix: | |
configuration: [Debug, Release] | |
runs-on: windows-2022 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- name: Setup NuGet.exe for use with actions | |
uses: NuGet/setup-nuget@v1.0.5 | |
- name: Build.cmd | |
run: ${{ github.workspace }}\build.cmd /p:Configuration=$env:Configuration | |
env: | |
Configuration: ${{ matrix.configuration }} | |