向 VisualStudio 的调试菜单添加命令
Add a command to VisualStudio's Debug menu
我想创建一个 VisualStudio 扩展,将命令添加到“调试”菜单。该模板包含以下行:
<Parent guid="guidSHLMainMenu" id="IDM_VS_MENU_TOOLS"/>
将按钮添加到工具菜单。遗憾的是,我不知道如何更改该行,以便该按钮出现在“调试”菜单中。
根据此站点 https://msdn.microsoft.com/en-us/library/cc826118.aspx 没有调试菜单这样的东西:-/
我在这里引用:Adding a menu item to the Debug menu
Debug menu does not in the GUID guidSHLMainMenu, but in GUID
guidVSDebugGroup. And there is no IDM_VS_MENU_DEBUG ID, replace it
with IDM_DEBUG_MENU as following:
Don't forget to reference VSDbgCmd.h and VsDebugGuids.h in your VSCT.
我想创建一个 VisualStudio 扩展,将命令添加到“调试”菜单。该模板包含以下行:
<Parent guid="guidSHLMainMenu" id="IDM_VS_MENU_TOOLS"/>
将按钮添加到工具菜单。遗憾的是,我不知道如何更改该行,以便该按钮出现在“调试”菜单中。
根据此站点 https://msdn.microsoft.com/en-us/library/cc826118.aspx 没有调试菜单这样的东西:-/
我在这里引用:Adding a menu item to the Debug menu
Debug menu does not in the GUID guidSHLMainMenu, but in GUID guidVSDebugGroup. And there is no IDM_VS_MENU_DEBUG ID, replace it with IDM_DEBUG_MENU as following:
Don't forget to reference VSDbgCmd.h and VsDebugGuids.h in your VSCT.