Add pdb files to nuspec
During code analys it is better to have ability to decompile code to understand, what it does. In this case it is better to add pdb files to final nuget package.
Additionally we will have ability to debug this code.
Can I also suggest that you use pdbgit as well as this would link the pdb symbols to the Github source
@phatcher , this is nice tool, however, I'd like to keep pdbs with dll files in the same package, because:
- It allow me to see source code without it downloading
- I will see detailed callstack in exception on each computer, even it is disconnected from internet.
As I understand, pdbgit just simplify debugging.
Also: what's @gsscoder 's decigion?
@imanushin, I don't think this would be an issue for you - if you have the correct version locally and navigate to it then you will resolve to local sources.
All pdbgit does is change the source path embedded in the pdb to point at the github hash version rather than the local path that the published version was compiled on.
Nice, thank you! It is interesting.
Will wait until this my current pull request will be pushed. Then will add this extension.