I am building my first Visual Studio extension, and now that I am nearing the end I am just trying to make it look a little better. I have my own heading in the top menu with items in it. I would like to add a separator to the menu to make it neater, but can't figure out how to do so.
The separator I am talking about is the line that goes across menus/context menus to separate the items.
I am geussing it will have to be added to the xml in the vsct file but incase it's relevant the add-in is in C#.
I can't really find much on this at all, so I am hoping someone can help me out.
EDIT:I seemed to have figured out my issue. After looking around EVERYWHERE, I got the idea to try putting a couple of the menu items into a different group in the XML vsct file..and VOILA! I now have a cool separator. So the answer is that it is automatically added to separate groups, and it cannot be done by code(or so I think). Remember Extensions don't use C# or VB to add menu items, only add-ins do. Extensions use XML.