Last active
January 12, 2025 14:33
Revisions
-
jbevain revised this gist
Aug 4, 2015 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -10,7 +10,7 @@ Will produce a MyLibrary.dll.mdb usable on Unity if MyLibrary.pdb is present. The .pdb files generated by Visual Studio 2015 can contain new informations that are not handled by the pdb2mdb file shipped by Unity. You can download below the version that VSTU is using which handles the new 2015 format. This executable is self-contained and embeds all the references it needs, namely Mono.Cecil. License Information: -
jbevain revised this gist
Aug 4, 2015 . 1 changed file with 6 additions and 1 deletion.There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -10,4 +10,9 @@ Will produce a MyLibrary.dll.mdb usable on Unity if MyLibrary.pdb is present. The .pdb files generated by Visual Studio 2015 can contain new informations that are not handled by the pdb2mdb file shipped by Unity. You can [download](https://gist.github.com/jbevain/ba23149da8369e4a966f/raw/1054dbf9ecafe462c80d232dd44d3634bc9eb5b4/pdb2mdb.exe) the version that VSTU is using which handles the new 2015 format. This executable is self-contained and embeds all the references it needs, namely Mono.Cecil. License Information: * pdb2mdb is licensed under the Microsoft Public License (Ms-PL). * Mono.Cecil is licensed under the MIT/X11. -
jbevain revised this gist
Aug 4, 2015 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
Binary file not shown. -
jbevain created this gist
Aug 4, 2015 .There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,13 @@ The Visual Studio Tools for Unity are able to convert .NET debug symbol files (namely pdb files) to debug symbols files that are understood by Unity's scripting engine (namely .dll.mdb files) when importing both the .dll and the .pdb in the Assets folder. If you prefer to handle the conversion yourself you need to call a tool named pdb2mdb on the .dll associated with the .pdb: ``` pdb2mdb MyLibrary.dll ``` Will produce a MyLibrary.dll.mdb usable on Unity if MyLibrary.pdb is present. The .pdb files generated by Visual Studio 2015 can contain new informations that are not handled by the pdb2mdb file shipped by Unity. You can download the version that VSTU is using which handles the new 2015 format.