I have a solution having two MVC Web Projects.
In main project, AdminController is works as expected(When I hit Admin/Action it looks for view in main project and work accordingly).
In second project I have SiteController. When I hit Site/Action it looks for view in main project and as it is not available in main project and throw error.
I want to access second project controller through main project but don't know how to achieve this.
I do not want to use Area functionality in main project. SiteController should be in second project and should be accessible through main project.