diff --git a/src/Uno.Sdk/ReadMe.md b/src/Uno.Sdk/ReadMe.md index ddda2a91c..4c43b711e 100644 --- a/src/Uno.Sdk/ReadMe.md +++ b/src/Uno.Sdk/ReadMe.md @@ -5,7 +5,7 @@ The Uno.Sdk powers the Uno Platform Single Project, including the ability to imp | MSBuild Property | Default Version | |----------------|:---------------:| | UnoVersion* | 6.5.0-dev.542 | -| UnoExtensionsVersion | 7.1.0-dev.59 | +| UnoExtensionsVersion | 7.1.0-dev.62 | | UnoToolkitVersion | 8.4.0-dev.19 | | UnoThemesVersion | 6.1.0-dev.4 | | UnoCSharpMarkupVersion | 6.5.0-dev.3 | @@ -355,7 +355,7 @@ The Uno.Sdk powers the Uno Platform Single Project, including the ability to imp }, { "group": "Extensions", - "version": "7.1.0-dev.59", + "version": "7.1.0-dev.62", "packages": [ "Uno.Extensions.Authentication.WinUI", "Uno.Extensions.Authentication.MSAL.WinUI", diff --git a/src/Uno.Sdk/packages.json b/src/Uno.Sdk/packages.json index 26f00d270..5c5e659e0 100644 --- a/src/Uno.Sdk/packages.json +++ b/src/Uno.Sdk/packages.json @@ -313,7 +313,7 @@ }, { "group": "Extensions", - "version": "7.1.0-dev.59", + "version": "7.1.0-dev.62", "packages": [ "Uno.Extensions.Authentication.WinUI", "Uno.Extensions.Authentication.MSAL.WinUI", diff --git a/src/Uno.Templates/content/unoapp/MyExtensionsApp.1/App.recommended.cs b/src/Uno.Templates/content/unoapp/MyExtensionsApp.1/App.recommended.cs index fc5727e55..b9fe245e2 100644 --- a/src/Uno.Templates/content/unoapp/MyExtensionsApp.1/App.recommended.cs +++ b/src/Uno.Templates/content/unoapp/MyExtensionsApp.1/App.recommended.cs @@ -1,3 +1,4 @@ +using System.Diagnostics.CodeAnalysis; using Uno.Resizetizer; //-:cnd:noEmit @@ -19,8 +20,10 @@ public App() //+:cnd:noEmit #if useFrameNav + [SuppressMessage("Trimming", "IL2026:Members annotated with 'RequiresUnreferencedCodeAttribute' require dynamic access otherwise can break functionality when trimming application code", Justification = "Uno.Extensions APIs are used in a way that is safe for trimming in this template context.")] protected override void OnLaunched(LaunchActivatedEventArgs args) #else + [SuppressMessage("Trimming", "IL2026:Members annotated with 'RequiresUnreferencedCodeAttribute' require dynamic access otherwise can break functionality when trimming application code", Justification = "Uno.Extensions APIs are used in a way that is safe for trimming in this template context.")] protected async override void OnLaunched(LaunchActivatedEventArgs args) #endif {