From 9eab6d2eb3825b57d91afe119dc5c234946afdf6 Mon Sep 17 00:00:00 2001 From: Youssef Victor Date: Thu, 16 Feb 2023 11:34:40 +0200 Subject: [PATCH 1/2] fix!: `ICoreWindowEvents` is made internal. BREAKING CHANGE: `ICoreWindowEvents` is no longer public. --- src/Uno.UWP/UI/Core/ICoreWindowEvents.cs | 4 +--- src/Uno.UWP/UI/Core/ICoreWindowsEvents.iOS.cs | 11 +++++------ 2 files changed, 6 insertions(+), 9 deletions(-) diff --git a/src/Uno.UWP/UI/Core/ICoreWindowEvents.cs b/src/Uno.UWP/UI/Core/ICoreWindowEvents.cs index 3ed7c885b42a..b7f74f21c42c 100644 --- a/src/Uno.UWP/UI/Core/ICoreWindowEvents.cs +++ b/src/Uno.UWP/UI/Core/ICoreWindowEvents.cs @@ -1,10 +1,8 @@ #if UNO_HAS_MANAGED_POINTERS -using System; -using System.Linq; namespace Windows.UI.Core; -public interface ICoreWindowEvents +internal interface ICoreWindowEvents { void RaisePointerEntered(PointerEventArgs args); void RaisePointerExited(PointerEventArgs args); diff --git a/src/Uno.UWP/UI/Core/ICoreWindowsEvents.iOS.cs b/src/Uno.UWP/UI/Core/ICoreWindowsEvents.iOS.cs index 0181c206e26a..39148137ba72 100644 --- a/src/Uno.UWP/UI/Core/ICoreWindowsEvents.iOS.cs +++ b/src/Uno.UWP/UI/Core/ICoreWindowsEvents.iOS.cs @@ -1,11 +1,10 @@ using System; -namespace Windows.UI.Core +namespace Windows.UI.Core; + +internal interface ICoreWindowEvents { - public interface ICoreWindowEvents - { - void RaiseKeyUp(KeyEventArgs args); - void RaiseKeyDown(KeyEventArgs args); - } + void RaiseKeyUp(KeyEventArgs args); + void RaiseKeyDown(KeyEventArgs args); } From f54dd454600cf3bf2eddd19ecc289e54348bfc76 Mon Sep 17 00:00:00 2001 From: Youssef Victor Date: Thu, 16 Feb 2023 22:51:02 +0200 Subject: [PATCH 2/2] chore: Update PackageDiffIgnore --- build/PackageDiffIgnore.xml | 1 + 1 file changed, 1 insertion(+) diff --git a/build/PackageDiffIgnore.xml b/build/PackageDiffIgnore.xml index 60b5a707a310..20a939a05e02 100644 --- a/build/PackageDiffIgnore.xml +++ b/build/PackageDiffIgnore.xml @@ -9136,6 +9136,7 @@ +