feat: upgrade to .NET 10 / MAUI 10.x (#6)

This commit is contained in:
Copilot
2026-03-16 03:33:06 +02:00
committed by GitHub
parent 72feb6cd48
commit b7786b78ec
5 changed files with 31 additions and 31 deletions

View File

@@ -12,7 +12,7 @@ on:
type: string
env:
DOTNET_VERSION: '9.0.x'
DOTNET_VERSION: '10.0.x'
jobs:
build-ios:
@@ -51,7 +51,7 @@ jobs:
- name: Build iOS Release
run: |
dotnet publish src/HihaArvio/HihaArvio.csproj \
-f net9.0-ios \
-f net10.0-ios \
-c Release \
/p:ApplicationDisplayVersion=${{ steps.get_version.outputs.version }} \
/p:ApplicationVersion=${{ github.run_number }} \
@@ -60,7 +60,7 @@ jobs:
- name: Create iOS artifact archive
run: |
cd src/HihaArvio/bin/Release/net9.0-ios
cd src/HihaArvio/bin/Release/net10.0-ios
# Find the .app bundle (it's in a subdirectory like iossimulator-arm64 or ios-arm64)
APP_PATH=$(find . -name "*.app" -type d | head -n 1)
if [ -z "$APP_PATH" ]; then
@@ -113,7 +113,7 @@ jobs:
- name: Build macOS Catalyst Release
run: |
dotnet publish src/HihaArvio/HihaArvio.csproj \
-f net9.0-maccatalyst \
-f net10.0-maccatalyst \
-c Release \
/p:ApplicationDisplayVersion=${{ steps.get_version.outputs.version }} \
/p:ApplicationVersion=${{ github.run_number }} \
@@ -122,7 +122,7 @@ jobs:
- name: Create macOS artifact archive
run: |
cd src/HihaArvio/bin/Release/net9.0-maccatalyst
cd src/HihaArvio/bin/Release/net10.0-maccatalyst
# Find the .app bundle (it's in a subdirectory like maccatalyst-x64 or maccatalyst-arm64)
APP_PATH=$(find . -name "*.app" -type d | head -n 1)
if [ -z "$APP_PATH" ]; then