We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6358a78 commit 524510aCopy full SHA for 524510a
1 file changed
.github/workflows/dotnet.yml
@@ -32,8 +32,12 @@ jobs:
32
# Restore all projects
33
# Linux restore will warn about net9.0-windows target but won't fail
34
- name: Restore
35
- run: dotnet restore
36
-
+ run: |
+ if [ "$RUNNER_OS" = "Linux" ]; then
37
+ dotnet restore src/Trion.Desktop/Trion.Desktop.csproj -f net9.0
38
+ else
39
+ dotnet restore
40
+ fi
41
# Build only the target framework appropriate for each OS
42
- name: Build desktop (Windows)
43
if: runner.os == 'Windows'
0 commit comments