Fixed - bad copying GenesisCordonelInterface runtime files to TBF target folder
This commit is contained in:
parent
0940df2f1a
commit
91c63e0792
@ -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>
|
||||
Loading…
Reference in New Issue
Block a user