You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am using StyleCop.Analyzers.Unstable Version 1.2.0.435 and have noticed this issue.
When a <summary> tag on a constructor starts with <para> then the standard text you still get SA1642 reported.
/// <summary>/// Does a thing./// </summary>publicclassB{/// <summary>/// <para>/// Initializes a new instance of the <see cref="B"/> class./// </para>/// <para>/// Some more info about B./// </para>/// </summary>publicB(){}}
The <para> tag be valid in this case:
The <para> tag is for use inside a tag, such as <summary>, <remarks>, or <returns>, and lets you add structure to the text. The <para> tag creates a double spaced paragraph [...]
I am using
StyleCop.Analyzers.Unstable
Version1.2.0.435
and have noticed this issue.When a
<summary>
tag on a constructor starts with<para>
then the standard text you still get SA1642 reported.The
<para>
tag be valid in this case:https://learn.microsoft.com/en-us/dotnet/csharp/language-reference/xmldoc/recommended-tags#para
Update:
This was reported in #1934 in 2019 and reported as closed... although actually that looks like its about get and set.
The text was updated successfully, but these errors were encountered: