2026-04-27 14:40:42 +00:00
|
|
|
|
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
|
|
|
|
|
2026-05-06 05:35:17 +00:00
|
|
|
|
<Target Name="CopyPackageCommonToTbfOutput" AfterTargets="Build">
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<CommonPackageFiles Include="$(SolutionDir)packages\Common\*.dll" />
|
|
|
|
|
|
<CommonPackageFiles Include="$(SolutionDir)packages\Common\*.exe" />
|
2026-05-12 11:30:21 +00:00
|
|
|
|
<CommonPackageFiles Include="$(SolutionDir)packages\Common\*.pdb" />
|
|
|
|
|
|
<CommonPackageFiles Include="$(SolutionDir)packages\Common\*.xml" />
|
2026-05-06 05:35:17 +00:00
|
|
|
|
<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>
|
|
|
|
|
|
|
2026-04-27 14:40:42 +00:00
|
|
|
|
</Project>
|