From c9b2fa1d2da36588a42388282a0a355cf31a5708 Mon Sep 17 00:00:00 2001 From: Mike Griese Date: Fri, 13 Feb 2026 06:06:25 -0600 Subject: [PATCH] winrt isn't gonna like that --- src/modules/cmdpal/doc/initial-sdk-spec/initial-sdk-spec.md | 2 +- .../Microsoft.CommandPalette.Extensions.idl | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/modules/cmdpal/doc/initial-sdk-spec/initial-sdk-spec.md b/src/modules/cmdpal/doc/initial-sdk-spec/initial-sdk-spec.md index 24a70b6dbf..ba3732c684 100644 --- a/src/modules/cmdpal/doc/initial-sdk-spec/initial-sdk-spec.md +++ b/src/modules/cmdpal/doc/initial-sdk-spec/initial-sdk-spec.md @@ -2135,7 +2135,7 @@ We'll use another command provider method to allow the host to ask exensions for items based on their ID. ```csharp -interface ICommandProvider4 requires ICommandProvider +interface ICommandProvider4 requires ICommandProvider3 { ICommandItem GetCommandItem(String id); }; diff --git a/src/modules/cmdpal/extensionsdk/Microsoft.CommandPalette.Extensions/Microsoft.CommandPalette.Extensions.idl b/src/modules/cmdpal/extensionsdk/Microsoft.CommandPalette.Extensions/Microsoft.CommandPalette.Extensions.idl index bcebebdc29..7836a3aac3 100644 --- a/src/modules/cmdpal/extensionsdk/Microsoft.CommandPalette.Extensions/Microsoft.CommandPalette.Extensions.idl +++ b/src/modules/cmdpal/extensionsdk/Microsoft.CommandPalette.Extensions/Microsoft.CommandPalette.Extensions.idl @@ -413,7 +413,7 @@ namespace Microsoft.CommandPalette.Extensions }; [contract(Microsoft.CommandPalette.Extensions.ExtensionsContract, 1)] - interface ICommandProvider4 requires ICommandProvider + interface ICommandProvider4 requires ICommandProvider3 { ICommandItem GetCommandItem(String id); };