I'm trying to use Stylecop 4.7.31 I have a project, where an interface is declared:
public interface IRmlManager
{
/// <summary>
/// Adds the notification.
/// </summary>
/// <param name="notificationData">The notification data.</param>
void AddNotification(RmlNotificationData notificationData);
}
and another project, where an implementation of the interface:
public class RmlManager : IRmlManager
{
........
/// ???
void AddNotification(RmlNotificationData notificationData);
........
}
if I use <inheritdoc />
instead of ???, Stylecop ignores it and produces errors:
BusinessLogic\RmlManager.cs(39,1): error : SA1604: The documentation header must have a summary tag.
BusinessLogic\RmlManager.cs(39,1): error : SA1611: The documentation header must contain param tags matching the element's parameter list.
have any ideas what I'm doing wrong? According to google, Stylecop supports this tag starting approximately from 4.1 version