Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is it possible to actually debug 3rd party code using the source decompiled with dotPeek?

I use VS2012.

I know how to debug the 3rd party code using the .NET Reflector and always used it.

I was wondering whether this is possible with dotPeek from JetBrains or with R# itself without the dotPeek. I am able to navigate to the decompiled 3rd party code, but not step through it.

Any ideas?

like image 462
mark Avatar asked Jun 04 '13 13:06

mark


2 Answers

I see this question is still driving traffic to my blog, so I'll add an answer: yes, debugging 3rd-party assemblies is now possible with the JetBrains dotPeek decompiler (completely free), by using it as a Symbol server.

In my blog post How to debug anything with Visual Studio and dotPeek, I detail exactly how to set it up and step into 3rd-party code with the debugger.

like image 169
Igal Tabachnik Avatar answered Dec 02 '22 17:12

Igal Tabachnik


Yes. dotPeek was released. See this post that explains how to do it in details.

like image 26
splintor Avatar answered Dec 02 '22 18:12

splintor