Fix broken overlay tools by comparing with main #154
Workflow file for this run
This file contains hidden or 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: Test Classic UI Build | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches: | |
| - 'classic-ui-modern-fixes' | |
| pull_request: | |
| branches: | |
| - 'classic-ui-modern-fixes' | |
| jobs: | |
| build: | |
| name: Build Classic UI | |
| runs-on: windows-2022 | |
| env: | |
| Solution_Name: src/Captura.sln | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: Install .NET Core | |
| uses: actions/setup-dotnet@v4 | |
| with: | |
| dotnet-version: 8.0.x | |
| - name: Setup MSBuild | |
| uses: microsoft/setup-msbuild@v2 | |
| - name: Restore the application | |
| run: msbuild $env:Solution_Name /t:Restore /p:Configuration=Debug | |
| - name: Build the application | |
| run: msbuild $env:Solution_Name -t:rebuild -verbosity:minimal -property:Configuration=Debug | |
| - name: Upload build artifacts | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: Captura-Classic-UI-Debug | |
| path: src/Captura/bin/Debug/* |