I use nuget to pack some assemblies and additional files.
I need to save the characters separately, so I use "nuget pack -symbols", which creates two separate nupkg files.
The problem is that the .symbols.nupkg package contains only the "lib" directory (with PDB and DLL). It lacks “tools” and “content”.
This means that when someone installs .symbols.nupkg, they do not receive additional files under the "content". And since .symbols.nupkg has the same package identifier as the main .nupkg, nuget will never install the main package that has “content” in it.
This is the same nuspec file that creates both packages, so I cannot control it.
Am I doing something wrong or misunderstanding how to use a character pack?
source share