From 3303e6be3d44a5c80efdec57212d1eb8033e8fb2 Mon Sep 17 00:00:00 2001 From: nor0x Date: Mon, 1 Jun 2026 17:28:09 +0200 Subject: [PATCH 1/2] LatestWindowsTfm added to Directory.Build.props Add LatestWindowsTfm to `Directory.Build.props` and include it in the `TargetFrameworks` of `Sentry.Maui.csproj`. This update ensures that the project targets the latest Windows TFM which fixes #4578 --- Directory.Build.props | 1 + src/Sentry.Maui/Sentry.Maui.csproj | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/Directory.Build.props b/Directory.Build.props index 1ab7f22a22..d3e6c27ede 100644 --- a/Directory.Build.props +++ b/Directory.Build.props @@ -34,6 +34,7 @@ net9.0-ios18.0 net10.0-maccatalyst26 net9.0-maccatalyst18.0 + net10.0-windows10.0.19041.0 net9.0-windows10.0.19041.0 diff --git a/src/Sentry.Maui/Sentry.Maui.csproj b/src/Sentry.Maui/Sentry.Maui.csproj index cdaed0c240..e49cda1c58 100644 --- a/src/Sentry.Maui/Sentry.Maui.csproj +++ b/src/Sentry.Maui/Sentry.Maui.csproj @@ -10,7 +10,7 @@ $(TargetFrameworks);$(LatestAndroidTfm);$(PreviousAndroidTfm) $(TargetFrameworks);$(LatestIosTfm);$(PreviousIosTfm) $(TargetFrameworks);$(LatestMacCatalystTfm);$(PreviousMacCatalystTfm) - $(TargetFrameworks);$(PreviousWindowsTfm) + $(TargetFrameworks);$(PreviousWindowsTfm);$(LatestWindowsTfm)