Created
July 29, 2016 13:23
-
-
Save sgmeyer/9bcba88e45d22cf4267bf867613d890b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Deletes top level nuget_packages directory | |
find . -type d -name nuget_packages | xargs rm -rf | |
# Finds all of the bin directories and deletes them. | |
find . -type d -name bin | xargs rm -rf | |
# Finds all of the packages directories and deletes | |
find . -type d -name packages | xargs rm -rf | |
# Finds all of the obj directories and deletes everything. | |
find . -type d -name obj | xargs rm -rf | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment