Skip to content

Instantly share code, notes, and snippets.

@ChrisMoney
Created October 1, 2019 16:53
Show Gist options
  • Save ChrisMoney/82d57e40d7069a33c5d4c4dbcd622557 to your computer and use it in GitHub Desktop.
Save ChrisMoney/82d57e40d7069a33c5d4c4dbcd622557 to your computer and use it in GitHub Desktop.
Clean assemblies in solution on MAC
#!/bin/bash
# mobile.iOS
Rm -rf -R ~/Documents/GitHub/Platform/src/mobile.iOS/bin || true
Rm -rf -R ~/Documents/GitHub/Platform/src/mobile.iOS/obj || true
# mobile.Android
Rm -rf -R ~/Documents/GitHub/Platform/src/mobile.Android/bin || true
Rm -rf -R ~/Documents/GitHub/Platform/src/mobile.Android/obj || true
# mobile.pcl
Rm -rf -R ~/Documents/GitHub/Platform/src/mobile.pcl/bin || true
Rm -rf -R ~/Documents/GitHub/Platform/src/mobile.pcl/obj || true
# mobile.shared
Rm -rf -R ~/Documents/GitHub/Platform/src/mobile.shared/bin || true
Rm -rf -R ~/Documents/Github/Platform/src/mobile.shared/obj || true
# mobile.shared.iOS
Rm -rf -R ~/Documents/GitHub/Platform/src/mobile.shared.iOS/bin || true
Rm -rf -R ~/Documents/GitHub/Platform/src/mobile.shared.iOS/obj || true
# mobile.iOS.VertifiBinding
Rm -rf -R ~/Documents/GitHub/Platform/src/mobile.iOS.VertifiBinding/bin || true
Rm -rf -R ~/Documents/GitHub/Platform/src/mobile.iOS.VertifiBinding/obj? || true
# mobile.Droid.VertifiBinding
Rm -rf -R ~/Documents/GitHub/Platform/src/mobile.Droid.VertifiBinding/bin || true
Rm -rf -R ~/Documents/GitHub/Platform/src/mobile.Droid.VertifiBinding/obj || true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment