Reader of Portable PDBs format that implements DiaSymReader interfaces (ISymUnmanagedReader, ISymUnmanagedBinder, etc.).
Перейти к файлу
Arun Chander 911971cb6a
Merge pull request #558 from dotnet/dev/phil-allen-msft/xunitFixes
Update Xunit usage to use Assert.Fail
2024-03-28 10:14:05 -07:00
eng Update dependencies from https://github.com/dotnet/arcade build 20231006.1 (#553) 2023-10-06 12:23:27 +00:00
src Update Xunit usage to use Assert.Fail 2024-03-27 13:30:15 -07:00
.editorconfig Update license to MIT (#361) 2021-08-10 12:02:14 -07:00
.gitattributes Clean up .gitattributes (#115) 2018-03-22 18:23:58 -07:00
.gitignore Update to RT 1.0.0-beta2-63009-02 (#128) 2018-06-09 21:02:57 -07:00
Build.cmd Arcade 18616.5 (#146) 2018-12-17 15:21:31 -08:00
CODE-OF-CONDUCT.md Link Code of Conduct (#261) 2020-04-03 10:51:58 -07:00
License.txt Update license to MIT (#361) 2021-08-10 12:02:14 -07:00
NuGet.config Fixup feeds (#282) 2021-02-10 09:22:33 -08:00
README.md Update README.md 2021-06-15 22:09:43 -07:00
Restore.cmd Arcade 18616.5 (#146) 2018-12-17 15:21:31 -08:00
SymReaderPortable.sln Add .editorconfig 2017-08-08 13:21:51 -07:00
THIRD-PARTY-NOTICES Add 3pn notice for dotnet/corefx 2017-03-05 12:15:51 -08:00
Test.cmd Arcade 18616.5 (#146) 2018-12-17 15:21:31 -08:00
azure-pipelines-PR.yml dummy change just to trigger CI 2024-03-26 09:22:15 -07:00
azure-pipelines-codeql.yml Update azure-pipelines-codeql.yml 2022-11-17 14:49:56 -08:00
azure-pipelines.yml PR 2 - Use 1ES pipeline as official 2024-03-25 12:35:30 -07:00
build.sh Fix build paths (#117) 2018-03-23 13:11:59 -07:00
global.json Update dependencies from https://github.com/dotnet/arcade build 20231006.1 (#553) 2023-10-06 12:23:27 +00:00
restore.sh Fix build paths (#117) 2018-03-23 13:11:59 -07:00
test.sh Fix build paths (#117) 2018-03-23 13:11:59 -07:00

README.md

Microsoft.DiaSymReader.PortablePdb

Reader of Portable PDBs format that implements DiaSymReader interfaces (ISymUnmanagedReader, ISymUnmanagedBinder, etc.).

The definitions of the DiaSymReader COM interfaces are provided by Microsoft.DiaSymReader package. The implementation of these interfaces for Windows PDBs is provided by Microsoft.DiaSymReader.Native package.

It is recommended that new applications and libraries read Portable PDBs directly using APIs provided by System.Reflection.Metadata package. These APIs are much more efficient than DiaSymReader APIs. Microsoft.DiaSymReader.PortablePdb bridge is recommended for existings apps that already use DiaSymReader APIs and need to be able to read Portable PDBs without significant changes to their source.

Pre-release builds are available from Azure DevOps public feed: https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet-tools/nuget/v3/index.json (browse).

Build Status