[quoted text, click to view] <interuser@hotmail.com> wrote in message
news:a840cbfe.0403230702.18d7829a@posting.google.com...
> "Build Solution" builds everything.
> Isn't there a switch somewhere to tell .net to build only what has
changed?
The default is to rebuild only what needs to be built. This includes
projects that
have changed, but also projects that depend on (=reference) those changed
projects and probably also projects that depend on those (etc).
The reason is that a change in a "lower" project could affect the higher
ones,
so that needs to be checked by recompiling.
So, if you only change a top-level project, only that needs to be
recompiled.
If, on the other hand, you change a deep-down library project that is used
everywhere, then everything will be recompiled.
Hans Kesting