Another ios build change to use dotnet 9 instead

This commit is contained in:
Wojtek Figat
2025-10-16 13:38:26 +02:00
parent 708b9c6767
commit 08abdc159e

View File

@@ -19,10 +19,10 @@ jobs:
- name: Setup .NET - name: Setup .NET
uses: actions/setup-dotnet@v3 uses: actions/setup-dotnet@v3
with: with:
dotnet-version: 8.0.x dotnet-version: 9.0.x
- name: Setup .NET Workload - name: Setup .NET Workload
run: | run: |
dotnet workload install ios --version 8.0.415 dotnet workload install ios
- name: Print .NET info - name: Print .NET info
run: | run: |
dotnet --info dotnet --info
@@ -33,4 +33,4 @@ jobs:
git lfs pull git lfs pull
- name: Build - name: Build
run: | run: |
./Development/Scripts/Mac/CallBuildTool.sh -build -log -dotnet=8 -arch=ARM64 -platform=iOS -configuration=Release -buildtargets=FlaxGame ./Development/Scripts/Mac/CallBuildTool.sh -build -log -dotnet=9 -arch=ARM64 -platform=iOS -configuration=Release -buildtargets=FlaxGame