I'm updating the WCSF GAT to fit the particular needs of a client. I'm adding the ability to create a service and would like to have a new menu item in the context menu of a solution project which gives this option (Right-click project -> Web App Start Kit -> Service (C#)
This is in thepackage xml file:
<HostData>
...
<
Menu Name="MyGATWCSFProject" Text="Web App Starter Kit" Priority="1">
<
CommandBar Name="Project"/>
</
Menu>
..
</HostData>
And this is in my both the C# and VB flavors of the Service Recipe definition:
<
Caption>Add Service (C#)</Caption>
<
Description>Add Service (C#)</Description>
<
HostData>
<
Icon ID="689" />
<
CommandBar Menu="MyGatWCSFProject"/>
</
HostData>
(The caption and description of the VB services say "Add Service (VB)")
Both Add Service options appear when I right-click on a C# project, but not when right-clicking on a VB project. I've unregistered, compiled. and re-registered the package several times. I avoiding using QuickRegister when testing for the menu.
What am I missing?
Thanks,
John