I have one straight forward question. Suppose i have a projectA and now i have to add projectB to the solution of projectA. Is there a way to build ProjectA first and after the execution of that is complete can we build projectB and execute..? Consider that both these projects dont have to anything in common.
Thank you in advance!!
Right click the
Solutionnode in the Solution Explorer, thenProject Build Order....Using the
Dependenciestab you can setProjectAas a dependency ofProjectB– this would causeProjectAto build beforeProjectB.