vote up 11 vote down star
1

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

flag

51% accept rate

3 Answers

vote up 21 vote down check

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|flag
vote up 10 vote down

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|flag
vote up 1 vote down

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

link|flag

Your Answer

Get an OpenID
or

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