Visual Studio (2008) 'Clean Solution' Option - Stack Overflow most recent 30 from stackoverflow.com 2009-11-25T20:10:37Z http://stackoverflow.com/feeds/question/221803 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/221803/visual-studio-2008-clean-solution-option 11 Visual Studio (2008) 'Clean Solution' Option Jangwenyi 2008-10-21T13:06:58Z 2008-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#221808 1 Answer by Brian Knoblauch for Visual Studio (2008) 'Clean Solution' Option Brian Knoblauch 2008-10-21T13:07:59Z 2008-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#221810 21 Answer by David Arno for Visual Studio (2008) 'Clean Solution' Option David Arno 2008-10-21T13:08:21Z 2008-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#221839 10 Answer by goldenmean for Visual Studio (2008) 'Clean Solution' Option goldenmean 2008-10-21T13:16:02Z 2008-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>