I'm trying to reference two .dll files in a nupkg. I've added the files as references in the nuspec file:
<references>
<reference file="Crossbones.Modules.Charnel.dll" />
<reference file="Crossbones.Messages.dll" />
</references>
When i try to pack, i get the following warning and the package does not include the referenced files.
WARNING: NU5131: References were found in the nuspec, but some reference assemblies were not found in both the nuspec and ref folder. Add the following reference assemblies: - Add Crossbones.Modules.Charnel.dll to the ref/any/ directory - Add Crossbones.Messages.dll to the ref/any/ directory
Where do i place the files in order to get the package to include the required files?