We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a1e771a commit 976f7e3Copy full SHA for 976f7e3
.github/workflows/main.yml
@@ -1,5 +1,4 @@
1
name: Build and Publish .NET MAUI App
2
-
3
on:
4
push:
5
branches: [ "master" ]
@@ -49,12 +48,17 @@ jobs:
49
48
uses: actions/setup-dotnet@v4
50
with:
51
dotnet-version: 8.0.x
+ - name: Update Workloads
52
+ run: dotnet workload update
53
- name: Install .NET MAUI
54
run: dotnet workload install maui
55
- name: Restore dependencies
56
run: dotnet restore
57
- name: Build Windows
- run: dotnet build -c Release -f net8.0-windows --no-restore
58
+ run: |
59
+ dotnet build -c Release -f net8.0-windows --no-restore \
60
+ /p:TargetPlatformVersion=10.0.17763.0 \
61
+ /p:SupportedOSPlatformVersion=10.0.17763.0
62
- name: List directory contents
63
run: |
64
ls -r
0 commit comments