I have been following a previous SO question. So I ended up writing in my csproj:
<ItemGroup><Content Include="Data\Dicts\*.json"><CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory><PackageCopyToOutput>true</PackageCopyToOutput><IncludeInPackage>true</IncludeInPackage><BuildAction>Content</BuildAction><Pack>true</Pack><PackagePath>contentFiles/any/any/Json;content/Json</PackagePath></Content></ItemGroup>
However it seems it is being installed into two folders at the same time:
What did I misunderstood ?
Thanks