Search code examples
c#visual-studioraylib

Adding a folder to a project in Visual Studio


enter image description here

I added a folder called "MySamples" the the Examples project. However when I try and use the folder it says its not recognized. Ive tried cleaning/rebuiling the solution. I tried restarting VSstudio and reven restarting PC. How can I get Program.cs to recognize and use the "MySamples" folder.


Solution

  • Is there any file inside the folder MySamples that defines a class under the namespace "Examples.MySamples"? It looks like there's no such namespace defined, and that's why you are not able to reference it.