Skip to content

Resolve App.xaml.cs merge conflict: keep Trace and auto-init logic #2

Resolve App.xaml.cs merge conflict: keep Trace and auto-init logic

Resolve App.xaml.cs merge conflict: keep Trace and auto-init logic #2

Workflow file for this run

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