I have VS Extension with Custom Item Template.
This item uses it's own wizard as I need some information to generate multiple classes.
When I add this item using Add New Item -> [My item] Custom wizard (form) is displayed.
Now I would like to have all my new Item Types available from Context menu on solution Explorer.
I added context menu, but I can not make it show my wizard.
I have tried
dte.ItemOperations.AddNewItem( ... )
dte.LaunchWizard( ... )
ProjectItems.AddFromTemplate( ... )
but none of these works.
This is similar problem as in here, but I don't understand solution.