From cd99326f87daf7480bf6d2cc12e9cb751ff485a8 Mon Sep 17 00:00:00 2001 From: Siegfried Pammer Date: Sun, 30 Dec 2018 21:11:58 +0100 Subject: [PATCH] Debug: restore DecompileAllCommand --- ILSpy/Commands/DecompileAllCommand.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ILSpy/Commands/DecompileAllCommand.cs b/ILSpy/Commands/DecompileAllCommand.cs index 38d89fd68..e54d88877 100644 --- a/ILSpy/Commands/DecompileAllCommand.cs +++ b/ILSpy/Commands/DecompileAllCommand.cs @@ -45,7 +45,7 @@ namespace ICSharpCode.ILSpy Exception exception = null; using (var writer = new System.IO.StreamWriter("c:\\temp\\decompiled\\" + asm.ShortName + ".cs")) { try { - //new CSharpLanguage().DecompileAssembly(asm, new Decompiler.PlainTextOutput(writer), new DecompilationOptions() { FullDecompilation = true, CancellationToken = ct }); + new CSharpLanguage().DecompileAssembly(asm, new Decompiler.PlainTextOutput(writer), new DecompilationOptions() { FullDecompilation = true, CancellationToken = ct }); } catch (Exception ex) { writer.WriteLine(ex.ToString());