statiqdev / Statiq.Docs

A static documentation site generator.
https://statiq.dev/docs
Other
53 stars 8 forks source link

Methods from base class not listed if base class is generic #56

Open pascalberger opened 1 year ago

pascalberger commented 1 year ago

Assuming the following classes I would expect Foo to be listed as method for documentation of MyClass, but it is only available on documentation of MyBaseClass

public abstract class MyBaseClass<T>
    where T : MyBaseClass<T>
{
    public T Foo()
    {
    }
}

public class MyClass: MyBaseClass<MyClass>
{
}