lla.dev
lla.dev

Reputation: 1

How to combine two .net mvc projects

I downloaded and successfully ran 2 quick start projects from azure: AAD B2C and Document DB. They both are mvc projects with their .sln file, web.config file etc... I would like now to merge/ combine them into one single solution, so I can publish them to the same WebApp in Azure. What is the recommended approach? Thanks

Upvotes: 0

Views: 1276

Answers (1)

Sajeetharan
Sajeetharan

Reputation: 222522

ASP.NET MVC V2 has a feature called Areas which allows you to have separate projects referenced by the main application.

Merge two MVC projects - scott

Upvotes: 1

Related Questions