An open API service indexing awesome lists of open source software.

https://github.com/benjamin-dobell/pdbtomdb

CLI program to convert C# debug symbols from PDB to MDB (Mono).
https://github.com/benjamin-dobell/pdbtomdb

Last synced: 2 months ago
JSON representation

CLI program to convert C# debug symbols from PDB to MDB (Mono).

Awesome Lists containing this project

README

          

# pdbtomdb

A super simple CLI program to convert PDB to MDB (Mono). This project is trivial all the heavy lifting is done by [Cecil](https://cecil.pe/).

# Usage:

## Windows

```
PdbToMdb.exe
```

## Mono (Unix)

```
mono PdbToMdb.exe
```

## .NET Core (Unix)

```
dotnet PdbToMdb.dll
```

## Paths / Dependencies

For simplicity, all dependencies of the DLL, as well as the target DLL's PDB, must be placed in the same directory as the target DLL.

The resultant MDB will also be output adjacent to the target DLL.