support portable pdb files
See original GitHub issuePortable pdb files are designed specifically for .NET. The spec is now 1.0 and an implementation ships with Roslyn for Visual Studio 2015 Update 1. The new format is cross platform and several times smaller, making it practical to include in the nupkg
s #294. This should take care of the CoreCLR status issue of Enable CoreCLR debugging of F#
.
Microsoft.DiaSymReader.PortablePdb
exists to provide compatibility to the existing Windows debugging tools that build on top of that COM API.
I am advocating that the old PDB support be dropped to makes things simpler and easier to maintain.
Issue Analytics
- State:
- Created 8 years ago
- Comments:7 (6 by maintainers)
Top Results From Across the Web
Portable PDB Symbols - Windows drivers
The Portable PDB (Program Database) format describes an encoding of debugging information produced by compilers of Common Language ...
Read more >core/Documentation/diagnostics/portable_pdb.md at main
NET introduces a new symbol file (PDB) format - portable PDBs. Unlike traditional PDBs which are Windows-only, portable PDBs can be created and...
Read more >"PDB format is not supported" with .NET portable ...
My Visual Studio 2017 debugger can't work with PDBs in "portable" format in .NET Framework projects. With portable format I mean going to...
Read more >Introducing Portable PDB - InfoQ
The new Portable PDB format drops the features needed for native code, leaving only .NET functionality. This allowed them to simplify the format ......
Read more >PDB format is not supported
These DLL:s are build within Visual Studio when I run the project. I've run clean and rebuild, as well as manually delted the...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
This has been implemented
Awesome! Looking forward to it. I am going to try to get SourceLink working with them this month.