Resolve App.xaml.cs merge conflict: keep Trace and auto-init logic #2
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: Windows CI - Spoke | |
| on: | |
| push: | |
| branches: [ main ] | |
| pull_request: | |
| branches: [ main ] | |
| jobs: | |
| build-and-check: | |
| runs-on: windows-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Setup .NET | |
| uses: actions/setup-dotnet@v4 | |
| with: | |
| dotnet-version: '10.0.x' | |
| - name: Restore workloads (MAUI) | |
| run: dotnet workload restore | |
| - name: Build (Windows TFM) | |
| run: dotnet build Spoke/Spoke/Spoke.csproj -c Release -f net10.0-windows10.0.19041.0 | |
| - name: Run startup check script | |
| shell: powershell | |
| run: .\Spoke\scripts\check-startup.ps1 | |
| - name: Run tests | |
| run: dotnet test Spoke/Spoke.Tests/Spoke.Tests.csproj -c Debug |