Visual Studio 2005 Clean Solution - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T08:57:10Z http://stackoverflow.com/feeds/question/480608 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/480608/visual-studio-2005-clean-solution 3 Visual Studio 2005 Clean Solution oo 2009-01-26T17:27:06Z 2009-04-06T18:32:58Z <p>If I have a solution with 10 projects. When I click "Clean Solution" does that just clean out the bin/debug in the main startup projects solution or the bin/debug in every projects directory?</p> http://stackoverflow.com/questions/480608/visual-studio-2005-clean-solution/480622#480622 3 Answer by MattK for Visual Studio 2005 Clean Solution MattK 2009-01-26T17:30:28Z 2009-01-26T17:30:28Z <p>It cleans every project contained in the solution, for the currently selected configuration (e.g. Debug, Release, etc).</p> http://stackoverflow.com/questions/480608/visual-studio-2005-clean-solution/480634#480634 1 Answer by Gulzar for Visual Studio 2005 Clean Solution Gulzar 2009-01-26T17:32:55Z 2009-01-26T18:33:28Z <p>To add to other answers, if you want a right click app, you can find the source code of clean source plus <a href="http://www.codinghorror.com/blog/archives/000368.html" rel="nofollow">here</a>.</p> <p><em>This application does one thing. It adds an explorer shell menu to folders that when selected will recursively delete the contents of the bin, obj and setup folders. If you have a .NET project that you wish to share with someone, this is useful to remove the unnecessary stuff from the folder before you zip it up and send it off.</em> </p> http://stackoverflow.com/questions/480608/visual-studio-2005-clean-solution/480777#480777 0 Answer by Oleg for Visual Studio 2005 Clean Solution Oleg 2009-01-26T18:10:46Z 2009-01-26T18:10:46Z <p>It cleans not everything but all projects that are configured to be built in your Solution properties. I.e. if you have solution that includes projects A and B and at some moment you check off Build in Solution properties, Configuration Properties section, for project B, next time when you make clean project B won't be cleaned.</p>