v1.8.3
Analyzers
-
Add analyzer MarkTypeWithDebuggerDisplayAttribute (RCC1223)
-
Add analyzer MakeMethodExtensionMethod (RCC1224)
-
Add analyzer MakeSealedClass (RCC1225)
-
Add analyzer AddParagraphToDocumentationComment (RCC1226)
-
Improve analyzer UseConditionalAccess (RCS1146)
x == null || x.y
can be simplified tox?.y != false
x == null || !x.y
can be simplified tox?.y != true
Refactorings
- Improve refactoring FormatExpressionChain (RR0051)
- A chain that contains conditional access (
x?.y
) will be properly formatted.
- A chain that contains conditional access (