Any ideas about this error in Visual Studio 2017: "The name 'PluginResources' does not exist in the current context"
Here is a code snippet:
info.Name = PluginResources.Plugin_NiceName;
info.TranslationProviderIcon = PluginResources.band_aid_icon;
info.TooltipText = PluginResources.Plugin_Tooltip;
It seems that the PluginResources.resx file is not getting used. I set the Build Action to Embedded Resource but that didn't fix the problem.
Thanks for any help!
Gary