include::../why-dotnet.adoc[] == How to fix it Update the name of the field or property to follow the configured naming convention. By default, the following names are considered compliant: * `{logger}` * ``++{_logger}++`` * `{Logger}` * ``++{_Logger}++`` * `{log}` * ``++{_log}++`` === Noncompliant code example [source,csharp,diff-id=1,diff-type=noncompliant] ---- private readonly ILogger myLogger; // Noncompliant public ILogger MyLogger { get; set; } // Noncompliant ---- === Compliant solution [source,csharp,diff-id=1,diff-type=compliant] ---- private readonly ILogger logger; // Compliant public ILogger Logger { get; set; } // Compliant ---- == Resources === Documentation * Microsoft Learn - https://learn.microsoft.com/en-us/dotnet/csharp/fundamentals/coding-style/coding-conventions[Coding conventions] include::../rspecator.adoc[]