This is the code where I become CA1008
from FxCop:
[SuppressMessage("Microsoft.Design", "CA1008:EnumsShouldHaveZeroValue", Justification = "some text..")]
public enum ECommunicationsProfil
{
Information = 1,
...
}
Any ideas why SupressMessage
doesnt work here?
I have Visual Studio 2012
, FxCop 10
and CODE_ANALYSIS
flag on project build.