Browse Source

Fix #821 - Reload All Assemblies Should Point to the Correct Assembly

pull/863/head
Siegfried Pammer 8 years ago
parent
commit
10a7e2edff
  1. 7
      ILSpy/TreeNodes/AssemblyTreeNode.cs

7
ILSpy/TreeNodes/AssemblyTreeNode.cs

@ -293,6 +293,13 @@ namespace ICSharpCode.ILSpy.TreeNodes @@ -293,6 +293,13 @@ namespace ICSharpCode.ILSpy.TreeNodes
}
return true;
}
public override string ToString()
{
// ToString is used by FindNodeByPath/GetPathForNode
// Fixes #821 - Reload All Assemblies Should Point to the Correct Assembly
return assembly.FileName;
}
}
[ExportContextMenuEntry(Header = "_Remove", Icon = "images/Delete.png")]

Loading…
Cancel
Save