I have a c# project, where the default namespace is Project.App
- I have another project, where the default namespace is Project.Service
.
I'm including the DLL created from Project.Service
as a reference in Project.App
- The reason being the projects are in two different solutions, maintained by two different groups.
When I try to use the reference in code and compile, I'm always getting an error that says "The type or namespace 'Service' does not exist in the namespace 'Project'".
What am I missing here?
Edit: I found the solution to my issue: Namespace not recognized (even though it is there)