Let's say I have multiple projects within a solution. I have the main project parent_project
and another project child_project
.
How can I access classes / namespaces residing in parent_project
from child_project
?
I have already added a Reference to child_project
in parent_project
so I can't add a Reference to parent_parent
in child_project
as it would create a circular dependency.
Is this possible?