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.