Skip to content

Commit fc9b60f

Browse files
authored
Include global type metadata for all output formats (#10611)
1 parent dd16c80 commit fc9b60f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Docfx.Dotnet/DotnetApiCatalog.Toc.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ IEnumerable<TocNode> CreateToc(ISymbol symbol, Compilation compilation)
6262
switch (symbol)
6363
{
6464
case INamespaceSymbol { IsGlobalNamespace: true } ns:
65-
foreach (var child in ns.GetNamespaceMembers())
65+
foreach (var child in ns.GetMembers())
6666
foreach (var item in CreateToc(child, compilation))
6767
yield return item;
6868
break;

0 commit comments

Comments
 (0)