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).
- Host: GitHub
- URL: https://github.com/benjamin-dobell/pdbtomdb
- Owner: Benjamin-Dobell
- License: mit
- Created: 2019-06-12T16:39:38.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2019-09-20T15:41:24.000Z (about 6 years ago)
- Last Synced: 2025-07-07T03:10:24.824Z (3 months ago)
- Language: C#
- Size: 4.88 KB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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.