Reputation:
I want to add 2 MVC web application in single Solution, in Visual Studio.
How can i add and how to run both project in single start click or is there any way to start 1 application and it's start other one....
Please give me some idea or solution,
Upvotes: 0
Views: 587
Reputation: 316
In addition to Adil Z's solution, if you need for them to be built in a particular order (if that's what you mean by "is there any way to start 1 application and it's start other one") you can specify build order by right clicking on one of the projects, selecting "Project Dependencies"->"Build Order" from the context menu.
Upvotes: 0
Reputation: 121
If you right click the solution and then select "Multiple Startup Projects" you can tick which projects you want to start after build.
Upvotes: 4