I am working on ASP.NET MVC project where I have one solution dotnetmvc which contains two projects:
- dotnetmvc (main project)
- Service (contains an interface for it).
My problem is that when I am trying to use an interface from the Service project within a controller of the main project then I am not getting a reference to the interface.
Please refer to the below screenshots:
What am I missing?

