Skip to content

Commit f5cf587

Browse files
committed
fix: Lifter.Maui targets only .NET 9 (workload limitations on CI)
- Removed net8.0 MAUI targets (android, ios, maccatalyst) - iOS workload packs for .NET 8 MAUI not available on Linux CI runners - Lifter.Core, Avalonia, Blazor still support .NET 8+ - Lifter.Maui requires .NET 9+
1 parent 586707d commit f5cf587

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

Lifter.Maui/Lifter.Maui.csproj

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<!-- Multi-targeting for .NET MAUI on .NET 8 and .NET 9 -->
5-
<TargetFrameworks>net8.0-android;net8.0-ios;net8.0-maccatalyst;net9.0-android;net9.0-ios;net9.0-maccatalyst;net9.0-windows10.0.19041.0</TargetFrameworks>
4+
<!-- Multi-targeting for .NET MAUI on .NET 9 only -->
5+
<!-- Note: net8.0 MAUI workloads (especially iOS) are not reliably available on Linux CI runners -->
6+
<TargetFrameworks>net9.0-android;net9.0-ios;net9.0-maccatalyst;net9.0-windows10.0.19041.0</TargetFrameworks>
67
<UseMaui>true</UseMaui>
78
<SingleProject>true</SingleProject>
89
<ImplicitUsings>enable</ImplicitUsings>

0 commit comments

Comments
 (0)