Reputation: 857
I know that rebuilding multiproject solution will clean and then build each project one by one, rather than cleaning all and then building all.
So, the obvious questions will be:
What order does "Rebuild solution" function use for projects?
Is solution's "build order" taken into attention?
Upvotes: 0
Views: 809
Reputation: 311
As per a similar question here: https://social.msdn.microsoft.com/Forums/windows/en-US/34fcc251-b6fe-4878-8274-fa094ae34151/how-do-i-set-the-build-order-of-projects-in-visual-studio-solution?forum=winformssetup
"Visual Studio calculates the build order according to your dependence. If project A depends on project B, Visual Studio will build B priority to A."
This is for both build and rebuild solution.
Upvotes: 2