I have two projects in the current solution:
abc.Dashboard
abc.ThingyService
abc.ThingyService needs to be able to use a class from abc.Dashboard.
I've added a reference to abc.ThingyService pointing at abc.Dashboard (right click on project -> add reference -> projects -> abc.Dashboard) but it's not recognising that it has been added.
One of the files in the abc.ThingyService project contains:
using abc.Dashboard.Services
When I compile, I get the error:
The type or namespace name 'Dashboard' does not exist in the namespace 'abc' (are you missing an assembly reference?)
Am I missing something very obvious here? :/