Inconsistent XmlDoc parameters analysis for properties with accessors
Repro steps
Project with enabled $(OtherFlags) --warnon:3390 option
type A =
/// <summary>
///
/// </summary>
/// <param name="j"></param>
/// <param name="k"></param>
/// <param name="l"></param>
member x.A with get j = 3
and set k l = ()
The code above results in the following warnings

Remove the documentation for the parameter 'l'

Expected behavior
No warnings 'comment is invalid' for all accessor parameters on the first screenshot
or
no warnings 'comment is incomplete' for the 'l' parameter on the second screenshot
Inconsistent XmlDoc parameters analysis for properties with accessors
Repro steps
Project with enabled $(OtherFlags) --warnon:3390 option
The code above results in the following warnings

Remove the documentation for the parameter 'l'

Expected behavior
No warnings 'comment is invalid' for all accessor parameters on the first screenshot
or
no warnings 'comment is incomplete' for the 'l' parameter on the second screenshot