Pdb2Mdb-GUI icon indicating copy to clipboard operation
Pdb2Mdb-GUI copied to clipboard

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

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>