Reputation: 34870
Is it possible to create a mono mdb from a .net pdb?
Or do I need to build the binary with two compilers?
Upvotes: 12
Views: 4804
Reputation: 679
There is a tool inside Unity Editor called pdb2mdb.exe, and that can be found at
Editor\Data\Mono\lib\mono\2.0\pdb2mdb.exe
If you face any issue in this version then there are other versions also, check this path
Editor\Data\MonoBleedingEdge\lib\mono\4.5\pdb2mdb.exe
Upvotes: 0
Reputation: 34870
Found it
http://www.mono-project.com/FAQ:_Technical
"You can convert PDB files to MDB files using "pdb2mdb" in mono tree, a program written by JB Evain"
http://evain.net/blog/articles/2009/04/27/pdb2mdb-and-mono-cecil-pdb
Upvotes: 16