Difference between "build" and "rebuild"

  • Thread starter Thread starter Keith Smith
  • Start date Start date
Keith Smith said:
What is the difference between "build" and "rebuild" when building a
project?
In general terms:
Build selectively builds only those parts of a project or solution
(depending on which Build you select) that have changed since the last
build. Rebuilds everything, whether or not it changed.
If you're doing simple stuff like classroom demos, the choice makes little
difference, but if your have a large solution/project, the selective Build
can be a big time saver.
 
Keith said:
What is the difference between "build" and "rebuild" when building a
project?

"build" only builds changed projects (and projects that depend
on them), "rebuild" builds everything.

A second difference is that "rebuild" updates the xml-documentation
files and "build" doesn't.
 
Back
Top