Open RenderMichael opened 1 day ago
Version Used:
.NET SDK 9.0.100
Steps to Reproduce: Existing code:
interface I { public string Name { get { return string.Empty; } } }
After fix:
interface I { string GetName(); }
Diagnostic Id:
IDE did not present one, so I'm unsure whether this is the right repo, or if this is implemented in roslyn-analyzers
roslyn-analyzers
Expected Behavior:
interface I { public string GetName() { return string.Empty; } }
Actual Behavior:
This is the correct repo for this.
Version Used:
.NET SDK 9.0.100
Steps to Reproduce: Existing code:
After fix:
Diagnostic Id:
IDE did not present one, so I'm unsure whether this is the right repo, or if this is implemented in
roslyn-analyzers
Expected Behavior:
Actual Behavior: