7 lines
302 B
XML
7 lines
302 B
XML
<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>
|