up vote 58 down vote favorite
5
share [g+] share [fb]

What does this option do? It is accessible from the Build menu.

link|improve this question

80% accept rate
feedback

6 Answers

up vote 67 down vote accepted

It deletes all the compiled and temporary files associated with a solution. It ensures that the next build is a full one, rather than only changed files being recompiled.

link|improve this answer
1  
Then what is the difference between "Build" and "Rebuild All?" – Velika Oct 14 '10 at 18:44
1  
Imagine a solution with 3 projects. Build only compiles the projects which have changed, since the last build. Rebuild, compiles everything. – BigJump Jan 19 '11 at 10:24
5  
Is Rebuild Solution essentially the same as running Clean Solution and then Build Solution? – Joey Green Feb 23 '11 at 18:34
@JoeyGreen: Yes. – Adam Rosenfield Oct 21 '11 at 15:08
feedback

It deletes all the object code generated during previous compilation/build. It deletes all below kind of files:-

*.obj - object code

*.pdb - program debug databse file

*.bsc - source browser databse

*.ilk - incremental linker file

*.sbr - source browser intermediate file

*.idb - rebuild dependency file

*.lib - library file

*.exe - executable

JFYI - Even a Rebuild All command will do all this and then go on to build the complete set of source files.

-AD

link|improve this answer
feedback

Erases files created during compilation process. Effectively forces a full recompile/build next time.

link|improve this answer
feedback

This is an old post, but I thought this was worth mentioning. When coding for Silverlight, I usually have Blend and VS2010 open at the same time. Because of that, sometimes VS2010 freaks out and IntelliSense can't find where stuff is or something, resulting in it falsely highlighting a lot of errors.

Cleaning the solution fixes this.

link|improve this answer
feedback

careful when you are cleaning a solution; when you do clean a solution and if you reference to a library (say nhibernate) in your project and if that library has a dependency ( say iesi.collections) , then you'll see iesi.collections will be deleted even if you rebuilt the solution and you have to put that dll to your folder, again. or you can also reference to iesi.collections and choose copy-local : yes option from its properties

link|improve this answer
1  
This shouldn't be a problem if you move all your libs to a specific folder other than 'Bin' and/or use NuGet – bbqchickenrobot Sep 2 '11 at 3:34
feedback

FYI, neither Clean nor Rebuild will delete non-build files, eg files copied during a pre-build command. I had been confused about that!

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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