This repository has been archived on 2024-11-28. You can view files and clone it, but cannot push or open issues or pull requests.
LuisLeon_FactuGES/Source/ClearFiles.msbuild
2007-06-11 15:29:06 +00:00

18 lines
562 B
Plaintext

<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003" DefaultTargets="ShowFiles">
<ItemGroup>
<FilesToDelete Include="**\*.dcu"/>
<FilesToDelete Include="**\*.dcp"/>
<FilesToDelete Include="**\*.map"/>
<FilesToDelete Include="**\*.dsk"/>
<FilesToDelete Include="**\*.~*"/>
<FilesToDelete Include="**\*.bpl"/>
</ItemGroup>
<Target Name="CleanFiles">
<Delete Files="@(FilesToDelete)" ContinueOnError="true" />
</Target>
<Target Name="ShowFiles">
<Message Text="@(FilesToDelete)"/>
</Target>
</Project>