tbf/TBF/Build/CopyGci.targets.xml

21 lines
839 B
XML

<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Target Name="CopyPackageCommonToTbfOutput" AfterTargets="Build">
<ItemGroup>
<CommonPackageFiles Include="$(SolutionDir)packages\Common\*.dll" />
<CommonPackageFiles Include="$(SolutionDir)packages\Common\*.exe" />
<CommonPackageFiles Include="$(SolutionDir)packages\Common\*.pdb" />
<CommonPackageFiles Include="$(SolutionDir)packages\Common\*.xml" />
<CommonPackageFiles Include="$(SolutionDir)packages\Common\*.config" />
<CommonPackageFiles Include="$(SolutionDir)packages\Common\*.json" />
</ItemGroup>
<Message Text="Copying packages\Common to TBF output: $(TargetDir)" Importance="High" />
<Copy
SourceFiles="@(CommonPackageFiles)"
DestinationFolder="$(TargetDir)"
SkipUnchangedFiles="true" />
</Target>
</Project>