Created
May 7, 2013 14:44
-
-
Save ridomin/5533116 to your computer and use it in GitHub Desktop.
Clean Binary Files from source Tree
This file contains 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
<?xml version="1.0" encoding="utf-8"?> | |
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003" DefaultTargets="CleanAll"> | |
<Target Name="CleanAll"> | |
<CreateItem Include=".\**\debug\**\*;.\**\release\**\*;.\**\sql\**\*;.\TestResults\**\*;.\**\*.*scc;.\**\*.user"> | |
<Output ItemName="DbgFiles" TaskParameter="Include"/> | |
</CreateItem> | |
<Message Text="Deleting Debug Files" Importance="high" /> | |
<Delete Files="%(DbgFiles.Identity)" ContinueOnError="true" TreatErrorsAsWarnings="true"> | |
<Output ItemName="DeletedFiles1" TaskParameter="DeletedFiles"/> | |
</Delete> | |
<Message Text="%(DeletedFiles1.Identity)" /> | |
</Target> | |
</Project> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Simple MSBUILD script to clean binary files from bin\debug and obj folders