The c# project I am working with has "Warnings as Errors" turned on and they have lots of suppressions in the code. Among them the following:
[System.Diagnostics.CodeAnalysis.SuppressMessage(
"Microsoft.Maintainability"
, "CA1500:VariableNamesShouldNotMatchFieldNames"
, MessageId = "CS$<>8__locals1")]
If I remove the suppression, the build fails. How can I find out which specific identifier in the c# code causes the warning?