Skip to content

Instantly share code, notes, and snippets.

View thepirat000's full-sized avatar
💗
In love with code

Federico Daniel Colombo thepirat000

💗
In love with code
View GitHub Profile
@cchitsiang
cchitsiang / CopyLinkedContentFiles
Created November 1, 2013 10:38
Copying linked content files at each build using MSBuild
<!--http://mattperdeck.com/post/Copying-linked-content-files-at-each-build-using-MSBuild.aspx-->
<Target Name="CopyLinkedContentFiles" BeforeTargets="Build">
<Copy SourceFiles="%(Content.Identity)"
DestinationFiles="%(Content.Link)"
SkipUnchangedFiles='true'
OverwriteReadOnlyFiles='true'
Condition="'%(Content.Link)' != ''" />
</Target>