roslynator
roslynator copied to clipboard
Roslynator is a set of code analysis tools for C#, powered by Roslyn.
Fixes #1639 Add support for the new .slnx Solution File Format to be recognized as a solution.
If `roslynator_use_collection_expression = true`, the code below generates an invalid syntax: ```csharp private static readonly Dictionary Sizes = new() { { GroundingDataSize.Small, 5 }, { GroundingDataSize.Medium, 20 }, { GroundingDataSize.Large,...
Microsoft introduced the new .slnx Solution File Format and since 9.0.200 it is officially supported. https://devblogs.microsoft.com/dotnet/introducing-slnx-support-dotnet-cli/ However Roslynator CLI does not recognize .slnx as a Solution and therefore tries to...
Hi, I would like to contribute to the project and add a few things that I miss. The first thing I would like to add a setting to RCS0053. The...
The following block, triggers RCS0056: ```csharp var a = $$""" - “Hey, {{userContext.User.FirstName}}! test test test test test test test test test test test test test test test test test...
```csharp internal interface IInternal { } public class Public : IInternal { } ``` Running `generate-doc` on this code produces output markdown that looks like this: ````markdown --- sidebar_label: Public...
The Analyzer is incorrectly indicating an issue with the code below. However, after applying the auto-fix, the end result in comparison is different. For the scenario: ```csharp $"""a \n b"""...
RCS1036 is obsolete, nevertheless it's still throwing info in the editor by default. That's confusing for new users. Should we give more priority to the supported analyzer RCS0063 and make...
Having the preference for configured to single line using: `roslynator_doc_comment_summary_style = single_line` Can RCS1253 be muted when the summary is longer than N characters and/or when the `` contains one...
Adding a --ignore-constructors option to the find-symbol command would be very useful. I'm currently removing unused code, but because dependency injection hides explicit constructor references, nearly all of my constructors...