Я получил десятки CA1703: ошибка Microsoft.Naming
resource Resources.resx', referenced by name 'code', correct the spelling of
'addfile' in string value '#set ...'
Это смешно, так как StyleCop выполняет проверку правописания в коде, чтобы сделать орфографическую ошибку.
Как я могу подавить эту ошибку StyleCop?
Я пытался использовать SuppressMessage из этой подсказки, но я снова получил ошибку - Error 70 The type or namespace name 'SuppressMessageAttribute' could not be found (are you missing a using directive or an assembly reference?)
[SuppressMessage("Microsoft.StyleCop.CSharp.DocumentationRules", "CA1703:Microsoft.Naming", Justification = "This is tcl script, spelling check is meaningless")]
public static void Generate(string clientDirectory, string topLevelTestbench, string doFileName)