Revisit content assembly copying, now much neater.

This commit is contained in:
Pieter-Jan Briers
2017-08-07 00:31:11 +02:00
parent 4454525e6d
commit 133763c43c
3 changed files with 25 additions and 48 deletions

6
SS14.Content.targets Normal file
View File

@@ -0,0 +1,6 @@
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<!-- Common target to copy content assemblies to the parent projects. -->
<Target Name="CopyContentAssemblies">
<Copy SourceFiles="@(ContentAssemblies)" DestinationFolder="$(ContentAssemblyTarget)" />
</Target>
</Project>