I want to delete all bin and obj folders to force all projects to rebuild everything - Stack Overflow most recent 30 from stackoverflow.com2009-12-08T10:33:54Zhttp://stackoverflow.com/feeds/question/755382http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/755382/i-want-to-delete-all-bin-and-obj-folders-to-force-all-projects-to-rebuild-everyth0I want to delete all bin and obj folders to force all projects to rebuild everythingMichaelD2009-04-16T09:37:50Z2009-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#7553874Answer by Brian for I want to delete all bin and obj folders to force all projects to rebuild everythingBrian2009-04-16T09:39:21Z2009-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#7553900Answer by dr. evil for I want to delete all bin and obj folders to force all projects to rebuild everythingdr. evil2009-04-16T09:40:20Z2009-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#7554331Answer by Steve Willcock for I want to delete all bin and obj folders to force all projects to rebuild everythingSteve Willcock2009-04-16T09:54:45Z2009-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#7554870Answer by Simeon Pilgrim for I want to delete all bin and obj folders to force all projects to rebuild everythingSimeon Pilgrim2009-04-16T10:16:50Z2009-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#7560040Answer by Juozas Kontvainis for I want to delete all bin and obj folders to force all projects to rebuild everythingJuozas Kontvainis2009-04-16T12:56:04Z2009-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> <IntermediateOutputPath>..\..\obj\$(AssemblyName)\$(Configuration)\</IntermediateOutputPath>
</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#7560750Answer by pj4533 for I want to delete all bin and obj folders to force all projects to rebuild everythingpj45332009-04-16T13:20:59Z2009-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#10333810Answer by Joel Martinez for I want to delete all bin and obj folders to force all projects to rebuild everythingJoel Martinez2009-06-23T15:39:26Z2009-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#10334031Answer by Jhonny D. Cano -Leftware- for I want to delete all bin and obj folders to force all projects to rebuild everythingJhonny D. Cano -Leftware-2009-06-23T15:43:00Z2009-06-23T15:43:00Z<p>I use to always add a new target on my solutions for achieving this.</p>
<pre><code> <Target Name="clean_folders">
<RemoveDir Directories=".\ProjectName\bin" />
<RemoveDir Directories=".\ProjectName\obj" />
<RemoveDir Directories="$(ProjectVarName)\bin" />
<RemoveDir Directories="$(ProjectVarName)\obj" />
</Target>
</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>