Microsoft.CmdPal.Common

This commit is contained in:
Mike Griese
2025-07-25 10:13:06 -05:00
parent d4ed006946
commit 7414810041
2 changed files with 5 additions and 4 deletions

View File

@@ -24,9 +24,10 @@ public static partial class NativeEventWaiter
dispatcherQueue.TryEnqueue(() => callback());
}
}
});
t.IsBackground = true;
})
{
IsBackground = true
};
t.Start();
}
}

View File

@@ -55,7 +55,7 @@ public interface IExtensionWrapper
/// <summary>
/// Gets the Unique Id for the extension
/// </summary>
public string ExtensionUniqueId { get; }
string ExtensionUniqueId { get; }
/// <summary>
/// Checks whether we have a reference to the extension process and we are able to call methods on the interface.