I added several files (HTML, CSS, etc.) as resources for my Visual Studio project. According to MSDN, I must have access to these resources through
MyProjectName.Properties.Resources.Filename
Unfortunately, IntelliSense does not even know the Properties property that underlies MyProjectName. If I type "MyProjectName", IntelliSense offers me a few things, but no properties. I have already built a project, but nothing has changed.
If this is important: this project is not the main / start-up project of my Visual Studio solution.
source
share