We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e3cbcab commit 0b093c9Copy full SHA for 0b093c9
src/Depends/Program.cs
@@ -172,8 +172,8 @@ public AppWindow(DependencyGraph graph) : base("Depends", 0)
172
{
173
_graph = graph ?? throw new ArgumentNullException(nameof(graph));
174
_dependencies = _graph.Nodes.OrderBy(x => x.Id).ToImmutableList();
175
- _visibleDependencies = _dependencies;
176
- _assembliesVisible = true;
+ _visibleDependencies = _dependencies.Where(d => !(d is AssemblyReferenceNode)).ToImmutableList();
+ _assembliesVisible = false;
177
_lastSelectedDependencyIndex = -1;
178
179
ColorScheme = new ColorScheme
0 commit comments