hailstorm75 / ModularDoc

Modular documentation generator for .NET libraries. Currently supporting Markdown only for GitHub, GitLab, and Bitbucket
MIT License
116 stars 11 forks source link

Nested types within nested types are not registered #18

Closed hailstorm75 closed 4 years ago

hailstorm75 commented 4 years ago

Consider the following example:

public class TestClass
{
  public class TestClassNested
  {
    public class TestClassNestedNested
    {

    }
  }
}

The TestClassNestedNested will not be present in the Types collection of the MarkDoc.Members.Dnlib.Resolver.

hailstorm75 commented 4 years ago

Total: 27m