You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
For types, the generated pages contain a Namespace value. This consists of several links. However, this does not respect the project's RootNamespace anymore since version 2.65.2. Instead it creates a link for each namespace part, including non-existing parent namespaces. For instance, if my root namespace is Foo.Bar.Baz, the namespace contains the following links:
Foo -> Foo.html
Bar -> Foo.Bar.html
Baz -> Foo.Bar.Baz.html
The problem is that Foo.html and Foo.Bar.html don't exist, leading to 404 errors.
Maybe I'm missing some configuration, but I tried several options including globalNamespaceId but the issue is not fixed. Downgrading to version 2.65.1 isn't possible because of #9047 and #9153.
Describe the bug
For types, the generated pages contain a
Namespace
value. This consists of several links. However, this does not respect the project'sRootNamespace
anymore since version 2.65.2. Instead it creates a link for each namespace part, including non-existing parent namespaces. For instance, if my root namespace isFoo.Bar.Baz
, the namespace contains the following links:Foo
->Foo.html
Bar
->Foo.Bar.html
Baz
->Foo.Bar.Baz.html
The problem is that
Foo.html
andFoo.Bar.html
don't exist, leading to 404 errors.Maybe I'm missing some configuration, but I tried several options including
globalNamespaceId
but the issue is not fixed. Downgrading to version 2.65.1 isn't possible because of #9047 and #9153.To Reproduce
Minimal
docfx.json
:The
Foo.Bar.Baz
project descriptor contains this:Run
docfx docfx.json
from the directory wheredocfx.json
is located.This successfully generates the API pages but with the invalid links.
Expected behavior
Foo
is not a linkBar
is not a linkBaz
is a link toFoo.Bar.Baz.html
Screenshots

Generated using version 2.65.1:
Generated using the latest version:

Context (please complete the following information):
The text was updated successfully, but these errors were encountered: