Visual Studio (2008) 'Clean Solution' Option - Stack Overflow most recent 30 from stackoverflow.com2009-11-25T20:10:37Zhttp://stackoverflow.com/feeds/question/221803http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/221803/visual-studio-2008-clean-solution-option11Visual Studio (2008) 'Clean Solution' OptionJangwenyi2008-10-21T13:06:58Z2008-10-21T13:28:57Z
<p>What does this option do? It is accessible from the Build menu.</p>
http://stackoverflow.com/questions/221803/visual-studio-2008-clean-solution-option/221808#2218081Answer by Brian Knoblauch for Visual Studio (2008) 'Clean Solution' OptionBrian Knoblauch2008-10-21T13:07:59Z2008-10-21T13:07:59Z<p>Erases files created during compilation process. Effectively forces a full recompile/build next time.</p>
http://stackoverflow.com/questions/221803/visual-studio-2008-clean-solution-option/221810#22181021Answer by David Arno for Visual Studio (2008) 'Clean Solution' OptionDavid Arno2008-10-21T13:08:21Z2008-10-21T13:14:37Z<p>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.</p>
http://stackoverflow.com/questions/221803/visual-studio-2008-clean-solution-option/221839#22183910Answer by goldenmean for Visual Studio (2008) 'Clean Solution' Optiongoldenmean2008-10-21T13:16:02Z2008-10-21T13:16:02Z<p>It deletes all the object code generated during previous compilation/build.
It deletes all below kind of files:- </p>
<p>*.obj - object code </p>
<p>*.pdb - program debug databse file</p>
<p>*.bsc - source browser databse </p>
<p>*.ilk - incremental linker file</p>
<p>*.sbr - source browser intermediate file</p>
<p>*.idb - rebuild dependency file</p>
<p>*.lib - library file</p>
<p>*.exe - executable</p>
<p>JFYI - Even a Rebuild All command will do all this and then go on to build the complete set of source files.</p>
<p>-AD</p>