vote up 2 vote down star

What is the difference between just a Rebuild and doing a Clean + Build in Visual Studio 2008? Is Clean + Build different then doing Clean + Rebuild?

flag

4 Answers

vote up 5 vote down check

Rebuild = Clean + Build

link|flag
So you are saying that Rebuild is exactly the same as a Clean followed by a Build? That is kind of what I thought, but I wasn't sure. – Jim McKeeth Aug 7 at 23:50
Yes, that's exactly what rebuild is doing. – earl Aug 8 at 0:00
OK, thanks! – Jim McKeeth Aug 8 at 0:03
2  
Except Rebuild cleans and the rebuilds each project one by one. Clean+Build cleans all of them and then builds all of them. Makes difference mostly if you click it by accident :) – Eugene Aug 8 at 3:35
vote up 4 vote down

Early is correct that 99% of the time Rebuild = Clean + Build.

But they are not guaranteed to be the same. The 3 actions (rebuild, build, clean) represent different MSBuild targets. Each of which can be overriden by any project file to do custom actions. So it is entirely possible for someone to override rebuild to do several actiions before initiating a clean + build (or to remove them entirely).

Very much a corner case but pointing it out due to comment discussions.

link|flag
OK, good to know! Thanks. – Jim McKeeth Aug 8 at 22:05
vote up 0 vote down

From http://www.cs.tufts.edu/r/graphics/resources/vs_getting_started/vs_getting_started.htm, (just googled it):

Build means compile and link only the source files that have changed since the last build, while Rebuild means compile and link all source files regardless of whether they changed or not. Build is the normal thing to do and is faster. Sometimes the versions of project target components can get out of sync and rebuild is necessary to make the build successful. In practice, you never need to Clean.

Build or Rebuild Solution builds or rebuilds all projects in the your solution, while Build or Rebuild builds or rebuilds the StartUp project, "hello" in the screen shot above. To set the StartUp project, right click on the desired project name in the Solution Explorer tab and select Set as StartUp project. The project name now appears in bold. Since the homework solutions typically have only one project, Build or Rebuild Solution is effectively the same as Build or Rebuild .

Compile just compiles the source file currently being edited. Useful to quickly check for errors when the rest of your source files are in an incomplete state that would prevent a successful build of the entire project. Ctrl-F7 is the shortcut key for Compile.

link|flag
vote up -1 vote down

Wow tats crystal clear description. Thanks it helped me !

link|flag
1  
this is not an answer... it's a comment, use 'add comment' next time :) – Ryan Sep 25 at 1:41
thanks for explanation. comments will be used from here onwards. – Manoj Sep 25 at 7:07

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.