I have one solution with two project MVC. I added a references to second project to main project. I create a new MapRoute in first project to second project.
routes.MapRoute(
name: "second",
url: "second",
defaults: new { controller = "Home", action = "Index" },
namespaces: new[] { @"SecondProject.Controllers" });
this code has been added in RouteConfig in main project
when I write in URL address https://localhost/second... not working...any idea why?