@@ -20,22 +20,19 @@ jobs:
2020 - name : Setup .NET
2121 uses : actions/setup-dotnet@v4
2222 with :
23- dotnet-version : 9 .0.x
23+ dotnet-version : 10 .0.x
2424 - name : Set up JDK 11
2525 uses : actions/setup-java@v4
2626 with :
2727 distribution : ' temurin'
2828 java-version : ' 11'
2929 - name : Install .NET MAUI
3030 shell : pwsh
31- run : |
32- & dotnet nuget locals all --clear
33- & dotnet workload install maui --source https://aka.ms/dotnet6/nuget/index.json --source https://api.nuget.org/v3/index.json
34- & dotnet workload install android ios maccatalyst tvos macos maui wasm-tools maui-maccatalyst --source https://aka.ms/dotnet6/nuget/index.json --source https://api.nuget.org/v3/index.json
31+ run : dotnet workload install maui
3532 - name : Build library (with nuget package)
36- run : dotnet build ./Source/OxyPlot.Maui.Skia/OxyPlot.Maui.Skia.csproj /p:Configuration= Release / t:restore,build,pack / p:PackageOutputPath=./nuget / p:Version=$(git describe) / p:ContinuousIntegrationBuild=true / p:DeterministicSourcePaths=false
33+ run : dotnet build ./Source/OxyPlot.Maui.Skia/OxyPlot.Maui.Skia.csproj -c Release - t:restore,build,pack - p:PackageOutputPath=./nuget - p:Version=$(git describe) - p:ContinuousIntegrationBuild=true - p:DeterministicSourcePaths=false
3734 - name : Build sample
38- run : dotnet build ./Source/OxyplotMauiSample/OxyplotMauiSample.csproj /p:Configuration=Release / t:restore,build / p:Version=$(git describe) / p:ContinuousIntegrationBuild=true / p:DeterministicSourcePaths=false
35+ run : dotnet build ./Source/OxyplotMauiSample/OxyplotMauiSample.csproj -c Debug - t:restore,build - p:Version=$(git describe) - p:ContinuousIntegrationBuild=true - p:DeterministicSourcePaths=false
3936 - name : Upload packages
4037 uses : actions/upload-artifact@v4
4138 with :
@@ -51,22 +48,19 @@ jobs:
5148 - name : Setup .NET
5249 uses : actions/setup-dotnet@v4
5350 with :
54- dotnet-version : 9 .0.x
51+ dotnet-version : 10 .0.x
5552 - name : Setup XCode
5653 uses : maxim-lobanov/setup-xcode@v1
5754 with :
58- xcode-version : latest-stable
55+ xcode-version : ' 26.2 '
5956 - name : Install .NET MAUI
60- run : |
61- dotnet nuget locals all --clear
62- dotnet workload install maui --source https://aka.ms/dotnet6/nuget/index.json --source https://api.nuget.org/v3/index.json
63- dotnet workload install android ios maccatalyst tvos macos maui wasm-tools maui-maccatalyst --source https://aka.ms/dotnet6/nuget/index.json --source https://api.nuget.org/v3/index.json
57+ run : dotnet workload install maui
6458 - name : Install Android tools
6559 run : ${ANDROID_SDK_ROOT}/cmdline-tools/latest/bin/sdkmanager --sdk_root=$ANDROID_SDK_ROOT "platforms;android-34" "build-tools;34.0.0" "platform-tools"
6660 - name : Build library (with nuget package)
67- run : dotnet build ./Source/OxyPlot.Maui.Skia/OxyPlot.Maui.Skia.csproj /p:Configuration= Release / t:restore,build,pack / p:Version=$(git describe) / p:ContinuousIntegrationBuild=true / p:DeterministicSourcePaths=false
61+ run : dotnet build ./Source/OxyPlot.Maui.Skia/OxyPlot.Maui.Skia.csproj -c Release - t:restore,build,pack - p:Version=$(git describe) - p:ContinuousIntegrationBuild=true - p:DeterministicSourcePaths=false
6862 - name : Build sample
69- run : dotnet build ./Source/OxyplotMauiSample/OxyplotMauiSample.csproj /p:Configuration=Release / t:restore,build / p:Version=$(git describe) / p:ContinuousIntegrationBuild=true / p:DeterministicSourcePaths=false
63+ run : dotnet build ./Source/OxyplotMauiSample/OxyplotMauiSample.csproj -c Debug - t:restore,build - p:Version=$(git describe) - p:ContinuousIntegrationBuild=true - p:DeterministicSourcePaths=false
7064
7165 linuxBuild :
7266 runs-on : ubuntu-latest
@@ -77,12 +71,12 @@ jobs:
7771 - name : Setup .NET
7872 uses : actions/setup-dotnet@v4
7973 with :
80- dotnet-version : 9 .0.x
74+ dotnet-version : 10 .0.x
8175 - name : Install workloads
82- run : dotnet workload install android wasm-tools maui-android
76+ run : dotnet workload install maui-android
8377 - name : Install Android tools
8478 run : ${ANDROID_SDK_ROOT}/cmdline-tools/latest/bin/sdkmanager --sdk_root=$ANDROID_SDK_ROOT "platform-tools"
8579 - name : Build library (with nuget package)
86- run : dotnet build ./Source/OxyPlot.Maui.Skia/OxyPlot.Maui.Skia.csproj /p:Configuration= Release / t:restore,build,pack / p:Version=$(git describe) / p:ContinuousIntegrationBuild=true / p:DeterministicSourcePaths=false
80+ run : dotnet build ./Source/OxyPlot.Maui.Skia/OxyPlot.Maui.Skia.csproj -c Release - t:restore,build,pack - p:Version=$(git describe) - p:ContinuousIntegrationBuild=true - p:DeterministicSourcePaths=false
8781 - name : Build sample
88- run : dotnet build ./Source/OxyplotMauiSample/OxyplotMauiSample.csproj /p:Configuration=Release / t:restore,build / p:Version=$(git describe) / p:ContinuousIntegrationBuild=true / p:DeterministicSourcePaths=false
82+ run : dotnet build ./Source/OxyplotMauiSample/OxyplotMauiSample.csproj -c Debug - t:restore,build - p:Version=$(git describe) - p:ContinuousIntegrationBuild=true - p:DeterministicSourcePaths=false
0 commit comments