C#C
C#3y ago
dstr

Copy folder in .csproj

<ItemGroup>
    <Content Include="assets\**" CopyToOutputDirectory="Always" />
</ItemGroup>

This results in all the items in the asset folder ending up in <output dir>/assets/ whereas I would like them to be copied to <output dir>/.
Was this page helpful?