If you right click on a folder, you will see a "Clean" menu item. I assumed this would clean (remove) the obj and bin directory. However, as far as I can see, it does nothing. Is there another way? (please don't tell me to go to Windows Explorer or the cmd.exe) I'd like to remove the obj and bin folder so that I can easily zip the whole thing.
|
|
Check out Ron Jacobs fantastic open source CleanProject It even takes care of the zipping if you like. Here is the CodePlex link |
|||
|
|
|
This little utility might be want you want. It also deletes *.suo and *.user files and produces a report of all the files and folders that couldn't be deleted for any reason |
|||||||||
|
|
Clean will remove all intermediate and final files created by the build process, such as .obj files and .exe or .dll files. It does not, however, remove the directories where those files get built. I don't see a compelling reason why you need the directories to be removed. Can you explain further? If you look inside these directories before and after a "Clean", you should see your compiled output get cleaned up. |
|||||||||||||
|
|
As others have responded already Clean will remove all artifacts that are generated by the build. But it will leave behind everything else. If you have some customizations in your MSBuild project this could spell trouble and leave behind stuff you would think it should have deleted. You can circumvent this problem with a simple change to your .*proj by adding this somewhere near the end :
Which will remove everything in your bin folder of the current platform/configuration. |
|||
|
|
It doesn't remove the folders, but it does remove the build by-products. Is there any reason you want the actual build folders removed? |
|||||
|
|
I'm looking to delete the folders under the bin too. The reason that I'm interested is that Resharper puts the MSTest TestResults folder under the bin directory so my bin grows quite quickly. |
|||
|
|