I am using this example from the Microsoft Docs to add a button in the context menu, I am running the validator and the manifest file is valid. This ExtensionPoint is right below the PrimaryCommandSurface ExtensionPoint.When I add the ContextMenu ExtensionPoint, the Add-in is no longer visible in “My Add-ins”, if I remove everything in the Control(inside OfficeMenu) then it appears again. Has anyone run into this issue?
p.s: In my example all the resid-s are mapped correctly to the resources declared Inside Resources.
<ExtensionPoint xsi:type="ContextMenu">
<OfficeMenu id="ContextMenuText">
<Control xsi:type="Button" id="Button2Id1">
<Label resid="residLabel2" />
<Supertip>
<Title resid="residLabel" />
<Description resid="residToolTip" />
</Supertip>
<Icon>
<bt:Image size="16" resid="icon2_32x32" />
<bt:Image size="32" resid="icon2_32x32" />
<bt:Image size="80" resid="icon2_32x32" />
</Icon>
<Action xsi:type="ShowTaskpane">
<SourceLocation resid="residUnitConverterUrl" />
</Action>
</Control>
</OfficeMenu>
</ExtensionPoint>