Skip to content

Latest commit

 

History

History
14 lines (11 loc) · 439 Bytes

README.md

File metadata and controls

14 lines (11 loc) · 439 Bytes

Pdb2Mdb-GUI

A GUI tool to convert .NET .pdb files to Mono .mdb files.

Screenshot

FAQ

Why does the tool fail on some PDB files with an OutOfMemoryException?

This is some change in the way .NET Core PDB files work. Add these lines to your .csproj to fix:

<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  <DebugType>Full</DebugType>
</PropertyGroup>