From c8c9e622a7daf903a170e1b14267d8e031a72d52 Mon Sep 17 00:00:00 2001 From: Arlo Godfrey Date: Mon, 26 Aug 2024 12:32:35 -0500 Subject: [PATCH 1/4] Update tooling to include wasdk 1.6-preview2 changes --- tooling | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tooling b/tooling index df780af4..df20cfdd 160000 --- a/tooling +++ b/tooling @@ -1 +1 @@ -Subproject commit df780af45016b43606f04d202255e37033402af5 +Subproject commit df20cfdd305d224f768369d48ecfe9b53718f45d From 6964090a7297ed3a3439b9868bd0d1dc057cd2df Mon Sep 17 00:00:00 2001 From: Arlo Godfrey Date: Fri, 6 Sep 2024 15:53:51 -0500 Subject: [PATCH 2/4] Update tooling to latest main --- tooling | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tooling b/tooling index df20cfdd..249e2c09 160000 --- a/tooling +++ b/tooling @@ -1 +1 @@ -Subproject commit df20cfdd305d224f768369d48ecfe9b53718f45d +Subproject commit 249e2c09f81ad0690d39a01c86292fd32996577d From 9686c32c1810884b7f847c7ba7efac9dbacaa615 Mon Sep 17 00:00:00 2001 From: Arlo Godfrey Date: Fri, 6 Sep 2024 17:30:45 -0500 Subject: [PATCH 3/4] Added missing source file headers --- components/TitleBar/src/InfoHelper.cs | 8 ++++++-- components/TitleBar/src/NativeMethods.cs | 8 ++++++-- 2 files changed, 12 insertions(+), 4 deletions(-) diff --git a/components/TitleBar/src/InfoHelper.cs b/components/TitleBar/src/InfoHelper.cs index 6dc80ca8..1b1a482b 100644 --- a/components/TitleBar/src/InfoHelper.cs +++ b/components/TitleBar/src/InfoHelper.cs @@ -1,4 +1,8 @@ -#if WINAPPSDK +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the MIT license. +// See the LICENSE file in the project root for more information. + +#if WINAPPSDK using Windows.ApplicationModel; using Windows.Storage; using Windows.System.Profile; @@ -33,4 +37,4 @@ static InfoHelper() ); } } -#endif \ No newline at end of file +#endif diff --git a/components/TitleBar/src/NativeMethods.cs b/components/TitleBar/src/NativeMethods.cs index 6306ae87..d3874648 100644 --- a/components/TitleBar/src/NativeMethods.cs +++ b/components/TitleBar/src/NativeMethods.cs @@ -1,4 +1,8 @@ -#if WINAPPSDK +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the MIT license. +// See the LICENSE file in the project root for more information. + +#if WINAPPSDK using System.Runtime.InteropServices; namespace CommunityToolkit.WinUI.Controls; @@ -83,4 +87,4 @@ public static IntPtr SetWindowLongAuto(IntPtr hWnd, int nIndex, IntPtr dwNewLong [DllImport("user32.dll")] public static extern IntPtr CallWindowProc(IntPtr lpPrevWndFunc, IntPtr hWnd, WindowMessage Msg, IntPtr wParam, IntPtr lParam); } -#endif \ No newline at end of file +#endif From a3e04cc1c52c1e404ff879e5047270d07a2f0cc2 Mon Sep 17 00:00:00 2001 From: Arlo Godfrey Date: Fri, 6 Sep 2024 17:57:05 -0500 Subject: [PATCH 4/4] Added missing source file header --- components/TitleBar/src/WndProcHelper.cs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/components/TitleBar/src/WndProcHelper.cs b/components/TitleBar/src/WndProcHelper.cs index 8a7c11ac..63ed9732 100644 --- a/components/TitleBar/src/WndProcHelper.cs +++ b/components/TitleBar/src/WndProcHelper.cs @@ -1,3 +1,7 @@ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the MIT license. +// See the LICENSE file in the project root for more information. + #if WINAPPSDK using System.Runtime.InteropServices; using WinRT.Interop;