resharper-structured-logging
resharper-structured-logging copied to clipboard
An extension for ReSharper and Rider that highlights structured logging templates and contains some useful analyzers
JB Rider 2024.3 EAP1 has been released - can be the support for this version provided? Thanks a lot!!
The constructor analyzer does not work with primary constructors, looking at the code I wonder if it is as simple as adding this: ``` using JetBrains.ReSharper.Feature.Services.Daemon; using JetBrains.ReSharper.Psi; using JetBrains.ReSharper.Psi.CSharp.Tree;...
It would be great if we could apply this quick fix to a whole solution
The "Convert to compile-time constant message template" feature transforms these lines: ```CSharp var aaa = 123; var bbb = 456; _logger.LogInformation($"A: '{aaa}', B: {bbb}"); _logger.LogInformation($"A: ''''''' {aaa}"); ``` into these:...