dotnet-document
dotnet-document copied to clipboard
[Bug] Multiline Problem with seealso and base classes
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
>
{
...
}