I have a directory tree as such:
+Enums
|+MyEnums.cs
+Src
+Model
+MyModel.cs
And I would like to use the namespace Enums that I declared in MyEnums.cs in the file MyModel.cs. But I cannot figure out how to do such, because when using the code
using Enums;
I constantly get the error/warning that
The type or namespace name 'Enums' could not be found (are you missing a using directive or an assembly reference?)
If I use it in the same folder I have no issue, but I would like to use it across a larger directory tree.