Fixed - bad copying GenesisCordonelInterface runtime files to TBF target folder

This commit is contained in:
Marek Frniak 2026-05-06 07:35:17 +02:00
parent 0940df2f1a
commit 91c63e0792

View File

@ -1,3 +1,19 @@
<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\*.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>