Copying content folder in .csproj
To copy content folder in .csproj to output folder, add the following.
<ItemGroup>
<Content Include="$(ProjectDir)Content\**" CopyToOutputDirectory="PreserveNewest" />
</ItemGroup>
To copy content folder in .csproj to output folder, add the following.
<ItemGroup>
<Content Include="$(ProjectDir)Content\**" CopyToOutputDirectory="PreserveNewest" />
</ItemGroup>