We want to split our large asp.net mvc web application into multiple Visual Studio projects so that each team can independently on their visual studio project.
Desired structure is:
- ASP.NET MVC application that is responsible for the base UI
- Module 1 - VS Project (Does this need to be a ASP.net MVC App or .dll?)
- Module 2 - VS Project (Does this need to be a ASP.net MVC App or .dll?)
- so on....
Each module should contain it's own controller & views that are responsible for functioning of the module. T
How to split the ASP.NET Application in to multiple projects and then merge them as a single website during build process?