Skip to content

Instantly share code, notes, and snippets.

Created February 16, 2018 16:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/c01ad335a751ecc1c872f2e810b1bc49 to your computer and use it in GitHub Desktop.
Save anonymous/c01ad335a751ecc1c872f2e810b1bc49 to your computer and use it in GitHub Desktop.
deploytarget
<Target Name="deployts">
<ItemGroup>
<ItemsToExclude Include="C:\staging\source\bin\**\*.*"/>
<ItemsToExclude Include="C:\staging\source\*.*"/>
</ItemGroup>
<ItemGroup>
<ItemsToDeploy Include="C:\staging\source\**\*.*" Exclude="@(ItemsToExclude)"/>
</ItemGroup>
<Copy DestinationFolder="C:\staging\destination\%(RecursiveDir)" SourceFiles="@(ItemsToDeploy)" />
</Target>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment