Visual Studio 2005 Clean Solution - Stack Overflow most recent 30 from stackoverflow.com2009-12-22T08:57:10Zhttp://stackoverflow.com/feeds/question/480608http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/480608/visual-studio-2005-clean-solution3Visual Studio 2005 Clean Solutionoo2009-01-26T17:27:06Z2009-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#4806223Answer by MattK for Visual Studio 2005 Clean SolutionMattK2009-01-26T17:30:28Z2009-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#4806341Answer by Gulzar for Visual Studio 2005 Clean SolutionGulzar2009-01-26T17:32:55Z2009-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#4807770Answer by Oleg for Visual Studio 2005 Clean SolutionOleg2009-01-26T18:10:46Z2009-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>