It seems that when creating a nuget package with content files in .NET Core 2 the content files will be installed as linked files by default. This differs from what happens in .NET Framework which is that the files got copied into the project.
I am currently including content files using the following code in the .csproj file and then creating a nuget package using msbuild.
<Content Include="BuildExample\*.*">
<Pack>true</Pack>
</Content>
How can I include content files which get copied into the project rather than linked into the project when the nuget package is installed?