I want to upgrade my nuget packages to .net5. My packages are mainly providing source code snippets. In the previous version I described this via the nuspec file in the section "Files":
<?xml version="1.0"?>
<package>
<metadata>
...
</metadata>
<files>
<file src="hw.Helper.Core\" target="content/hw" />
</files>
</package>
How can I accomplish this in a .net5-package?