From b2b8b5e0f8b0a0fed4d6af85d6cecc4ab3b4afee Mon Sep 17 00:00:00 2001 From: Jeremy Koritzinsky Date: Fri, 1 May 2020 10:57:52 -0700 Subject: [PATCH] Fix Type.GetGuidSignature to still point to WUX.Interop (#252) --- WinRT.Runtime/Projections/Type.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/WinRT.Runtime/Projections/Type.cs b/WinRT.Runtime/Projections/Type.cs index 1aebcac41..f99068d3e 100644 --- a/WinRT.Runtime/Projections/Type.cs +++ b/WinRT.Runtime/Projections/Type.cs @@ -91,7 +91,7 @@ public static void DisposeAbi(Type abi) { } public static string GetGuidSignature() { - return "struct(Microsoft.UI.Xaml.Interop.TypeName;string;enum(Microsoft.UI.Xaml.Interop.TypeKind;i4))"; + return "struct(Windows.UI.Xaml.Interop.TypeName;string;enum(Windows.UI.Xaml.Interop.TypeKind;i4))"; } } }