ReSharper decompiler - can I use it for standalone builds?

I have ReSharper 6.1 and I can use the Move to> Decompiled Sources command to decompile .NET assemblies for which I do not have source code. This is great when I want to look inside the assembly that I referenced in my code.

Is there a way (as in Reflector and ILSpy) to simply provide ReSharper with a standalone build file and decompile it? I want to take the deployed DLL from the server and view the decompiled code so that I can make sure that this is the version, in my opinion.

(I fully understand that the fact that I ask about this means that the version control process leaves much to be desired, but this is a different topic!)

+6
source share
2 answers

You can use the stand-alone dotPeek tool for this task. It uses the same technology as ReSharper.

+9
source

Use dotPeek , which is a standalone application based on the ReSharper decompilation engine (or vice versa, as you like)

+1
source

Source: https://habr.com/ru/post/906294/


All Articles