Tim Pohlmann
Tim Pohlmann

Reputation: 4440

Use dotPeek from within Visual Studio without ReSharper

dotPeek is a free .NET decompiler. While being a standalone tool, it is also part of ReSharper: If you tell ReSharper to navigate to the definition of a class which is located in a .dll file, it will automatically decompile the file and present you the source code.

I don't want to use ReSharper. Can I get the same or a similar functionality without ReSharper or is this a ReSharper-only feature?

Upvotes: 13

Views: 17942

Answers (3)

user13339800
user13339800

Reputation: 21

Actually dotPeek integrates with Visual Studio, allowing one to see the decompiled code in the core .net library by pressing F12 (Ctrl+F12).

To achieve this, dotPeek must be configured as a symbol server.

The configuration required is shown in this video:

https://www.youtube.com/watch?v=D7spm6C2j30

Upvotes: 2

Cromm
Cromm

Reputation: 352

From dotPeek 2019.3.2 at least, an option exists to integrate dotPeek to Visual Studio.

EDIT: I've looked into this option and, what it seems it only do, is that within dotPeek, it allows you to export a dll into a visual studio project. So this does not answer your question, sorry.

Upvotes: 2

Jason Evans
Jason Evans

Reputation: 29186

With dotPeek, I haven't found a way of integrating it into Visual Studio, so that you can view the decompiled source of some code. There is an option to add dotPeek to the right-click menu in Windows Explorer, so you can click on a DLL file and open it in dotPeek, but it's not the same experience as inline within Visual Studio.

Apparently ILSpy does have an addin which hooks into Visual Studio, though I've not used that addin myself. ILSpy is a fantastic alternative.

Upvotes: 8

Related Questions