Skip to content

Commit

Permalink
Add a script to fully clean solution bin and obj folders.
Browse files Browse the repository at this point in the history
  • Loading branch information
KeRNeLith committed Jun 7, 2020
1 parent cd0d22f commit 2ad38a6
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions CleanSolution.ps1
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Get-ChildItem .\ -include bin,obj -Recurse | foreach ($_) { remove-item $_.fullname -Force -Recurse }

0 comments on commit 2ad38a6

Please sign in to comment.