We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 77edecb commit c615224Copy full SHA for c615224
1 file changed
src/CodingWithCalvin.MCPServer/Commands/ServerCommands.cs
@@ -47,6 +47,7 @@ public static async Task InitializeAsync(AsyncPackage package)
47
// Show Available Tools command
48
var showToolsCommandId = new CommandID(VSCommandTableVsct.guidMCPServerPackageCmdSet.Guid, VSCommandTableVsct.guidMCPServerPackageCmdSet.cmdidShowTools);
49
var showToolsCommand = new OleMenuCommand(OnShowTools, showToolsCommandId);
50
+ showToolsCommand.BeforeQueryStatus += OnBeforeQueryStatusStop;
51
commandService.AddCommand(showToolsCommand);
52
}
53
0 commit comments