Skip to content

Commit c48572f

Browse files
authored
Fix builds on MacOS (#631)
* Use Xcode 16.3 * Use latest preview with NET10 * More changes
1 parent 6769631 commit c48572f

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.github/workflows/build-all.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,13 @@ jobs:
2424
9.0.x
2525
10.0.x
2626
include-prerelease: true
27+
dotnet-quality: 'preview'
2728

2829
- name: Install .NET MAUI Workload
2930
run: dotnet workload install maui
3031

3132
- name: Select Xcode Version
32-
run: sudo xcode-select -s /Applications/Xcode_16.4.app
33+
run: sudo xcode-select -s /Applications/Xcode_16.3.app
3334
if: runner.os == 'macOS'
3435

3536
- name: Find and build all C# projects

.github/workflows/build-pr.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,12 +28,13 @@ jobs:
2828
9.0.x
2929
10.0.x
3030
include-prerelease: true
31+
dotnet-quality: 'preview'
3132

3233
- name: Install .NET MAUI Workload
3334
run: dotnet workload install maui
3435

3536
- name: Select Xcode Version
36-
run: sudo xcode-select -s /Applications/Xcode_16.4.app
37+
run: sudo xcode-select -s /Applications/Xcode_16.3.app
3738
if: runner.os == 'macOS'
3839

3940
- name: Find and build changed projects

0 commit comments

Comments
 (0)