I made my own extension for Microsoft Visual Studio 2010. Within my VSCT-file I defined a group for my command to add it to the context menu of the code-editor:
<Groups>
<Group guid="guidUCCmdSet" id="UCMenuGroup" priority="0x0600">
<Parent guid="guidSHLMainMenu" id="IDM_VS_CTXT_CODEWIN"/>
</Group>
</Groups>
Thats working like clockwork but the new menu entry isn't visible in the HTML/ASPX and XML sourcecode editor. Unfortunately it's the place were the extension will be most commonly used.
So my question: How to enable my command also for the html/aspx sourcecode editor and - at the best - in the xml editor?
Thanks in advance!