I have a C# application that needs to define an icon for the project files that the user can save and load when using the application. I know how to set up the registry entries but what I am struggling with is the icon index for the DefaultIcon for the project file extension.
I've added the icon to the Resources file. I've also added the icon to the Resources folder in Visual Studio. Yet when I reboot my PC an index of one has no icon and an index of zero is the application icon.
I tried setting the icon persistence to "Embedded in .resx". Didn't help.
I added a new resource file called PublicIcons.resx, set the access modifier to "Public" and added the icon. Didn't help either.
I tried adding the icon directly to the project and setting the build action to "Embedded Resource". Again, didn't help.
Gaaaa! Why is such a simple task so annoying?
How do I add an icon to a C# project in Visual Studio and then discover the index of that icon so it can be used for a file type?
thanks, Andy