Browse Source

Fix #2209: Update IlspyCmdProgram.cs to the latest version of WholeProjectDecompiler.

pull/2210/head
Siegfried Pammer 5 years ago
parent
commit
2b4a0a3a2a
  1. 2
      ICSharpCode.Decompiler.Console/IlspyCmdProgram.cs

2
ICSharpCode.Decompiler.Console/IlspyCmdProgram.cs

@ -188,7 +188,7 @@ Remarks: @@ -188,7 +188,7 @@ Remarks:
foreach (var path in ReferencePaths) {
resolver.AddSearchDirectory(path);
}
var decompiler = new WholeProjectDecompiler(GetSettings(), resolver, TryLoadPDB(module));
var decompiler = new WholeProjectDecompiler(GetSettings(), resolver, resolver, TryLoadPDB(module));
decompiler.DecompileProject(module, outputDirectory);
return 0;
}

Loading…
Cancel
Save