Skip to content

<inheritdoc> doesn't work with fully qualified crefs #36

Description

@joshua-light

Currently, crefs are resolved only when they're specified using short names.

E.g.

/// <inheritdoc cref="A(List{int},byte)" />
public static void A(List<int> x, int y) => ...;

public static void A(List<int> x, byte y) => ...;

We should also resolve crefs like this:

/// <inheritdoc cref="A(System.Collections.Generic.List{int},byte)" />
public static void A(List<int> x, int y) => ...;

public static void A(List<int> x, byte y) => ...;

Metadata

Metadata

Assignees

No one assigned

    Labels

    bugSomething isn't workingroslynIssue related to the built-in Roslyn parser

    Type

    No type

    Fields

    No fields configured for issues without a type.

    Projects

    No projects

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions