I have 2 projects in same solution, let's say ProjectA and ProjectB. I've added ProjectB in references for ProjectA.
What I want to achieve is when I run ProjectA to actually run Index action of HomeController of ProjectB.
What I did for now is added ProjectB in namespaces for routes.MapRoute(...) for HomeController in ProjectA and it calls HomeController from ProjectB. But the problem is, when it wants to return the view, it tries to find it in ProjectA, not in ProjectB.
Is it possible to fix this?