Using the VS2019 extension SonarLint v4.13.0.11687
I am getting “Remove this unnecessary ‘using’.” message when the namespace is used by documentation comment tags. Example:
using Primus.KPI.BitProcessing.Interfaces;
[and later in the class code:]
/// <summary>
/// Query for <see cref="IBitDataService.GetInstallBuildItems(int)"/>
/// </summary>
public const string GetInstallBuildItems = @" ... ";