I am using MSBuild to generate my nuget packages.
Is there any command I need to set, to allow it to include my .pdb files, for stepping into the source
.pdb
This can also be accomplished with the dotnet CLI.
By packaging with
dotnet pack --include-symbols --include-source [path-to-project-here]
I get full debugging on the packages I generated