I want to delete all bin and obj folders to force all projects to rebuild everything - Stack Overflow most recent 30 from stackoverflow.com 2009-12-08T10:33:54Z http://stackoverflow.com/feeds/question/755382 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/755382/i-want-to-delete-all-bin-and-obj-folders-to-force-all-projects-to-rebuild-everyth 0 I want to delete all bin and obj folders to force all projects to rebuild everything MichaelD 2009-04-16T09:37:50Z 2009-06-23T15:43:00Z <p>I work with multiple projects and I want to recursively delete all folders with the name 'bin' or 'obj'. That way, I am sure that all projects will rebuild everyhing (sometimes it's the only way to force visual studio to forget all about previous builds). </p> <p>Is there a quick way to accomplish this (with a bat file for example) without having to write a .net program?</p> http://stackoverflow.com/questions/755382/i-want-to-delete-all-bin-and-obj-folders-to-force-all-projects-to-rebuild-everyth/755387#755387 4 Answer by Brian for I want to delete all bin and obj folders to force all projects to rebuild everything Brian 2009-04-16T09:39:21Z 2009-04-16T09:39:21Z <p>Is 'clean' not good enough? Note that you can call msbuild with /t:clean from the command-line.</p> http://stackoverflow.com/questions/755382/i-want-to-delete-all-bin-and-obj-folders-to-force-all-projects-to-rebuild-everyth/755390#755390 0 Answer by dr. evil for I want to delete all bin and obj folders to force all projects to rebuild everything dr. evil 2009-04-16T09:40:20Z 2009-04-16T09:40:20Z <p>I think you can right click to your solution/project and click "Clean" button.</p> <p><em>As far as I remember it was working like that. I don't have my VS.NET with me now so can't test it.</em></p> http://stackoverflow.com/questions/755382/i-want-to-delete-all-bin-and-obj-folders-to-force-all-projects-to-rebuild-everyth/755433#755433 1 Answer by Steve Willcock for I want to delete all bin and obj folders to force all projects to rebuild everything Steve Willcock 2009-04-16T09:54:45Z 2009-04-16T09:54:45Z <p>something like this should work in a batch file - just please run it somewhere safe first to test it!</p> <pre><code>FOR /F "tokens=*" %%G IN ('DIR /B /AD /S bin') DO RMDIR /S /Q "%%G" FOR /F "tokens=*" %%G IN ('DIR /B /AD /S obj') DO RMDIR /S /Q "%%G" </code></pre> <p>Personally I would rather use the msbuild command line clean method to do this though</p> http://stackoverflow.com/questions/755382/i-want-to-delete-all-bin-and-obj-folders-to-force-all-projects-to-rebuild-everyth/755487#755487 0 Answer by Simeon Pilgrim for I want to delete all bin and obj folders to force all projects to rebuild everything Simeon Pilgrim 2009-04-16T10:16:50Z 2009-04-16T10:16:50Z <p>On our build server, we explicitly delete the bin and obj directories, via nant scripts. </p> <p>Each project build script is responsible for it's output/temp directories. Works nicely that way. So when we change a project and add a new one, we base the script off a working script, and you notice the delete stage and take care of it.</p> <p>If you doing it on you logic development machine, I'd stick to clean via Visual Studio as others have mentioned.</p> http://stackoverflow.com/questions/755382/i-want-to-delete-all-bin-and-obj-folders-to-force-all-projects-to-rebuild-everyth/756004#756004 0 Answer by Juozas Kontvainis for I want to delete all bin and obj folders to force all projects to rebuild everything Juozas Kontvainis 2009-04-16T12:56:04Z 2009-04-16T12:56:04Z <p>I actually hate obj files littering the source trees. I usually setup projects so that they output obj files outside source tree. For C# projects I usually use</p> <pre><code> &lt;IntermediateOutputPath&gt;..\..\obj\$(AssemblyName)\$(Configuration)\&lt;/IntermediateOutputPath&gt; </code></pre> <p>For C++ projects </p> <pre><code> IntermediateDirectory="..\..\obj\$(ProjectName)\$(ConfigurationName)" </code></pre> http://stackoverflow.com/questions/755382/i-want-to-delete-all-bin-and-obj-folders-to-force-all-projects-to-rebuild-everyth/756075#756075 0 Answer by pj4533 for I want to delete all bin and obj folders to force all projects to rebuild everything pj4533 2009-04-16T13:20:59Z 2009-04-16T13:20:59Z <p>We have a large .SLN files with many project files. I started the policy of having a "ViewLocal" directory where all non-sourcecontrolled files are located. Inside that directory is an 'Inter' and an 'Out' directory. For the intermediate files, and the output files, respectively.</p> <p>This obviously makes it easy to just go to your 'viewlocal' directory and do a simple delete, to get rid of everything.</p> <p>Before you spent time figuring out a way to work around this with scripts, you might think about setting up something similar.</p> <p>I won't lie though, maintaining such a setup in a large organization has proved....interesting. Especially when you use technologies such as QT that like to process files and create non-sourcecontrolled source files. But that is a whole OTHER story!</p> http://stackoverflow.com/questions/755382/i-want-to-delete-all-bin-and-obj-folders-to-force-all-projects-to-rebuild-everyth/1033381#1033381 0 Answer by Joel Martinez for I want to delete all bin and obj folders to force all projects to rebuild everything Joel Martinez 2009-06-23T15:39:26Z 2009-06-23T15:39:26Z <p><a href="http://vsclean.codeplex.com/" rel="nofollow">http://vsclean.codeplex.com/</a></p> <blockquote> <p>Command line tool that finds Visual Studio solutions and runs the Clean command on them. This lets you clean up the /bin/* directories of all those old projects you have lying around on your harddrive</p> </blockquote> http://stackoverflow.com/questions/755382/i-want-to-delete-all-bin-and-obj-folders-to-force-all-projects-to-rebuild-everyth/1033403#1033403 1 Answer by Jhonny D. Cano -Leftware- for I want to delete all bin and obj folders to force all projects to rebuild everything Jhonny D. Cano -Leftware- 2009-06-23T15:43:00Z 2009-06-23T15:43:00Z <p>I use to always add a new target on my solutions for achieving this.</p> <pre><code> &lt;Target Name="clean_folders"&gt; &lt;RemoveDir Directories=".\ProjectName\bin" /&gt; &lt;RemoveDir Directories=".\ProjectName\obj" /&gt; &lt;RemoveDir Directories="$(ProjectVarName)\bin" /&gt; &lt;RemoveDir Directories="$(ProjectVarName)\obj" /&gt; &lt;/Target&gt; </code></pre> <p>And you can call it from command line</p> <pre><code>msbuild /t:clean_folders </code></pre> <p>This can be your batch file.</p> <pre><code>msbuild /t:clean_folders PAUSE </code></pre>