« Back to home

When dotPeek can save your live

Daj się poz  nać

This post is a little break in my investigation regarding auth stuff. To write my previous posts I had to debug a bit - and this mainly happened with code that was not mine. Debugging javascript code that is not your own is a piece of cake. You simply write debugger somewhere in the script and that’s it - the execution of this code will stop where you place the word debugger. Eventually, you can set a breakpoint in the web browser debugger. Debugging C# code that is not your own requires more involvement, especially if you don’t have source code and pdb files. In this post, I am going to write how dotPeek helps to look inside 3rd party code and see how things works in libraries that I have imported to my project.

dotPeek is a decompiler but it can also work as a Symbol Server. Before you use it, you must set it up. This how I did it:

To configure dotPeek as a Symbol Server you must navigate in Visual Studio to Tools → Options → Debugging → Symbols. And then add a new location for symbols like this:

Add new symbol file

You can check the port on which the symbol server is working in the dotPeek settings Tool → Options → Symbol Server

Configure server port

The debugging options in Visual Studio (Tools → Options → Debugging → General) should be set like this:

Uncheck the Enable Just My Code option
Uncheck the Enable .NET Framework source stepping option
Check the Enable source server support option
Uncheck the Require source files to exactly match the original version

Now when everything is setup you can start symbol server in dotPeek by hitting this button:

Start symbol server

When you first run debug after this configuration it takes some time to load all the desired symbols. You can see what’s going on at the bottom left corner of Visual Studio.

Loading symbols

When all the symbols are loaded, you will see this:

Loading symbols ready

Next time when you hit Run debugging, it will start almost immediately.

You can control which symbols should be loaded in the dotPeek settings Tool → Options → Symbol Server and here you can choose for which assemblies dotPeek should generate symbols.

Generate symbols for

When you do this setup it doesn’t mean you can enter whenever you want by hitting F11 (Step Into). You still must show where the pdb file is for a specific assembly. To do this, open Debug → Windows → Modules during the debugging session and in the Search field type a part of the name of the assembly you want to debug. After, you’ll see in the Modules window Cannot find or open the PDB file., for this assembly.

Cannot find pdb file

Fortunately, dotPeek comes to the rescue. Go to File → Open in dotPeek and navigate to the path where the assembly you want to debug is. You’ll find this path in the Debug → Windows → Modules as you can see here:

Path to dll

When you select the .dll file it will be loaded to the dotPeek Assembly Explorer:

Loaded assembly in dotPeek

Now you can load the pdb for this assembly in Visual Studio. In Debug → Windows → Modules, right click on the selected assembly and you will see this dialog:

Load symbols in modules

Clicking on Load Symbols succeeds in loading symbols for the assembly you want to debug.

Symboles loaded

After this, when you hit F11 (Step Into) you’ll get inside the code of the assembly you want to reflect.

Sometimes you cannot find a direct way from your code to the methods writting by others, which you want to investigate. In this situation, you can use the window Debug → New Breakpoint → Function Breakpoint….

New function Breakpoint

In this window, you can put the fully qualified method name and the debugger will stop at that point when the execution of the application has reached it.

What’s more, if you want, you can generatepdb files in dotPeek and save it. To do this, right click the mouse button on the assembly for which you want pdb. You’ll see this dialog:

Generate pdb

When you click Generate Pdb.. you’ll be asking to pass the destination path for symbols. You should specify the same path where the assembly is located.

Generate pdb dialog

Clicking Generate will cause the pdb file to be generated and copied to the chosen location. By doing this, you can pass this pdb file where it is needed.

Now, you can enjoy the freedom of debugging.

Related posts:

Comments

comments powered by Disqus