From 74148100415592812f7734fb2f2ea016fcb266e7 Mon Sep 17 00:00:00 2001 From: Mike Griese Date: Fri, 25 Jul 2025 10:13:06 -0500 Subject: [PATCH] Microsoft.CmdPal.Common --- .../Microsoft.CmdPal.Common/Helpers/NativeEventWaiter.cs | 7 ++++--- .../Microsoft.CmdPal.Common/Services/IExtensionWrapper.cs | 2 +- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/src/modules/cmdpal/Microsoft.CmdPal.Common/Helpers/NativeEventWaiter.cs b/src/modules/cmdpal/Microsoft.CmdPal.Common/Helpers/NativeEventWaiter.cs index c36c6f1544..1fde31e517 100644 --- a/src/modules/cmdpal/Microsoft.CmdPal.Common/Helpers/NativeEventWaiter.cs +++ b/src/modules/cmdpal/Microsoft.CmdPal.Common/Helpers/NativeEventWaiter.cs @@ -24,9 +24,10 @@ public static partial class NativeEventWaiter dispatcherQueue.TryEnqueue(() => callback()); } } - }); - - t.IsBackground = true; + }) + { + IsBackground = true + }; t.Start(); } } diff --git a/src/modules/cmdpal/Microsoft.CmdPal.Common/Services/IExtensionWrapper.cs b/src/modules/cmdpal/Microsoft.CmdPal.Common/Services/IExtensionWrapper.cs index 61667366ba..808dc21681 100644 --- a/src/modules/cmdpal/Microsoft.CmdPal.Common/Services/IExtensionWrapper.cs +++ b/src/modules/cmdpal/Microsoft.CmdPal.Common/Services/IExtensionWrapper.cs @@ -55,7 +55,7 @@ public interface IExtensionWrapper /// /// Gets the Unique Id for the extension /// - public string ExtensionUniqueId { get; } + string ExtensionUniqueId { get; } /// /// Checks whether we have a reference to the extension process and we are able to call methods on the interface.