Deploy multiple webapp projects (different areas) to same site?

Viewed 357

Multiple Asp.Net Framework 4.6.2 MVC/Razor projects within a single solution. They use Areas, and each project will implement one or more Areas, distinct from the other. One project acts as the "primary", and includes the global.asax. The "subordinate" apps can know about the "primary", but not vice versa.

Is it possible to deploy these to the same web site? (on-prem VM). There would be some collisions, such as the _Layout.cshtml.

Some how I'd have to be able to setup dependency injections for the classes in the "subordinate" project assembly.

Thanks

-John

1 Answers
Related