Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/Uno.Sdk/ReadMe.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 |
Expand Down Expand Up @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion src/Uno.Sdk/packages.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
using System.Diagnostics.CodeAnalysis;
using Uno.Resizetizer;

//-:cnd:noEmit
Expand All @@ -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
{
Expand Down
Loading