We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aa8cfc7 commit 2fd1b4cCopy full SHA for 2fd1b4c
.github/workflows/dotnet.yml
@@ -44,11 +44,11 @@ jobs:
44
run: dotnet restore src/Trion.Web/Trion.Web.csproj
45
46
# BUILD: Windows builds all projects (Desktop + Web)
47
- # Use --runtime win-x64 to ensure desktop runtime pack is available
+ # Do NOT use --no-restore for Desktop as it needs runtime pack resolution
48
# Linux builds Web only to avoid MAUI compilation errors
49
- name: Build (Windows - all projects)
50
if: matrix.os == 'windows-latest'
51
- run: dotnet build -c Release --no-restore --warnaserror --runtime win-x64
+ run: dotnet build -c Release --warnaserror
52
53
- name: Build (Linux - Web only)
54
if: matrix.os == 'ubuntu-latest'
0 commit comments