I've read the How to include debugging symbols to .vsix package question and answer and Daniel Cazzulino's post but those ignore the fact that one's VSIX needs to include PDBs from other sources like nuget packages.
For example: I have a VSIX project, name it MyExtension.vsix. It references a nuget package, name it SomeNuget which in turn consists of SomeNuget.dll and SomeNuget.pdb.
I'd like to include that SomeNuget.pdb into my MyExtension.vsix.
If there an answer for that?