dotnet-document icon indicating copy to clipboard operation
dotnet-document copied to clipboard

[Bug] Multiline Problem with seealso and base classes

Open lightlike opened this issue 3 years ago • 0 comments

Description

When the signature of a class has multiline base classes the Documentation does not generate comment slashes.

Expected Behaviour

The new lines should start with comment slashes (///) or the \n should be removed

Actual Behaviour

New lines do not start as a comment an break during build

Example (fictional but should work)

public class foo : bar<
    a,
    b
>
{
    ...
}

lightlike avatar Aug 31 '22 10:08 lightlike