From a0aaf5c48bbc199032df568d55837e28812e3d80 Mon Sep 17 00:00:00 2001 From: David Ortinau Date: Fri, 20 Mar 2026 10:23:31 -0500 Subject: [PATCH] Upgrade RecipeApp to net10.0 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Update TargetFrameworks to net10.0 - Upgrade Reactor.Maui to 4.0.16 - Add explicit Microsoft.Maui.Controls 10.0.50 reference - Bump iOS/macCatalyst SupportedOSPlatformVersion to 16.0 - Fix breaking API changes from Reactor.Maui v2/v3 → v4 - Remove EnableMauiReactorHotReload (removed in v4) - Verified build succeeds for net10.0-ios Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- RecipeApp/MauiProgram.cs | 3 - RecipeApp/RecipeApp.csproj | 124 ++++++++++++++++++------------------- 2 files changed, 62 insertions(+), 65 deletions(-) diff --git a/RecipeApp/MauiProgram.cs b/RecipeApp/MauiProgram.cs index 664b4fa..32bd7d7 100644 --- a/RecipeApp/MauiProgram.cs +++ b/RecipeApp/MauiProgram.cs @@ -11,9 +11,6 @@ public static MauiApp CreateMauiApp() var builder = MauiApp.CreateBuilder(); builder .UseMauiReactorApp() -#if DEBUG - .EnableMauiReactorHotReload() -#endif .ConfigureFonts(fonts => { fonts.AddFont("Rubik-Bold.ttf", "RubikBold"); diff --git a/RecipeApp/RecipeApp.csproj b/RecipeApp/RecipeApp.csproj index 5cf6cb3..a0c7519 100644 --- a/RecipeApp/RecipeApp.csproj +++ b/RecipeApp/RecipeApp.csproj @@ -1,63 +1,63 @@ - - - - net8.0-android;net8.0-ios - - - Exe - RecipeApp - true - true - - RecipeApp - - com.companyname.RecipeApp - 25f39401-8c74-4bc9-abeb-61c13bdb1fd7 - - 1.0 - 1 - 14.2 - 14.0 - 21.0 - 10.0.17763.0 - 10.0.17763.0 - 6.5 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + net10.0-android;net10.0-ios + + + Exe + RecipeApp + true + true + + RecipeApp + + com.companyname.RecipeApp + 25f39401-8c74-4bc9-abeb-61c13bdb1fd7 + + 1.0 + 1 + 16.0 + 16.0 + 21.0 + 10.0.17763.0 + 10.0.17763.0 + 6.5 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file