Is it possible to include some files on publishing and put them in specific folder.
I would like to put all report files (*.rdlc) in folder Reports in the publish location.
I tried with:
<ItemGroup>
<Content Include="..\Reports\**\*.rdlc"
PackagePath="\Reports"
CopyToPublishDirectory="Always"/>
</ItemGroup>
But it always puts files in to the root of the published destination.