├── .editorconfig ├── .gitattributes ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE.md └── workflows │ └── build.yml ├── .gitignore ├── .vscode └── settings.json ├── CONTRIBUTING.md ├── ChangeLog.md ├── Donations.md ├── GitVersion.yml ├── LICENSE.txt ├── NOTICE.md ├── README.md ├── SECURITY.md ├── docs ├── README.md └── configuration.md ├── images ├── roslynator-logo-large.png ├── roslynator-logo-small.png ├── roslynator-social-card.png └── roslynator.ai ├── src ├── Analyzers.CodeFixes │ ├── Analyzers.CodeFixes.csproj │ ├── CSharp │ │ ├── CodeFixes │ │ │ ├── AddBracesCodeFixProvider.cs │ │ │ ├── AddBracesToIfElseCodeFixProvider.cs │ │ │ ├── AddExceptionToDocumentationCommentCodeFixProvider.cs │ │ │ ├── AddOrRemoveParenthesesWhenCreatingNewObjectCodeFixProvider.cs │ │ │ ├── AddOrRemoveTrailingCommaCodeFixProvider.cs │ │ │ ├── AddParagraphToDocumentationCommentCodeFixProvider.cs │ │ │ ├── AddParenthesesWhenNecessaryCodeFixProvider.cs │ │ │ ├── AnonymousMethodCodeFixProvider.cs │ │ │ ├── AssignmentExpressionCodeFixProvider.cs │ │ │ ├── AttributeArgumentListCodeFixProvider.cs │ │ │ ├── AvoidBoxingOfValueTypeCodeFixProvider.cs │ │ │ ├── AvoidNullReferenceExceptionCodeFixProvider.cs │ │ │ ├── AwaitExpressionCodeFixProvider.cs │ │ │ ├── BaseArgumentListCodeFixProvider.cs │ │ │ ├── BaseCodeFixProvider.cs │ │ │ ├── BaseTypeCodeFixProvider.cs │ │ │ ├── BinaryExpressionCodeFixProvider.cs │ │ │ ├── BlockCodeFixProvider.cs │ │ │ ├── CaseSwitchLabelCodeFixProvider.cs │ │ │ ├── CastExpressionCodeFixProvider.cs │ │ │ ├── ClassDeclarationCodeFixProvider.cs │ │ │ ├── CompositeEnumValueContainsUndefinedFlagCodeFixProvider.cs │ │ │ ├── ConditionalExpressionCodeFixProvider.cs │ │ │ ├── ConstructorDeclarationCodeFixProvider.cs │ │ │ ├── ConvertLambdaExpressionBodyToExpressionBodyCodeFixProvider.cs │ │ │ ├── DeclareEachAttributeSeparatelyCodeFixProvider.cs │ │ │ ├── DeclareEnumMemberWithZeroValueCodeFixProvider.cs │ │ │ ├── DeclareTypeInsideNamespaceCodeFixProvider.cs │ │ │ ├── DefaultExpressionCodeFixProvider.cs │ │ │ ├── DestructorDeclarationCodeFixProvider.cs │ │ │ ├── DirectiveTriviaCodeFixProvider.cs │ │ │ ├── DisposeResourceAsynchronouslyCodeFixProvider.cs │ │ │ ├── DoStatementCodeFixProvider.cs │ │ │ ├── DocumentCodeFixProvider.cs │ │ │ ├── DocumentationCommentCodeFixProvider.cs │ │ │ ├── DuplicateWordInCommentCodeFixProvider.cs │ │ │ ├── ElseClauseCodeFixProvider.cs │ │ │ ├── EmptyStatementCodeFixProvider.cs │ │ │ ├── EndRegionDirectiveTriviaCodeFixProvider.cs │ │ │ ├── EnumDeclarationCodeFixProvider.cs │ │ │ ├── EnumMemberDeclarationCodeFixProvider.cs │ │ │ ├── ExpressionCodeFixProvider.cs │ │ │ ├── ExtractMemberToNewDocumentCodeFixProvider.cs │ │ │ ├── FinallyClauseCodeFixProvider.cs │ │ │ ├── ForStatementCodeFixProvider.cs │ │ │ ├── IfStatementCodeFixProvider.cs │ │ │ ├── ImplementNonGenericCounterpartCodeFixProvider.cs │ │ │ ├── InitializerCodeFixProvider.cs │ │ │ ├── InterpolatedStringCodeFixProvider.cs │ │ │ ├── InterpolationCodeFixProvider.cs │ │ │ ├── InvalidArgumentNullCheckCodeFixProvider.cs │ │ │ ├── InvocationExpressionCodeFixProvider.cs │ │ │ ├── LocalDeclarationStatementCodeFixProvider.cs │ │ │ ├── LockStatementCodeFixProvider.cs │ │ │ ├── MarkLocalVariableAsConstCodeFixProvider.cs │ │ │ ├── MarkTypeWithDebuggerDisplayAttributeCodeFixProvider.cs │ │ │ ├── MemberDeclarationCodeFixProvider.cs │ │ │ ├── NamespaceDeclarationCodeFixProvider.cs │ │ │ ├── NormalizeNullCheckProvider.cs │ │ │ ├── NormalizeUsageOfInfiniteLoopCodeFixProvider.cs │ │ │ ├── ObjectCreationExpressionCodeFixProvider.cs │ │ │ ├── OptimizeLinqMethodCallCodeFixProvider.cs │ │ │ ├── OptimizeMethodCallCodeFixProvider.cs │ │ │ ├── OptimizeStringBuilderAppendCallCodeFixProvider.cs │ │ │ ├── OrderElementsInDocumentationCommentCodeFixProvider.cs │ │ │ ├── OrderTypeParameterConstraintsCodeFixProvider.cs │ │ │ ├── ParameterCodeFixProvider.cs │ │ │ ├── ParameterNameDiffersFromBaseCodeFixProvider.cs │ │ │ ├── ParenthesizedExpressionCodeFixProvider.cs │ │ │ ├── PropertyDeclarationCodeFixProvider.cs │ │ │ ├── RawStringLiteralCodeFixProvider.cs │ │ │ ├── RegionDirectiveTriviaCodeFixProvider.cs │ │ │ ├── RemoveBracesCodeFixProvider.cs │ │ │ ├── RemoveBracesFromIfElseCodeFixProvider.cs │ │ │ ├── RemoveElementInDocumentationCommentCodeFixProvider.cs │ │ │ ├── RemoveEmptyInitializerCodeFixProvider.cs │ │ │ ├── RemoveEmptySyntaxCodeFixProvider.cs │ │ │ ├── RemoveEnumDefaultBaseTypeCodeFixProvider.cs │ │ │ ├── RemoveOriginalExceptionCodeFixProvider.cs │ │ │ ├── RemovePartialModifierFromTypeWithSinglePartCodeFixProvider.cs │ │ │ ├── RemoveRedundantAssignmentCodeFixProvider.cs │ │ │ ├── RemoveRedundantAsyncAwaitCodeFixProvider.cs │ │ │ ├── RemoveRedundantBooleanLiteralCodeFixProvider.cs │ │ │ ├── RemoveRedundantCastCodeFixProvider.cs │ │ │ ├── RemoveRedundantCatchBlockCodeFixProvider.cs │ │ │ ├── RemoveUnnecessaryBracesCodeFixProvider.cs │ │ │ ├── RemoveUnnecessaryElseCodeFixProvider.cs │ │ │ ├── ReturnCompletedTaskInsteadOfNullCodeFixProvider.cs │ │ │ ├── ReturnCompletedTaskInsteadOfNullCodeFixProvider2.cs │ │ │ ├── SimplifyBooleanComparisonCodeFixProvider.cs │ │ │ ├── SimplifyCodeBranchingCodeFixProvider.cs │ │ │ ├── SimplifyLogicalNegationCodeFixProvider.cs │ │ │ ├── SimplifyNestedUsingStatementCodeFixProvider.cs │ │ │ ├── SimplifyNullableOfTCodeFixProvider.cs │ │ │ ├── SingleLineDocumentationCommentTriviaCodeFixProvider.cs │ │ │ ├── StatementCodeFixProvider.cs │ │ │ ├── SwitchSectionCodeFixProvider.cs │ │ │ ├── TokenCodeFixProvider.cs │ │ │ ├── TypeCodeFixProvider.cs │ │ │ ├── TypeParameterCodeFixProvider.cs │ │ │ ├── UnnecessaryAssignmentCodeFixProvider.cs │ │ │ ├── UnnecessaryEnumFlagCodeFixProvider.cs │ │ │ ├── UnnecessaryExplicitUseOfEnumeratorCodeFixProvider.cs │ │ │ ├── UnnecessaryUnsafeContextCodeFixProvider.cs │ │ │ ├── UnnecessaryUsageOfVerbatimStringLiteralCodeFixProvider.cs │ │ │ ├── UnusedMemberCodeFixProvider.cs │ │ │ ├── UnusedParameterCodeFixProvider.cs │ │ │ ├── UseAnonymousFunctionOrMethodGroupCodeFixProvider.cs │ │ │ ├── UseAsyncAwaitCodeFixProvider.cs │ │ │ ├── UseAutoPropertyCodeFixProvider.cs │ │ │ ├── UseBlockBodyOrExpressionBodyCodeFixProvider.cs │ │ │ ├── UseCoalesceExpressionCodeFixProvider.cs │ │ │ ├── UseCompoundAssignmentCodeFixProvider.cs │ │ │ ├── UseConditionalAccessCodeFixProvider.cs │ │ │ ├── UseEmptyStringLiteralOrStringEmptyCodeFixProvider.cs │ │ │ ├── UseExplicitTypeInsteadOfVarCodeFixProvider.cs │ │ │ ├── UseExplicitTypeInsteadOfVarInForEachCodeFixProvider.cs │ │ │ ├── UseExplicitlyOrImplicitlyTypedArrayCodeFixProvider.cs │ │ │ ├── UseHasFlagMethodOrBitwiseOperatorCodeFixProvider.cs │ │ │ ├── UseImplicitOrExplicitObjectCreationCodeFixProvider.cs │ │ │ ├── UseIsOperatorInsteadOfAsOperatorCodeFixProvider.cs │ │ │ ├── UseNameOfOperatorCodeFixProvider.cs │ │ │ ├── UsePatternMatchingInsteadOfAsAndNullCheckCodeFixProvider.cs │ │ │ ├── UsePatternMatchingInsteadOfIsAndCastCodeFixProvider.cs │ │ │ ├── UsePredefinedTypeCodeFixProvider.cs │ │ │ ├── UseRegexInstanceInsteadOfStaticMethodCodeFixProvider.cs │ │ │ ├── UseStringComparisonCodeFixProvider.cs │ │ │ ├── UseVarInsteadOfExplicitTypeCodeFixProvider.cs │ │ │ ├── UseVarOrExplicitTypeCodeFixProvider.cs │ │ │ ├── UsingDirectiveCodeFixProvider.cs │ │ │ ├── ValidateArgumentsCorrectlyCodeFixProvider.cs │ │ │ ├── VariableDeclarationCodeFixProvider.cs │ │ │ ├── VariableDeclaratorCodeFixProvider.cs │ │ │ ├── WhileStatementCodeFixProvider.cs │ │ │ └── XmlNodeCodeFixProvider.cs │ │ ├── Refactorings │ │ │ ├── AbstractTypeShouldNotHavePublicConstructorsRefactoring.cs │ │ │ ├── AddBracesRefactoring.cs │ │ │ ├── AddOrRemoveRegionNameRefactoring.cs │ │ │ ├── AddSummaryToDocumentationCommentRefactoring.cs │ │ │ ├── AvoidLockingOnPubliclyAccessibleInstanceRefactoring.cs │ │ │ ├── AvoidUsageOfForStatementToCreateInfiniteLoopRefactoring.cs │ │ │ ├── AvoidUsageOfUsingAliasDirectiveRefactoring.cs │ │ │ ├── CombineEnumerableWhereMethodChainRefactoring.cs │ │ │ ├── ConvertDoToWhileRefactoring.cs │ │ │ ├── ConvertInterpolatedStringToConcatenationRefactoring.cs │ │ │ ├── DeclareEachAttributeSeparatelyRefactoring.cs │ │ │ ├── DeclareUsingDirectiveOnTopLevelRefactoring.cs │ │ │ ├── DefaultLabelShouldBeLastLabelInSwitchSectionRefactoring.cs │ │ │ ├── Documentation │ │ │ │ ├── AddParamElementToDocumentationCommentRefactoring.cs │ │ │ │ ├── AddTypeParamElementToDocumentationCommentRefactoring.cs │ │ │ │ ├── DocumentationCommentRefactoring`1.cs │ │ │ │ ├── ElementInfo.cs │ │ │ │ ├── NewLinePosition.cs │ │ │ │ ├── ParamElementInfo.cs │ │ │ │ └── TypeParamElementInfo.cs │ │ │ ├── JoinStringExpressionsRefactoring.cs │ │ │ ├── MergeSwitchSectionsRefactoring.cs │ │ │ ├── RemoveBracesRefactoring.cs │ │ │ ├── RemoveEmptyInitializerRefactoring.cs │ │ │ ├── RemoveEmptyRegionRefactoring.cs │ │ │ ├── RemoveEmptyStatementRefactoring.cs │ │ │ ├── RemoveEnumDefaultUnderlyingTypeRefactoring.cs │ │ │ ├── RemoveOriginalExceptionFromThrowStatementRefactoring.cs │ │ │ ├── RemoveRedundantAsOperatorRefactoring.cs │ │ │ ├── RemoveRedundantAutoPropertyInitializationRefactoring.cs │ │ │ ├── RemoveRedundantBaseConstructorCallRefactoring.cs │ │ │ ├── RemoveRedundantBaseInterfaceRefactoring.cs │ │ │ ├── RemoveRedundantBooleanLiteralRefactoring.cs │ │ │ ├── RemoveRedundantCastRefactoring.cs │ │ │ ├── RemoveRedundantDefaultSwitchSectionRefactoring.cs │ │ │ ├── RemoveRedundantDelegateCreationRefactoring.cs │ │ │ ├── RemoveRedundantDisposeOrCloseCallRefactoring.cs │ │ │ ├── RemoveSemicolonAtEndOfDeclarationRefactoring.cs │ │ │ ├── RemoveUnnecessaryCaseLabelRefactoring.cs │ │ │ ├── SimplifyCoalesceExpressionRefactoring.cs │ │ │ ├── SimplifyNestedUsingStatementRefactoring.cs │ │ │ ├── SimplifyNullCheckRefactoring.cs │ │ │ ├── SimplifyNullableOfTRefactoring.cs │ │ │ ├── UnconstrainedTypeParameterCheckedForNullRefactoring.cs │ │ │ ├── UnnecessaryInterpolatedStringRefactoring.cs │ │ │ ├── UnnecessaryInterpolationRefactoring.cs │ │ │ ├── UnusedParameterRefactoring.cs │ │ │ ├── UseCountOrLengthPropertyInsteadOfAnyMethodRefactoring.cs │ │ │ ├── UseEventArgsEmptyRefactoring.cs │ │ │ ├── UseExclusiveOrOperatorRefactoring.cs │ │ │ ├── UseNameOfOperatorRefactoring.cs │ │ │ ├── UseRegexInstanceInsteadOfStaticMethodRefactoring.cs │ │ │ └── ValueTypeObjectIsNeverEqualToNullRefactoring.cs │ │ └── SyntaxRewriters │ │ │ └── UseAsyncAwaitRewriter.cs │ ├── CodeFixes │ │ └── WhitespaceTriviaCodeFixProvider.cs │ ├── GlobalSuppressions.cs │ ├── Roslynator.Analyzers.nuspec │ ├── app.config │ ├── docs │ │ └── NuGetReadme.md │ └── tools │ │ ├── install.ps1 │ │ └── uninstall.ps1 ├── Analyzers.xml ├── Analyzers │ ├── Analysis │ │ └── WhitespaceAnalyzer.cs │ ├── Analyzers.csproj │ ├── CSharp │ │ ├── Analysis │ │ │ ├── AbstractTypeShouldNotHavePublicConstructorsAnalyzer.cs │ │ │ ├── AddBracesAnalyzer.cs │ │ │ ├── AddBracesToIfElseAnalyzer.cs │ │ │ ├── AddBracesToIfElseWhenMultiLineAnalyzer.cs │ │ │ ├── AddBracesToSwitchSectionWithMultipleStatementsAnalyzer.cs │ │ │ ├── AddBracesWhenMultilineAnalyzer.cs │ │ │ ├── AddExceptionToDocumentationCommentAnalyzer.cs │ │ │ ├── AddOrRemoveAccessibilityModifiersAnalyzer.cs │ │ │ ├── AddOrRemoveParenthesesFromConditionInConditionalExpressionAnalyzer.cs │ │ │ ├── AddOrRemoveParenthesesWhenCreatingNewObjectAnalyzer.cs │ │ │ ├── AddOrRemoveRegionNameAnalyzer.cs │ │ │ ├── AddOrRemoveTrailingCommaAnalyzer.cs │ │ │ ├── AddParagraphToDocumentationCommentAnalyzer.cs │ │ │ ├── AddParenthesesWhenNecessaryAnalyzer.cs │ │ │ ├── AddStaticModifierToAllPartialClassDeclarationsAnalyzer.cs │ │ │ ├── AnonymousMethodAnalyzer.cs │ │ │ ├── AttributeArgumentListAnalyzer.cs │ │ │ ├── AvoidBoxingOfValueTypeAnalysis.cs │ │ │ ├── AvoidBoxingOfValueTypeAnalyzer.cs │ │ │ ├── AvoidChainOfAssignmentsAnalyzer.cs │ │ │ ├── AvoidEmptyCatchClauseThatCatchesSystemExceptionAnalyzer.cs │ │ │ ├── AvoidLockingOnPubliclyAccessibleInstanceAnalyzer.cs │ │ │ ├── AvoidNullReferenceExceptionAnalyzer.cs │ │ │ ├── AvoidUsageOfDoStatementToCreateInfiniteLoopAnalyzer.cs │ │ │ ├── AvoidUsageOfForStatementToCreateInfiniteLoopAnalyzer.cs │ │ │ ├── AvoidUsageOfUsingAliasDirectiveAnalyzer.cs │ │ │ ├── AvoidUsageOfWhileStatementToCreateInfiniteLoopAnalyzer.cs │ │ │ ├── BaseDiagnosticAnalyzer.cs │ │ │ ├── BinaryOperatorAnalyzer.cs │ │ │ ├── BitwiseOperatorAnalyzer.cs │ │ │ ├── BooleanLiteralAnalyzer.cs │ │ │ ├── CallCastInsteadOfSelectAnalysis.cs │ │ │ ├── CallExtensionMethodAsInstanceMethodAnalyzer.cs │ │ │ ├── CallThenByInsteadOfOrderByAnalysis.cs │ │ │ ├── CombineEnumerableWhereMethodChainAnalysis.cs │ │ │ ├── ConditionalExpressionAnalyzer.cs │ │ │ ├── ConfigureAwaitAnalyzer.cs │ │ │ ├── ConstantValuesShouldBePlacedOnRightSideOfComparisonsAnalyzer.cs │ │ │ ├── ConvertCommentToDocumentationCommentAnalyzer.cs │ │ │ ├── ConvertInterpolatedStringToConcatenationAnalyzer.cs │ │ │ ├── DeclareEachAttributeSeparatelyAnalyzer.cs │ │ │ ├── DeclareEachTypeInSeparateFileAnalyzer.cs │ │ │ ├── DeclareTypeInsideNamespaceAnalyzer.cs │ │ │ ├── DeclareUsingDirectiveOnTopLevelAnalyzer.cs │ │ │ ├── DefaultExpressionAnalyzer.cs │ │ │ ├── DefaultLabelShouldBeLastLabelInSwitchSectionAnalyzer.cs │ │ │ ├── DisposeResourceAsynchronouslyAnalyzer.cs │ │ │ ├── DuplicateWordInCommentAnalyzer.cs │ │ │ ├── EmbeddedStatementAnalysis.cs │ │ │ ├── EnumShouldDeclareExplicitValuesAnalyzer.cs │ │ │ ├── EnumSymbolAnalyzer.cs │ │ │ ├── FileContainsNoCodeAnalyzer.cs │ │ │ ├── FixDocumentationCommentTagAnalysis.cs │ │ │ ├── FormatDocumentationCommentSummaryAnalyzer.cs │ │ │ ├── FormatSummaryOnMultipleLinesAnalyzer.cs │ │ │ ├── FormatSummaryOnSingleLineAnalyzer.cs │ │ │ ├── IfStatementAnalyzer.cs │ │ │ ├── ImplementExceptionConstructorsAnalyzer.cs │ │ │ ├── InlineLocalVariableAnalyzer.cs │ │ │ ├── InvalidArgumentNullCheckAnalyzer.cs │ │ │ ├── InvocationExpressionAnalyzer.cs │ │ │ ├── JoinStringExpressionsAnalyzer.cs │ │ │ ├── LambdaExpressionAnalyzer.cs │ │ │ ├── MakeClassSealedAnalyzer.cs │ │ │ ├── MakeClassStaticAnalyzer.cs │ │ │ ├── MakeMemberReadOnly │ │ │ │ ├── MakeMemberReadOnlyAnalyzer.cs │ │ │ │ └── MakeMemberReadOnlyWalker.cs │ │ │ ├── MakeMethodExtensionMethodAnalyzer.cs │ │ │ ├── MarkLocalVariableAsConst │ │ │ │ ├── MarkLocalVariableAsConstAnalyzer.cs │ │ │ │ └── MarkLocalVariableAsConstWalker.cs │ │ │ ├── MarkTypeWithDebuggerDisplayAttributeAnalyzer.cs │ │ │ ├── MergeElseWithNestedIfAnalyzer.cs │ │ │ ├── MergeIfWithNestedIfAnalyzer.cs │ │ │ ├── MergePreprocessorDirectivesAnalyzer.cs │ │ │ ├── MergeSwitchSectionsAnalyzer.cs │ │ │ ├── NamedTypeSymbolAnalyzer.cs │ │ │ ├── NonAsynchronousMethodNameShouldNotEndWithAsyncAnalyzer.cs │ │ │ ├── NormalizeFormatOfEnumFlagValueAnalyzer.cs │ │ │ ├── NormalizeNullCheckAnalyzer.cs │ │ │ ├── NormalizeUsageOfInfiniteLoopAnalyzer.cs │ │ │ ├── ObjectCreation │ │ │ │ ├── ImplicitOrExplicitArrayCreationAnalysis.cs │ │ │ │ ├── ImplicitOrExplicitCreationAnalysis.cs │ │ │ │ └── ImplicitOrExplicitObjectCreationAnalysis.cs │ │ │ ├── OptimizeLinqMethodCallAnalysis.cs │ │ │ ├── OptimizeMethodCallAnalysis.cs │ │ │ ├── OptimizeStringBuilderAppendCallAnalysis.cs │ │ │ ├── OrderModifiersAnalyzer.cs │ │ │ ├── OrderNamedArgumentsAnalyzer.cs │ │ │ ├── OrderTypeParameterConstraintsAnalyzer.cs │ │ │ ├── OverridingMemberShouldNotChangeParamsModifierAnalyzer.cs │ │ │ ├── ParameterNameDiffersFromBaseAnalyzer.cs │ │ │ ├── PattenMatchingAnalysis │ │ │ │ └── PatternMatchingVariableDeclarationHelper.cs │ │ │ ├── ReduceIfNestingAnalyzer.cs │ │ │ ├── RefReadOnlyParameterAnalyzer.cs │ │ │ ├── RemoveBracesAnalyzer.cs │ │ │ ├── RemoveBracesFromIfElseAnalyzer.cs │ │ │ ├── RemoveEmptyDestructorAnalyzer.cs │ │ │ ├── RemoveEmptyElseClauseAnalyzer.cs │ │ │ ├── RemoveEmptyFinallyClauseAnalyzer.cs │ │ │ ├── RemoveEmptyInitializerAnalyzer.cs │ │ │ ├── RemoveEmptyNamespaceDeclarationAnalyzer.cs │ │ │ ├── RemoveEmptyRegionAnalyzer.cs │ │ │ ├── RemoveEmptyStatementAnalyzer.cs │ │ │ ├── RemoveEmptySyntaxAnalyzer.cs │ │ │ ├── RemoveEnumDefaultUnderlyingTypeAnalyzer.cs │ │ │ ├── RemoveOriginalExceptionFromThrowStatementAnalyzer.cs │ │ │ ├── RemovePartialModifierFromTypeWithSinglePartAnalyzer.cs │ │ │ ├── RemoveRedundantAsOperatorAnalyzer.cs │ │ │ ├── RemoveRedundantAssignmentAnalyzer.cs │ │ │ ├── RemoveRedundantAsyncAwaitAnalyzer.cs │ │ │ ├── RemoveRedundantAutoPropertyInitializationAnalyzer.cs │ │ │ ├── RemoveRedundantBaseConstructorCallAnalyzer.cs │ │ │ ├── RemoveRedundantBaseInterfaceAnalyzer.cs │ │ │ ├── RemoveRedundantBooleanLiteralAnalysis.cs │ │ │ ├── RemoveRedundantCastAnalyzer.cs │ │ │ ├── RemoveRedundantCatchBlockAnalyzer.cs │ │ │ ├── RemoveRedundantCommaInInitializerAnalyzer.cs │ │ │ ├── RemoveRedundantConstructorAnalyzer.cs │ │ │ ├── RemoveRedundantDefaultSwitchSectionAnalyzer.cs │ │ │ ├── RemoveRedundantDelegateCreationAnalyzer.cs │ │ │ ├── RemoveRedundantDisposeOrCloseCallAnalyzer.cs │ │ │ ├── RemoveRedundantFieldInitializationAnalyzer.cs │ │ │ ├── RemoveRedundantOverridingMemberAnalyzer.cs │ │ │ ├── RemoveRedundantParenthesesAnalyzer.cs │ │ │ ├── RemoveRedundantSealedModifierAnalyzer.cs │ │ │ ├── RemoveRedundantStatementAnalyzer.cs │ │ │ ├── RemoveRedundantStringToCharArrayCallAnalysis.cs │ │ │ ├── RemoveRedundantToStringCallAnalysis.cs │ │ │ ├── RemoveUnnecessaryBlankLineAnalyzer.cs │ │ │ ├── RemoveUnnecessaryBracesAnalyzer.cs │ │ │ ├── RemoveUnnecessaryBracesInSwitchSectionAnalyzer.cs │ │ │ ├── RemoveUnnecessaryCaseLabelAnalyzer.cs │ │ │ ├── RemoveUnnecessaryElseAnalyzer.cs │ │ │ ├── RequiredConfigOptionNotSetAnalyzer.cs │ │ │ ├── ReturnCompletedTaskInsteadOfNullAnalyzer.cs │ │ │ ├── SimplifyArgumentNullCheckAnalyzer.cs │ │ │ ├── SimplifyBooleanComparisonAnalysis.cs │ │ │ ├── SimplifyCoalesceExpressionAnalyzer.cs │ │ │ ├── SimplifyCodeBranchingAnalyzer.cs │ │ │ ├── SimplifyCodeBranchingKind.cs │ │ │ ├── SimplifyConditionalExpressionAnalyzer.cs │ │ │ ├── SimplifyLazyInitializationAnalyzer.cs │ │ │ ├── SimplifyLogicalNegationAnalyzer.cs │ │ │ ├── SimplifyNestedUsingStatementAnalyzer.cs │ │ │ ├── SimplifyNullCheckAnalyzer.cs │ │ │ ├── SimplifyNullableOfTAnalyzer.cs │ │ │ ├── SimplifyNumericComparisonAnalyzer.cs │ │ │ ├── SingleLineDocumentationCommentTriviaAnalyzer.cs │ │ │ ├── SortEnumMembersAnalyzer.cs │ │ │ ├── SplitVariableDeclarationAnalyzer.cs │ │ │ ├── StaticMemberInGenericTypeShouldUseTypeParameterAnalyzer.cs │ │ │ ├── SwitchLocallyDeclaredVariablesHelper.cs │ │ │ ├── ThrowingOfNewNotImplementedExceptionAnalyzer.cs │ │ │ ├── UnconstrainedTypeParameterCheckedForNullAnalyzer.cs │ │ │ ├── UnnecessaryAssignmentAnalyzer.cs │ │ │ ├── UnnecessaryEnumFlagAnalyzer.cs │ │ │ ├── UnnecessaryExplicitUseOfEnumeratorAnalyzer.cs │ │ │ ├── UnnecessaryInterpolatedStringAnalyzer.cs │ │ │ ├── UnnecessaryInterpolationAnalyzer.cs │ │ │ ├── UnnecessaryNullCheckAnalyzer.cs │ │ │ ├── UnnecessaryNullForgivingOperatorAnalyzer.cs │ │ │ ├── UnnecessaryRawStringLiteralAnalyzer.cs │ │ │ ├── UnnecessarySemicolonAtEndOfDeclarationAnalyzer.cs │ │ │ ├── UnnecessaryUnsafeContextAnalyzer.cs │ │ │ ├── UnnecessaryUsageOfEnumeratorWalker.cs │ │ │ ├── UnnecessaryUsageOfVerbatimStringLiteralAnalyzer.cs │ │ │ ├── UnusedMember │ │ │ │ ├── UnusedMemberAnalyzer.cs │ │ │ │ └── UnusedMemberWalker.cs │ │ │ ├── UnusedParameter │ │ │ │ ├── UnusedParameterAnalyzer.cs │ │ │ │ └── UnusedParameterWalker.cs │ │ │ ├── UseAnonymousFunctionOrMethodGroupAnalyzer.cs │ │ │ ├── UseAsyncAwaitAnalyzer.cs │ │ │ ├── UseAttributeUsageAttributeAnalyzer.cs │ │ │ ├── UseAutoPropertyAnalyzer.cs │ │ │ ├── UseBlockBodyOrExpressionBodyAnalyzer.cs │ │ │ ├── UseCoalesceExpressionAnalyzer.cs │ │ │ ├── UseCompoundAssignmentAnalyzer.cs │ │ │ ├── UseConditionalAccessAnalyzer.cs │ │ │ ├── UseConstantInsteadOfFieldAnalyzer.cs │ │ │ ├── UseCountOrLengthPropertyInsteadOfAnyMethodAnalysis.cs │ │ │ ├── UseEmptyStringLiteralOrStringEmptyAnalyzer.cs │ │ │ ├── UseEnumFieldExplicitlyAnalyzer.cs │ │ │ ├── UseEventArgsEmptyAnalyzer.cs │ │ │ ├── UseExceptionFilterAnalyzer.cs │ │ │ ├── UseExclusiveOrOperatorAnalyzer.cs │ │ │ ├── UseExplicitTypeInsteadOfVarInForEachAnalyzer.cs │ │ │ ├── UseExplicitTypeInsteadOfVarWhenTypeIsNotObviousAnalyzer.cs │ │ │ ├── UseExplicitTypeInsteadOfVarWhenTypeIsObviousAnalyzer.cs │ │ │ ├── UseExplicitlyOrImplicitlyTypedArrayAnalyzer.cs │ │ │ ├── UseForStatementInsteadOfWhileStatementAnalyzer.cs │ │ │ ├── UseGenericEventHandlerAnalyzer.cs │ │ │ ├── UseHasFlagMethodOrBitwiseOperatorAnalyzer.cs │ │ │ ├── UseImplicitOrExplicitObjectCreationAnalyzer.cs │ │ │ ├── UseIsOperatorInsteadOfAsOperatorAnalyzer.cs │ │ │ ├── UseNameOfOperatorAnalyzer.cs │ │ │ ├── UsePatternMatching │ │ │ │ ├── UsePatternMatchingInsteadOfAsAndNullCheckAnalyzer.cs │ │ │ │ ├── UsePatternMatchingInsteadOfIsAndCastAnalyzer.cs │ │ │ │ └── UsePatternMatchingWalker.cs │ │ │ ├── UsePredefinedTypeAnalyzer.cs │ │ │ ├── UseRawStringLiteralAnalyzer.cs │ │ │ ├── UseRegexInstanceInsteadOfStaticMethodAnalysis.cs │ │ │ ├── UseShortCircuitingOperatorAnalyzer.cs │ │ │ ├── UseStringComparisonAnalysis.cs │ │ │ ├── UseStringInterpolationInsteadOfStringConcatAnalysis.cs │ │ │ ├── UseStringIsNullOrEmptyMethodAnalyzer.cs │ │ │ ├── UseStringLengthInsteadOfComparisonWithEmptyStringAnalyzer.cs │ │ │ ├── UseUnaryOperatorInsteadOfAssignmentAnalyzer.cs │ │ │ ├── UseVarInsteadOfExplicitTypeInForEachAnalyzer.cs │ │ │ ├── UseVarInsteadOfExplicitTypeWhenTypeIsNotObviousAnalyzer.cs │ │ │ ├── UseVarInsteadOfExplicitTypeWhenTypeIsObviousAnalyzer.cs │ │ │ ├── UseVarOrExplicitTypeAnalyzer.cs │ │ │ ├── ValidateArgumentsCorrectlyAnalyzer.cs │ │ │ └── ValueTypeObjectIsNeverEqualToNullAnalyzer.cs │ │ ├── AnalyzerOptionDiagnosticIdentifiers.Generated.cs │ │ ├── AnalyzerOptions.Generated.cs │ │ ├── CSharpDiagnosticHelpers.cs │ │ ├── NodeSymbolInfo.cs │ │ └── RawStringLiteralInfo.cs │ ├── GlobalSuppressions.cs │ ├── LICENSE.txt │ ├── README.md │ └── app.config ├── CSharp.Workspaces │ ├── .editorconfig │ ├── CSharp.Workspaces.csproj │ ├── CSharp │ │ ├── CSharpSyntaxFactsService.cs │ │ ├── CSharpTypeFactory.cs │ │ ├── CodeMetrics │ │ │ ├── CSharpCodeMetricsService.cs │ │ │ ├── CSharpLinesWalker.cs │ │ │ ├── CSharpLogicalLinesWalker.cs │ │ │ └── CSharpPhysicalLinesWalker.cs │ │ ├── DefaultSyntaxOptions.cs │ │ ├── Extensions │ │ │ ├── WorkspaceExtensions.cs │ │ │ ├── WorkspaceSymbolExtensions.cs │ │ │ └── WorkspaceSyntaxExtensions.cs │ │ ├── FindSymbols │ │ │ ├── CSharpFindSymbolService.cs │ │ │ ├── LocalSymbolFinder.cs │ │ │ └── LocalWalker.cs │ │ ├── PreprocessorDirectiveRemoveOptions.cs │ │ ├── RemoveCommentHelper.cs │ │ ├── Spelling │ │ │ ├── CSharpSpellingDiagnostic.cs │ │ │ ├── CSharpSpellingService.CSharpSpellingAnalyzer.cs │ │ │ ├── CSharpSpellingService.cs │ │ │ └── CSharpSpellingWalker.cs │ │ ├── SyntaxInverter.cs │ │ ├── SyntaxLogicalInverter.cs │ │ └── SyntaxLogicalInverterOptions.cs │ ├── README.md │ ├── app.config │ └── docs │ │ └── NuGetReadme.md ├── CSharp │ ├── .editorconfig │ ├── CHANGELOG.md │ ├── CSharp.csproj │ ├── CSharp │ │ ├── BracesAnalysis.cs │ │ ├── BracesAnalysisFlags.cs │ │ ├── CSharpFactory.cs │ │ ├── CSharpFacts.cs │ │ ├── CSharpLanguageFeature.cs │ │ ├── CSharpNameGenerator.cs │ │ ├── CSharpOverriddenSymbolInfo.cs │ │ ├── CSharpTypeAnalysis.cs │ │ ├── CSharpUtility.cs │ │ ├── CommentFilter.cs │ │ ├── CompilerDiagnosticIdentifiers.Generated.cs │ │ ├── Documentation │ │ │ ├── AddBaseOrNewDocumentationCommentRewriter.cs │ │ │ ├── AddNewDocumentationCommentRewriter.cs │ │ │ ├── DocumentationCommentGenerator.cs │ │ │ ├── DocumentationCommentInserter.cs │ │ │ ├── DocumentationCommentTriviaFactory.cs │ │ │ └── DocumentationCommentTriviaRewriter.cs │ │ ├── EnumMemberDeclarationNameComparer.cs │ │ ├── EnumMemberDeclarationValueComparer.cs │ │ ├── ExpressionChain.Reversed.cs │ │ ├── ExpressionChain.cs │ │ ├── Extensions │ │ │ ├── CSharpExtensions.cs │ │ │ ├── EnumExtensions.cs │ │ │ ├── SymbolExtensions.cs │ │ │ └── SyntaxExtensions.cs │ │ ├── IfStatementCascade.cs │ │ ├── IfStatementCascadeInfo.cs │ │ ├── IfStatementOrElseClause.cs │ │ ├── MemberDeclarationComparer.cs │ │ ├── MemberDeclarationInserter.cs │ │ ├── MemberDeclarationKindComparer.cs │ │ ├── MemberDeclarationListSelection.cs │ │ ├── MethodChain.cs │ │ ├── ModifierComparer.cs │ │ ├── ModifierFilter.cs │ │ ├── ModifierKindComparer.cs │ │ ├── ModifierList.cs │ │ ├── ModifierList`1.cs │ │ ├── Modifiers.cs │ │ ├── NullCheckStyles.cs │ │ ├── PreprocessorDirectiveFilter.cs │ │ ├── StatementListSelection.cs │ │ ├── StringLiteralParser.cs │ │ ├── StringLiteralTextBuilder.cs │ │ ├── Syntax │ │ │ ├── AsExpressionInfo.cs │ │ │ ├── AssignmentExpressionInfo.cs │ │ │ ├── BinaryExpressionInfo.cs │ │ │ ├── ConditionalExpressionInfo.cs │ │ │ ├── ConditionalStatementInfo.cs │ │ │ ├── GenericInfo.cs │ │ │ ├── HexNumericLiteralExpressionInfo.cs │ │ │ ├── HexNumericLiteralSuffixKind.cs │ │ │ ├── IsExpressionInfo.cs │ │ │ ├── LocalDeclarationStatementInfo.cs │ │ │ ├── MemberDeclarationListInfo.cs │ │ │ ├── ModifierListInfo.cs │ │ │ ├── NullCheckExpressionInfo.cs │ │ │ ├── ParameterInfo.cs │ │ │ ├── RegionInfo.cs │ │ │ ├── SimpleAssignmentExpressionInfo.cs │ │ │ ├── SimpleAssignmentStatementInfo.cs │ │ │ ├── SimpleIfStatementInfo.cs │ │ │ ├── SimpleMemberInvocationExpressionInfo.cs │ │ │ ├── SimpleMemberInvocationStatementInfo.cs │ │ │ ├── SingleLocalDeclarationStatementInfo.cs │ │ │ ├── SingleParameterLambdaExpressionInfo.cs │ │ │ ├── StatementListInfo.cs │ │ │ ├── StringConcatenationAnalysis.cs │ │ │ ├── StringConcatenationExpressionInfo.cs │ │ │ ├── StringLiteralExpressionInfo.cs │ │ │ ├── SyntaxInfoHelpers.cs │ │ │ ├── TypeParameterConstraintInfo.cs │ │ │ ├── UsingDirectiveListInfo.cs │ │ │ └── XmlElementInfo.cs │ │ ├── SyntaxAccessibility.cs │ │ ├── SyntaxAccessibility`1.cs │ │ ├── SyntaxDebug.cs │ │ ├── SyntaxInfo.cs │ │ ├── SyntaxRefactorings.cs │ │ ├── SyntaxRewriters │ │ │ ├── BinaryExpressionToMultiLineRewriter.cs │ │ │ ├── RenameRewriter.cs │ │ │ ├── SkipFunctionRewriter.cs │ │ │ ├── TriviaRemover.cs │ │ │ ├── WhitespaceRemover.cs │ │ │ └── WhitespaceReplacer.cs │ │ └── SyntaxWalkers │ │ │ ├── AssignedExpressionWalker.cs │ │ │ ├── BaseCSharpSyntaxWalker.cs │ │ │ ├── ContainsCommentWalker.cs │ │ │ ├── ContainsLocalOrParameterReferenceWalker.cs │ │ │ ├── ContainsYieldWalker.cs │ │ │ ├── LocalOrParameterReferenceWalker.cs │ │ │ ├── MethodReferencedAsMethodGroupWalker.cs │ │ │ ├── StatementWalker.cs │ │ │ └── TypeSyntaxWalker.cs │ ├── DetermineParameterHelper.cs │ ├── DetermineParameterTypeHelper.cs │ ├── GlobalSuppressions.cs │ ├── README.md │ ├── app.config │ └── docs │ │ └── NuGetReadme.md ├── CodeAnalysis.Analyzers.CodeFixes │ ├── CSharp │ │ ├── AttributeArgumentCodeFixProvider.cs │ │ ├── AttributeCodeFixProvider.cs │ │ ├── BaseCodeFixProvider.cs │ │ ├── BinaryExpressionCodeFixProvider.cs │ │ ├── ConditionalAccessExpressionCodeFixProvider.cs │ │ ├── ElementAccessExpressionCodeFixProvider.cs │ │ ├── InvocationExpressionCodeFixProvider.cs │ │ ├── SimpleMemberAccessExpressionCodeFixProvider.cs │ │ └── UsePatternMatchingCodeFixProvider.cs │ ├── CodeAnalysis.Analyzers.CodeFixes.csproj │ ├── Roslynator.CodeAnalysis.Analyzers.nuspec │ ├── app.config │ ├── docs │ │ └── NuGetReadme.md │ └── tools │ │ ├── install.ps1 │ │ └── uninstall.ps1 ├── CodeAnalysis.Analyzers │ ├── CSharp │ │ ├── AnalyzerOptionsAnalyzer.Generated.cs │ │ ├── BaseDiagnosticAnalyzer.cs │ │ ├── CSharpSymbolUtility.cs │ │ ├── ElementAccessExpressionAnalyzer.cs │ │ ├── InvocationExpressionAnalyzer.cs │ │ ├── NamedTypeSymbolAnalyzer.cs │ │ ├── SimpleMemberAccessExpressionAnalyzer.cs │ │ ├── Syntax │ │ │ ├── IsKindExpressionInfo.cs │ │ │ └── IsKindExpressionStyle.cs │ │ ├── UnnecessaryConditionalAccessAnalyzer.cs │ │ └── UsePatternMatchingAnalyzer.cs │ ├── CodeAnalysis.Analyzers.csproj │ ├── LICENSE.txt │ ├── README.md │ ├── RoslynSymbolUtility.cs │ ├── RoslynUtility.cs │ └── app.config ├── CodeFixes.xml ├── CodeFixes │ ├── CSharp │ │ ├── CodeFixDescriptors.Generated.cs │ │ ├── CodeFixIdentifiers.Generated.cs │ │ ├── CodeFixIdentifiers.cs │ │ ├── CodeFixes │ │ │ ├── AddArgumentListToObjectCreationCodeFixProvider.cs │ │ │ ├── AddBodyCodeFixProvider.cs │ │ │ ├── AddBracesToDeclarationOrLabeledStatementCodeFixProvider.cs │ │ │ ├── AddBreakStatementToSwitchSectionCodeFixProvider.cs │ │ │ ├── AddReturnStatementCodeFixProvider.cs │ │ │ ├── ArgumentCodeFixProvider.cs │ │ │ ├── AssignDefaultValueToOutParameterCodeFixProvider.cs │ │ │ ├── AssignmentExpressionCodeFixProvider.cs │ │ │ ├── AttributeCodeFixProvider.cs │ │ │ ├── BaseListCodeFixProvider.cs │ │ │ ├── BaseTypeCodeFixProvider.cs │ │ │ ├── BinaryExpressionCodeFixProvider.cs │ │ │ ├── CannotConvertArgumentTypeCodeFixProvider.cs │ │ │ ├── CannotImplicitlyConvertTypeCodeFixProvider.cs │ │ │ ├── CaseSwitchLabelCodeFixProvider.cs │ │ │ ├── ChangeOverridingMemberAccessibilityCodeFixProvider.cs │ │ │ ├── ChangeTypeOfLocalVariableCodeFixProvider.cs │ │ │ ├── CodeFixRegistrationResult.cs │ │ │ ├── CodeFixRegistrator.cs │ │ │ ├── ConditionalExpressionClauseCodeFixProvider.cs │ │ │ ├── DeclareAsNullableCodeFixProvider.cs │ │ │ ├── ElementAccessCodeFixProvider.cs │ │ │ ├── ExpressionCodeFixProvider.cs │ │ │ ├── ExtractDeclarationFromUsingStatementCodeFixProvider.cs │ │ │ ├── IdentifierNameCodeFixProvider.cs │ │ │ ├── InvocationExpressionCodeFixProvider.cs │ │ │ ├── LabeledStatementCodeFixProvider.cs │ │ │ ├── LiteralExpressionCodeFixProvider.cs │ │ │ ├── MarkOperatorAsPublicAndStaticCodeFixProvider.cs │ │ │ ├── MemberDeclarationCodeFixProvider.cs │ │ │ ├── MemberHidesInheritedMemberCodeFixProvider.cs │ │ │ ├── MethodDeclarationOrLocalFunctionStatementCodeFixProvider.cs │ │ │ ├── ModifiersCodeFixProvider.cs │ │ │ ├── ObjectCreationExpressionCodeFixProvider.cs │ │ │ ├── ObjectReferenceIsRequiredForNonStaticMemberCodeFixProvider.cs │ │ │ ├── OperatorCannotBeAppliedToOperandsCodeFixProvider.cs │ │ │ ├── OperatorDeclarationCodeFixProvider.cs │ │ │ ├── ParameterCannotBeDeclaredInThisScopeCodeFixProvider.cs │ │ │ ├── ParameterCodeFixProvider.cs │ │ │ ├── RemoveDuplicateAttributeCodeFixProvider.cs │ │ │ ├── RemoveDuplicateModifierCodeFixProvider.cs │ │ │ ├── RemoveImplementationFromAbstractMemberCodeFixProvider.cs │ │ │ ├── RemoveNewModifierCodeFixProvider.cs │ │ │ ├── RemovePropertyOrFieldInitializerCodeFixProvider.cs │ │ │ ├── ReturnStatementCodeFixProvider.cs │ │ │ ├── ReturnTypeOfAsyncMethodMustBeVoidOrTaskOrTaskOfTCodeFixProvider.cs │ │ │ ├── SimpleNameCodeFixProvider.cs │ │ │ ├── StatementCodeFixProvider.cs │ │ │ ├── SynchronizeAccessibilityCodeFixProvider.cs │ │ │ ├── SyntaxErrorCharExpectedCodeFixProvider.cs │ │ │ ├── TokenCodeFixProvider.cs │ │ │ ├── TypeCodeFixProvider.cs │ │ │ ├── TypeDeclarationCodeFixProvider.cs │ │ │ ├── TypeDoesNotContainDefinitionCodeFixProvider.cs │ │ │ ├── TypeParameterCodeFixProvider.cs │ │ │ ├── TypeParameterConstraintClauseCodeFixProvider.cs │ │ │ ├── TypeParameterConstraintCodeFixProvider.cs │ │ │ ├── UnreachableCodeCodeFixProvider.cs │ │ │ ├── UnsafeCodeFixProvider.cs │ │ │ ├── UseNullForgivingOperatorCodeFixProvider.cs │ │ │ ├── VariableDeclarationCodeFixProvider.cs │ │ │ └── YieldStatementCodeFixProvider.cs │ │ ├── CompilerDiagnosticRules.Generated.cs │ │ └── Refactorings │ │ │ ├── AddComparisonWithBooleanLiteralRefactoring.cs │ │ │ ├── AddDocumentationCommentRefactoring.cs │ │ │ ├── ChangeMemberTypeRefactoring.cs │ │ │ ├── ChangeTypeAccordingToInitializerRefactoring.cs │ │ │ ├── CreateSingletonArrayRefactoring.cs │ │ │ ├── ReplaceStringLiteralWithCharacterLiteralRefactoring.cs │ │ │ ├── ReplaceYieldReturnWithForEachRefactoring.cs │ │ │ └── UseYieldReturnInsteadOfReturnRefactoring.cs │ ├── CodeFixMap.cs │ ├── CodeFixOption.cs │ ├── CodeFixOptions.cs │ ├── CodeFixes.csproj │ ├── CodeFixes │ │ ├── CodeFixDescriptor.cs │ │ ├── CodeFixIdentifier.cs │ │ ├── CompilerCodeFixOptions.cs │ │ └── CompilerDiagnosticCodeFixProvider.cs │ ├── CompilerDiagnosticFix.cs │ ├── DiagnosticsAll.xml │ ├── GlobalSuppressions.cs │ ├── README.md │ ├── Roslynator.CodeFixes.nuspec │ ├── app.config │ ├── docs │ │ └── NuGetReadme.md │ └── tools │ │ ├── install.ps1 │ │ └── uninstall.ps1 ├── CommandLine.DocumentationGenerator │ ├── CommandLine.DocumentationGenerator.csproj │ ├── DocumentationWriter.cs │ ├── MarkdownDocumentationWriter.cs │ ├── MarkdownHelpers.cs │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ └── data │ │ ├── analyze_bottom.md │ │ ├── analyze_summary.md │ │ ├── fix_bottom.md │ │ ├── fix_summary.md │ │ ├── format_bottom.md │ │ ├── list-symbols_bottom.md │ │ ├── lloc_bottom.md │ │ ├── loc_bottom.md │ │ ├── rename-symbol_bottom.md │ │ └── spellcheck_bottom.md ├── CommandLine.sln ├── CommandLine │ ├── .editorconfig │ ├── AnalyzerAssemblyInfo.cs │ ├── AnalyzerAssemblyLoader.cs │ ├── AssemblyFactory.cs │ ├── ChangeLog.md │ ├── Colors.cs │ ├── CommandLine.csproj │ ├── CommandLine.nuspec │ ├── CommandLineHelpers.cs │ ├── CommandResults │ │ ├── AnalyzeCommandResult.cs │ │ ├── CommandResult.cs │ │ ├── CommandResults.cs │ │ ├── FixCommandResult.cs │ │ ├── FormatCommandResult.cs │ │ ├── LinesOfCodeCommandResult.cs │ │ ├── RenameSymbolCommandResult.cs │ │ └── SpellcheckCommandResult.cs │ ├── CommandStatus.cs │ ├── Commands │ │ ├── AbstractLinesOfCodeCommand`1.cs │ │ ├── AnalyzeCommand.cs │ │ ├── FindSymbolCommand.cs │ │ ├── FixCommand.cs │ │ ├── FormatCommand.cs │ │ ├── GenerateDocCommand.cs │ │ ├── GenerateDocRootCommand.cs │ │ ├── HelpCommand.cs │ │ ├── ListSymbolsCommand.cs │ │ ├── LogicalLinesOfCodeCommand.cs │ │ ├── MSBuildWorkspaceCommand.cs │ │ ├── MigrateCommand.cs │ │ ├── PhysicalLinesOfCodeCommand.cs │ │ ├── RenameSymbolCommand.cs │ │ └── SpellcheckCommand.cs │ ├── ConsoleDialog.cs │ ├── ConsoleDialogDefinition.cs │ ├── ConsoleHelpWriter.cs │ ├── ConsoleHelpers.cs │ ├── DelegateFactory.cs │ ├── DocumentationHost.cs │ ├── EncodingHelpers.cs │ ├── Encodings.cs │ ├── Extensions.cs │ ├── FindSymbols │ │ ├── SymbolFinder.cs │ │ ├── SymbolFinderOptions.cs │ │ ├── SymbolWithAttributeFilterRule.cs │ │ ├── SymbolWithoutAttributeFilterRule.cs │ │ └── UnusedSymbolUtility.cs │ ├── GenerateDocumentationSample.targets │ ├── GitLab │ │ ├── GitLabIssue.cs │ │ ├── GitLabIssueLocation.cs │ │ └── GitLabLocationLines.cs │ ├── Html │ │ ├── DocumentationDisplayMode.cs │ │ └── SymbolDefinitionHtmlWriter.cs │ ├── Json │ │ ├── DiagnosticGitLabJsonSerializer.cs │ │ └── SymbolDefinitionJsonWriter.cs │ ├── Migration │ │ └── AnalyzersMapping.cs │ ├── OmitMemberParts.cs │ ├── OptionNames.cs │ ├── OptionShortNames.cs │ ├── Options │ │ ├── AbstractAnalyzeCommandLineOptions.cs │ │ ├── AbstractCommandLineOptions.cs │ │ ├── AbstractGenerateDocCommandLineOptions.cs │ │ ├── AbstractLinesOfCodeCommandLineOptions.cs │ │ ├── AnalyzeCommandLineOptions.cs │ │ ├── BaseCommandLineOptions.cs │ │ ├── FindSymbolCommandLineOptions.cs │ │ ├── FixCommandLineOptions.cs │ │ ├── FormatCommandLineOptions.cs │ │ ├── GenerateDocCommandLineOptions.cs │ │ ├── GenerateDocRootCommandLineOptions.cs │ │ ├── HelpCommandLineOptions.cs │ │ ├── ListSymbolsCommandLineOptions.cs │ │ ├── LogicalLinesOfCodeCommandLineOptions.cs │ │ ├── MSBuildCommandLineOptions.cs │ │ ├── MigrateCommandLineOptions.cs │ │ ├── PhysicalLinesOfCodeCommandLineOptions.cs │ │ ├── RenameSymbolCommandLineOptions.cs │ │ └── SpellcheckCommandLineOptions.cs │ ├── Orang │ │ ├── CommandLine.Core │ │ │ ├── AdditionalDescriptionAttribute.cs │ │ │ ├── Command.cs │ │ │ ├── CommandArgument.cs │ │ │ ├── CommandGroup.cs │ │ │ ├── CommandGroupAttribute.cs │ │ │ ├── CommandLineApplication.cs │ │ │ ├── CommandLoader.cs │ │ │ ├── CommandOption.cs │ │ │ ├── CommandOptionComparer.cs │ │ │ ├── Help │ │ │ │ ├── ArgumentItem.cs │ │ │ │ ├── CommandHelp.cs │ │ │ │ ├── CommandItem.cs │ │ │ │ ├── CommandsHelp.cs │ │ │ │ ├── HelpItem.cs │ │ │ │ ├── HelpProvider.cs │ │ │ │ ├── HelpWriter.cs │ │ │ │ ├── HelpWriterOptions.cs │ │ │ │ ├── OptionItem.cs │ │ │ │ ├── OptionValueItem.cs │ │ │ │ └── OptionValueList.cs │ │ │ ├── HiddenAttribute.cs │ │ │ ├── KeyValuePairOptionValue.cs │ │ │ ├── ObsoleteMessageAttribute.cs │ │ │ ├── OptionValue.cs │ │ │ ├── OptionValueKind.cs │ │ │ ├── OptionValueProvider.cs │ │ │ ├── OptionValueProviderAttribute.cs │ │ │ └── SimpleOptionValue.cs │ │ ├── Core │ │ │ ├── CoreExtensions.cs │ │ │ ├── Filter.cs │ │ │ ├── ICapture.cs │ │ │ ├── StringBuilderCache.cs │ │ │ ├── Text │ │ │ │ └── RegularExpressions │ │ │ │ │ ├── CaptureItem.cs │ │ │ │ │ ├── CaptureItemCollection.cs │ │ │ │ │ ├── GroupDefinition.cs │ │ │ │ │ ├── GroupDefinitionCollection.cs │ │ │ │ │ ├── GroupItem.cs │ │ │ │ │ ├── GroupItemCollection.cs │ │ │ │ │ ├── MatchItem.cs │ │ │ │ │ ├── RegexCapture.cs │ │ │ │ │ └── SplitCapture.cs │ │ │ └── TextHelpers.cs │ │ └── copy_code_from_orang.cmd │ ├── ParseHelpers.cs │ ├── PathInfo.cs │ ├── PathOrigin.cs │ ├── Program.cs │ ├── ProjectFilter.cs │ ├── ProjectName.cs │ ├── ProjectOrSolutionLoadException.cs │ ├── Properties │ │ └── launchSettings.json │ ├── README.md │ ├── Rename │ │ ├── CliCompilationErrorResolution.cs │ │ └── CliSymbolRenameState.cs │ ├── RuntimeMetadataReference.cs │ ├── Versions.cs │ ├── VisualStudioInstanceComparer.cs │ ├── Xml │ │ └── DiagnosticXmlSerializer.cs │ ├── _._ │ └── docs │ │ ├── NetCore │ │ └── NuGetReadme.md │ │ └── NetFramework │ │ └── NuGetReadme.md ├── Common │ ├── AbstractAnalyzerOptionIsObsoleteAnalyzer.cs │ ├── AbstractRequiredConfigOptionNotSetAnalyzer.cs │ ├── ArgumentNullCheckAnalysis.cs │ ├── ArgumentNullCheckStyle.cs │ ├── CSharp │ │ ├── Analysis │ │ │ ├── AddBracesToSwitchSectionAnalysis.cs │ │ │ ├── AddExceptionToDocumentationComment │ │ │ │ ├── AddExceptionToDocumentationCommentAnalysis.cs │ │ │ │ ├── AddExceptionToDocumentationCommentAnalysisResult.cs │ │ │ │ ├── ThrowExpressionInfo.cs │ │ │ │ ├── ThrowInfo.cs │ │ │ │ └── ThrowStatementInfo.cs │ │ │ ├── AnalysisOptions.cs │ │ │ ├── BlockExpressionAnalysis.cs │ │ │ ├── CallExtensionMethodAsInstanceMethodAnalysis.cs │ │ │ ├── CallExtensionMethodAsInstanceMethodAnalysisResult.cs │ │ │ ├── ChangeAccessibilityAnalysis.cs │ │ │ ├── ConvertCommentToDocumentationCommentAnalysis.cs │ │ │ ├── ConvertExpressionBodyAnalysis.cs │ │ │ ├── ConvertHasFlagCallToBitwiseOperationAnalysis.cs │ │ │ ├── ConvertInterpolatedStringToStringLiteralAnalysis.cs │ │ │ ├── ConvertLambdaExpressionBodyToExpressionBodyAnalysis.cs │ │ │ ├── ConvertMethodGroupToAnonymousFunctionAnalysis.cs │ │ │ ├── DiagnosticPropertyKeys.cs │ │ │ ├── ExpandExpressionBodyAnalysis.cs │ │ │ ├── GenerateBaseConstructorsAnalysis.cs │ │ │ ├── If │ │ │ │ ├── AssignmentAndIfToAssignmentWithConditionalExpressionAnalysis.cs │ │ │ │ ├── IfAnalysis.cs │ │ │ │ ├── IfAnalysisKind.cs │ │ │ │ ├── IfAnalysisOptions.cs │ │ │ │ ├── IfElseToAssignmentWithCoalesceExpressionAnalysis.cs │ │ │ │ ├── IfElseToAssignmentWithConditionAnalysis.cs │ │ │ │ ├── IfElseToAssignmentWithConditionalExpressionAnalysis.cs │ │ │ │ ├── IfElseToAssignmentWithExpressionAnalysis.cs │ │ │ │ ├── IfElseToReturnWithBooleanExpressionAnalysis.cs │ │ │ │ ├── IfElseToReturnWithConditionalExpressionAnalysis.cs │ │ │ │ ├── IfElseToYieldReturnWithBooleanExpressionAnalysis.cs │ │ │ │ ├── IfElseToYieldReturnWithConditionalExpressionAnalysis.cs │ │ │ │ ├── IfReturnToReturnWithBooleanExpressionAnalysis.cs │ │ │ │ ├── IfReturnToReturnWithConditionalExpressionAnalysis.cs │ │ │ │ ├── IfToReturnWithBooleanExpressionAnalysis.cs │ │ │ │ ├── IfToReturnWithCoalesceExpressionAnalysis.cs │ │ │ │ ├── IfToReturnWithConditionalExpressionAnalysis.cs │ │ │ │ ├── IfToReturnWithExpressionAnalysis.cs │ │ │ │ ├── LocalDeclarationAndIfElseToAssignmentWithConditionalExpressionAnalysis.cs │ │ │ │ ├── ToAssignmentWithConditionalExpressionAnalysis.cs │ │ │ │ └── ToAssignmentWithConditionalExpressionAnalysis`1.cs │ │ │ ├── ReduceIfNesting │ │ │ │ ├── IfLocalVariableAnalysis.cs │ │ │ │ ├── ReduceIfNestingAnalysis.cs │ │ │ │ ├── ReduceIfNestingAnalysisResult.cs │ │ │ │ ├── ReduceIfNestingOptions.cs │ │ │ │ └── ReduceIfNestingOptionsExtensions.cs │ │ │ ├── RemoveAsyncAwaitAnalysis.cs │ │ │ ├── RemoveRedundantStatement │ │ │ │ ├── RemoveRedundantContinueStatementAnalysis.cs │ │ │ │ ├── RemoveRedundantReturnStatementAnalysis.cs │ │ │ │ ├── RemoveRedundantStatementAnalysis.cs │ │ │ │ ├── RemoveRedundantStatementAnalysis`1.cs │ │ │ │ └── RemoveRedundantYieldBreakStatementAnalysis.cs │ │ │ ├── ReplaceAsWithCastAnalysis.cs │ │ │ ├── SplitVariableDeclarationAnalysis.cs │ │ │ ├── UnnecessaryBlankLineAnalysis.cs │ │ │ ├── UseConstantInsteadOfFieldAnalysis.cs │ │ │ ├── UseElementAccessAnalysis.cs │ │ │ ├── UseLambdaInsteadOfAnonymousMethodAnalysis.cs │ │ │ └── UseMethodChaining │ │ │ │ ├── MethodChainingWithAssignmentAnalysis.cs │ │ │ │ ├── MethodChainingWithoutAssignmentAnalysis.cs │ │ │ │ └── UseMethodChainingAnalysis.cs │ │ ├── CodeStyle │ │ │ ├── AccessibilityModifierStyle.cs │ │ │ ├── AccessorBracesStyle.cs │ │ │ ├── BlankLineBetweenSwitchSections.cs │ │ │ ├── BlankLineStyle.cs │ │ │ ├── BlockBracesStyle.cs │ │ │ ├── BodyStyle.cs │ │ │ ├── ConditionalExpressionParenthesesStyle.cs │ │ │ ├── ConfigureAwaitStyle.cs │ │ │ ├── DocCommentSummaryStyle.cs │ │ │ ├── EmptyStringStyle.cs │ │ │ ├── EnumFlagOperationStyle.cs │ │ │ ├── EnumFlagValueStyle.cs │ │ │ ├── InfiniteLoopStyle.cs │ │ │ ├── NewLinePosition.cs │ │ │ ├── NewLineStyle.cs │ │ │ ├── NullCheckStyle.cs │ │ │ ├── ObjectCreationParenthesesStyle.cs │ │ │ ├── TrailingCommaStyle.cs │ │ │ ├── TypeStyle.cs │ │ │ └── UsingDirectiveBlankLineStyle.cs │ │ ├── Extensions │ │ │ ├── CodeStyleExtensions.cs │ │ │ └── CommonCSharpExtensions.cs │ │ ├── IndentationAnalysis.cs │ │ ├── SyntaxTriviaAnalysis.cs │ │ ├── SyntaxWalkers │ │ │ └── AwaitExpressionWalker.cs │ │ ├── TriviaBlock.cs │ │ ├── TriviaBlockKind.cs │ │ └── TriviaBlockReader.cs │ ├── CodeAnalysis │ │ ├── CodeAnalysisDiagnosticIdentifiers.Generated.cs │ │ └── CodeAnalysisDiagnosticRules.Generated.cs │ ├── Common.csproj │ ├── CommonDiagnosticRules.cs │ ├── ConfigOptionDefaultValues.cs │ ├── ConfigOptionDescriptor.cs │ ├── ConfigOptionKeys.Generated.cs │ ├── ConfigOptionKeys.cs │ ├── ConfigOptionValues.Generated.cs │ ├── ConfigOptions.Generated.cs │ ├── ConfigOptions.cs │ ├── Configuration │ │ ├── CodeAnalysisConfig.cs │ │ ├── ConfigMigrator.cs │ │ ├── EditorConfigCodeAnalysisConfig.cs │ │ ├── EditorConfigCodeAnalysisConfigLoader.cs │ │ ├── EditorConfigWriter.cs │ │ ├── VisualStudioCodeAnalysisConfig.cs │ │ ├── XmlCodeAnalysisConfig.cs │ │ ├── XmlCodeAnalysisConfigLoader.cs │ │ ├── XmlConfigLoadOptions.cs │ │ └── XmlExtensions.cs │ ├── DiagnosticCategories.cs │ ├── DiagnosticDescriptorFactory.cs │ ├── DiagnosticHelpers.cs │ ├── DiagnosticIdentifiers.Generated.cs │ ├── DiagnosticProperties.cs │ ├── DiagnosticRules.Generated.cs │ ├── EquivalenceKey.cs │ ├── Extensions │ │ ├── CommonExtensions.cs │ │ └── HashSetExtensions.cs │ ├── IndentStyle.cs │ ├── LegacyConfigOptionDescriptor.cs │ ├── LegacyConfigOptions..cs │ ├── LegacyConfigOptions.Generated.cs │ ├── OptionSet`1.cs │ ├── RefactoringDescriptor.cs │ ├── RoslynMetadataNames.cs │ ├── RuleSetLoader.cs │ └── app.config ├── ConfigOptions.xml ├── Core │ ├── .editorconfig │ ├── AccessibilityFilter.cs │ ├── AsyncMethodNameGenerator.cs │ ├── Collections │ │ ├── Enumerable`1.cs │ │ ├── Enumerator.cs │ │ ├── Enumerator`1.cs │ │ ├── ReadOnlyCollection`1.cs │ │ └── ReadOnlyList`1.cs │ ├── CommonDiagnosticIdentifiers.cs │ ├── ConvertHelpers.cs │ ├── Core.csproj │ ├── CreateNameFromTypeSymbolHelper.cs │ ├── DefaultNames.cs │ ├── DiagnosticComparer.cs │ ├── DiagnosticDeepEqualityComparer.cs │ ├── DiagnosticDescriptorComparer.cs │ ├── DiagnosticDescriptorUtility.cs │ ├── DiagnosticIdComparer.cs │ ├── DiagnosticIdPrefix.cs │ ├── Documentation │ │ ├── DocumentationCommentData.cs │ │ ├── DocumentationCommentGeneratorSettings.cs │ │ └── DocumentationCommentOrigin.cs │ ├── Empty.cs │ ├── EnumFieldSymbolInfo.cs │ ├── EnumSymbolInfo.cs │ ├── EnumUtility.cs │ ├── EnumValueComparer.cs │ ├── ExtensionMethodSymbolInfo.cs │ ├── Extensions │ │ ├── DiagnosticsExtensions.cs │ │ ├── EnumExtensions.cs │ │ ├── EnumerableExtensions.cs │ │ ├── FileLinePositionSpanExtensions.cs │ │ ├── ListExtensions.cs │ │ ├── SemanticModelExtensions.cs │ │ ├── SymbolDisplayFormatExtensions.cs │ │ ├── SymbolExtensions.cs │ │ ├── SyntaxExtensions.cs │ │ ├── SyntaxTreeExtensions.cs │ │ ├── TextExtensions.cs │ │ └── TextSpanExtensions.cs │ ├── FileSystemHelpers.cs │ ├── FlagsUtility`1.cs │ ├── GeneratedCodeUtility.cs │ ├── GlobalSuppressions.cs │ ├── Hash.cs │ ├── ISelection`1.cs │ ├── Immutable.cs │ ├── Interval.cs │ ├── IsExternalInit.cs │ ├── MemberDeclarationKind.cs │ ├── MetadataName.cs │ ├── MetadataNameEqualityComparer`1.cs │ ├── MetadataNameSet.cs │ ├── MetadataNames.cs │ ├── NameGenerator.cs │ ├── NameGenerators.cs │ ├── NumberSuffixNameGenerator.cs │ ├── OneOrMany.cs │ ├── OneOrMany`1.cs │ ├── OverriddenSymbolInfo.cs │ ├── README.md │ ├── SelectionResult.cs │ ├── SeparatedSyntaxListSelection`1.cs │ ├── StringUtility.cs │ ├── SymbolDisplayFormats.cs │ ├── SymbolDisplayPartFactory.cs │ ├── SymbolDisplayTypeDeclarationOptions.cs │ ├── SymbolUtility.cs │ ├── SyntaxListSelection`1.cs │ ├── SyntaxUtility.cs │ ├── Text │ │ ├── IndentationInfo.cs │ │ ├── StringBuilderCache.cs │ │ ├── StringBuilderExtensions.cs │ │ ├── SyntaxNodeTextBuilder.cs │ │ └── TextLineCollectionSelection.cs │ ├── TypeAnalysis.cs │ ├── TypeAnalysisFlags.cs │ ├── TypeAppearance.cs │ ├── UnderscoreSuffixNameGenerator.cs │ ├── UnityScriptMethods.cs │ ├── Visibility.cs │ ├── VisibilityFilter.cs │ ├── WellKnownDiagnosticIdPrefixes.cs │ ├── WellKnownXmlTags.cs │ ├── XmlTag.cs │ ├── XmlTagMapper.cs │ └── docs │ │ └── NuGetReadme.md ├── Diagnostics.xml ├── Directory.Build.props ├── Documentation │ ├── AbstractSymbolDefinitionTextWriter.cs │ ├── CommonDocumentationParts.cs │ ├── DefinitionListFormat.cs │ ├── Documentation.csproj │ ├── DocumentationContext.cs │ ├── DocumentationDepth.cs │ ├── DocumentationDisplayFormats.cs │ ├── DocumentationFileKind.cs │ ├── DocumentationFilterOptions.cs │ ├── DocumentationGenerator.cs │ ├── DocumentationGeneratorResult.cs │ ├── DocumentationModel.cs │ ├── DocumentationOptions.cs │ ├── DocumentationResources.cs │ ├── DocumentationUrlInfo.cs │ ├── DocumentationUrlKind.cs │ ├── DocumentationUtility.cs │ ├── DocumentationWriter.cs │ ├── Extensions │ │ ├── SymbolDisplayPartExtensions.cs │ │ ├── SymbolExtensions.cs │ │ └── XmlExtensions.cs │ ├── FilesLayout.cs │ ├── IncludeContainingNamespaceFilter.cs │ ├── InheritDocUtility.cs │ ├── InheritanceStyle.cs │ ├── Markdown │ │ ├── DocusaurusDocumentationWriter.cs │ │ ├── GitHubDocumentationWriter.cs │ │ ├── MarkdownDocumentationWriter.cs │ │ ├── SphinxDocumentationWriter.cs │ │ └── SymbolDefinitionMarkdownWriter.cs │ ├── MemberDocumentationPartComparer.cs │ ├── MemberDocumentationParts.cs │ ├── MemberSymbolEqualityComparer.cs │ ├── NamespaceDocumentationPartComparer.cs │ ├── NamespaceDocumentationParts.cs │ ├── README.md │ ├── RootDocumentationPartComparer.cs │ ├── RootDocumentationParts.cs │ ├── SourceReference.cs │ ├── SourceReferenceProvider.cs │ ├── SymbolComparer.cs │ ├── SymbolDefinitionDisplay.cs │ ├── SymbolDefinitionListLayout.cs │ ├── SymbolDefinitionPartFilter.cs │ ├── SymbolDefinitionTextWriter.cs │ ├── SymbolDefinitionWriter.cs │ ├── SymbolDefinitionWriterHelpers.cs │ ├── SymbolDisplayAdditionalMemberOptions.cs │ ├── SymbolDisplayAdditionalOptions.cs │ ├── SymbolDocumentationProvider.cs │ ├── SymbolTitleParts.cs │ ├── SymbolXmlDocumentation.cs │ ├── TextUtility.cs │ ├── TypeDocumentationModel.cs │ ├── TypeDocumentationPartComparer.cs │ ├── TypeDocumentationParts.cs │ ├── TypeHierarchy.cs │ ├── TypeHierarchyItem.cs │ ├── TypeKindComparer.cs │ ├── TypeSymbolDisplayFormats.cs │ ├── UrlProviders │ │ ├── CommonDocumentationUrlProvider.cs │ │ ├── DefaultUrlSegmentProvider.cs │ │ ├── DocumentationUrlProvider.cs │ │ ├── DocusaurusDocumentationUrlProvider.cs │ │ ├── ExternalUrlProvider.cs │ │ ├── GitHubDocumentationUrlProvider.cs │ │ ├── MicrosoftDocsUrlProvider.cs │ │ ├── SphinxDocumentationUrlProvider.cs │ │ ├── UrlSegmentsProvider.cs │ │ └── WellKnownExternalUrlProviders.cs │ ├── WellKnownNames.cs │ ├── WrapListOptions.cs │ ├── Xml │ │ └── SymbolDefinitionXmlWriter.cs │ └── XmlDocumentation.cs ├── Formatting.Analyzers.CodeFixes │ ├── BaseCodeFixProvider.cs │ ├── CSharp │ │ ├── AccessorDeclarationCodeFixProvider.cs │ │ ├── AccessorListCodeFixProvider.cs │ │ ├── AddBlankLineBeforeAndAfterUsingDirectiveListCodeFixProvider.cs │ │ ├── BinaryExpressionCodeFixProvider.cs │ │ ├── BlankLineBetweenDeclarationsCodeFixProvider.cs │ │ ├── BlockCodeFixProvider.cs │ │ ├── CodeFixHelpers.cs │ │ ├── CodeFixTitles.cs │ │ ├── CompilationUnitCodeFixProvider.cs │ │ ├── ConditionalAccessExpressionCodeFixProvider.cs │ │ ├── DirectiveTriviaCodeFixProvider.cs │ │ ├── EnumDeclarationCodeFixProvider.cs │ │ ├── FileScopedNamespaceDeclarationCodeFixProvider.cs │ │ ├── FixFormattingOfBinaryExpressionChainCodeFixProvider.cs │ │ ├── FixFormattingOfCallChainCodeFixProvider.cs │ │ ├── FixFormattingOfListCodeFixProvider.cs │ │ ├── InitializerCodeFixProvider.cs │ │ ├── LineIsTooLong │ │ │ ├── LineIsTooLongCodeFixProvider.cs │ │ │ ├── SyntaxGroup.cs │ │ │ ├── SyntaxGroupMap.cs │ │ │ └── WrapLineNodeFinder.cs │ │ ├── ListFixMode.cs │ │ ├── MemberDeclarationCodeFixProvider.cs │ │ ├── NormalizeWhitespaceAtEndOfFileCodeFixProvider.cs │ │ ├── RemoveUnnecessaryBlankLineFixProvider.cs │ │ ├── ReplaceTabWithSpacesCodeFixProvider.cs │ │ ├── StatementCodeFixProvider.cs │ │ ├── SwitchSectionCodeFixProvider.cs │ │ ├── SyntaxTokenCodeFixProvider.cs │ │ ├── SyntaxTriviaCodeFixProvider.cs │ │ └── TypeParameterConstraintClauseSyntaxCodeFixProvider.cs │ ├── Formatting.Analyzers.CodeFixes.csproj │ ├── FormattingVerifier.cs │ ├── NewLineCodeFixProvider.cs │ ├── Roslynator.Formatting.Analyzers.nuspec │ ├── SyntaxTriviaExtensions.cs │ ├── app.config │ ├── docs │ │ └── NuGetReadme.md │ └── tools │ │ ├── install.ps1 │ │ └── uninstall.ps1 ├── Formatting.Analyzers │ ├── CSharp │ │ ├── AccessorListAnalyzer.cs │ │ ├── AddBlankLineAfterEmbeddedStatementAnalyzer.cs │ │ ├── AddBlankLineAfterRegionDirectiveAnalyzer.cs │ │ ├── AddBlankLineAfterTopCommentAnalyzer.cs │ │ ├── AddBlankLineAfterUsingDirectiveListAnalyzer.cs │ │ ├── AddBlankLineBeforeEndRegionDirectiveAnalyzer.cs │ │ ├── AddBlankLineBeforeTopDeclarationAnalyzer.cs │ │ ├── AddBlankLineBeforeUsingDirectiveListAnalyzer.cs │ │ ├── AddBlankLineBetweenClosingBraceAndNextStatementAnalyzer.cs │ │ ├── AddBlankLineBetweenSwitchSectionsAnalyzer.cs │ │ ├── AddNewLineAfterSwitchLabelAnalyzer.cs │ │ ├── AddOrRemoveNewLineBeforeWhileInDoStatementAnalyzer.cs │ │ ├── BaseDiagnosticAnalyzer.cs │ │ ├── BlankLineAfterFileScopedNamespaceDeclarationAnalyzer.cs │ │ ├── BlankLineBetweenAccessorsAnalyzer.cs │ │ ├── BlankLineBetweenDeclarationsAnalyzer.cs │ │ ├── BlankLineBetweenSwitchSectionsAnalyzer.cs │ │ ├── BlankLineBetweenUsingDirectivesAnalyzer.cs │ │ ├── FixFormattingOfBinaryExpressionChainAnalyzer.cs │ │ ├── FixFormattingOfCallChainAnalyzer.cs │ │ ├── FixFormattingOfListAnalyzer.cs │ │ ├── FormatAccessorBracesAnalyzer.cs │ │ ├── FormatBlockBracesAnalyzer.cs │ │ ├── FormatTypeDeclarationBracesAnalyzer.cs │ │ ├── LineIsTooLongAnalyzer.cs │ │ ├── NormalizeWhitespaceAtBeginningOfFileAnalyzer.cs │ │ ├── NormalizeWhitespaceAtEndOfFileAnalyzer.cs │ │ ├── PlaceNewLineAfterOrBeforeArrowTokenAnalyzer.cs │ │ ├── PlaceNewLineAfterOrBeforeBinaryOperatorAnalyzer.cs │ │ ├── PlaceNewLineAfterOrBeforeConditionalOperatorAnalyzer.cs │ │ ├── PlaceNewLineAfterOrBeforeEqualsTokenAnalyzer.cs │ │ ├── PlaceNewLineAfterOrBeforeNullConditionalOperatorAnalyzer.cs │ │ ├── PutAttributeListOnItsOwnLineAnalyzer.cs │ │ ├── PutConstructorInitializerOnItsOwnLineAnalyzer.cs │ │ ├── PutEmbeddedStatementOnItsOwnLineAnalyzer.cs │ │ ├── PutEnumMemberOnItsOwnLineAnalyzer.cs │ │ ├── PutExpressionBodyOnItsOwnLineAnalyzer.cs │ │ ├── PutInitializerOnSingleLineAnalyzer.cs │ │ ├── PutStatementOnItsOwnLineAnalyzer.cs │ │ ├── PutTypeParameterConstraintOnItsOwnLineAnalyzer.cs │ │ ├── RemoveNewLineBeforeBaseListAnalyzer.cs │ │ ├── RemoveNewLineBetweenIfKeywordAndElseKeywordAnalyzer.cs │ │ ├── RemoveUnnecessaryBlankLineAnalyzer.cs │ │ ├── RequiredConfigOptionNotSetAnalyzer.cs │ │ ├── UseSpacesInsteadOfTabAnalyzer.cs │ │ └── WrapAndIndentEachNodeInListAnalyzer.cs │ ├── Formatting.Analyzers.csproj │ ├── LICENSE.txt │ ├── README.md │ ├── UseCarriageReturnAndLinefeedAsNewLineAnalyzer.cs │ ├── UseLinefeedAsNewLineAnalyzer.cs │ └── app.config ├── Refactorings.xml ├── Refactorings │ ├── CSharp │ │ ├── RefactoringDescriptorComparer.cs │ │ ├── RefactoringDescriptors.Generated.cs │ │ ├── RefactoringIdentifiers.Deprecated.cs │ │ ├── RefactoringIdentifiers.Generated.cs │ │ ├── RefactoringIdentifiers.cs │ │ └── Refactorings │ │ │ ├── AccessModifierRefactoring.cs │ │ │ ├── AccessorDeclarationRefactoring.cs │ │ │ ├── AddAllPropertiesToInitializerRefactoring.cs │ │ │ ├── AddBracesRefactoring.cs │ │ │ ├── AddBracesToSwitchSectionsRefactoring.cs │ │ │ ├── AddDefaultValueToParameterRefactoring.cs │ │ │ ├── AddEmptyLineBetweenDeclarationsRefactoring.cs │ │ │ ├── AddGenericParameterToDeclarationRefactoring.cs │ │ │ ├── AddMemberToInterfaceRefactoring.cs │ │ │ ├── AddMissingCasesToSwitchStatementRefactoring.cs │ │ │ ├── AddOrRemoveParameterName │ │ │ ├── AddArgumentNameRefactoring.cs │ │ │ ├── AddOrRemoveArgumentNameRefactoring.cs │ │ │ ├── AddParameterNameRewriter.cs │ │ │ ├── RemoveArgumentNameRefactoring.cs │ │ │ └── RemoveParameterNameRewriter.cs │ │ │ ├── AddOrRenameParameterRefactoring.cs │ │ │ ├── AddUsingDirectiveRefactoring.cs │ │ │ ├── AddUsingStaticDirectiveRefactoring.cs │ │ │ ├── AnonymousMethodExpressionRefactoring.cs │ │ │ ├── ArgumentListRefactoring.cs │ │ │ ├── ArgumentRefactoring.cs │ │ │ ├── ArrowExpressionClauseRefactoring.cs │ │ │ ├── AssignmentExpressionRefactoring.cs │ │ │ ├── AttributeArgumentListRefactoring.cs │ │ │ ├── AttributeArgumentParameterNameRefactoring.cs │ │ │ ├── AttributeListRefactoring.cs │ │ │ ├── AttributeRefactoring.cs │ │ │ ├── BinaryExpressionRefactoring.cs │ │ │ ├── BlockRefactoring.cs │ │ │ ├── CallIndexOfInsteadOfContainsRefactoring.cs │ │ │ ├── CastExpressionRefactoring.cs │ │ │ ├── ChangeDeclarationExpressionTypeRefactoring.cs │ │ │ ├── ChangeMethodReturnTypeToVoidRefactoring.cs │ │ │ ├── ChangeVariableDeclarationTypeRefactoring.cs │ │ │ ├── CheckExpressionForNullRefactoring.cs │ │ │ ├── CheckParameterForNullRefactoring.cs │ │ │ ├── ClassDeclarationRefactoring.cs │ │ │ ├── CloseParenTokenRefactoring.cs │ │ │ ├── CommaTokenRefactoring.cs │ │ │ ├── CommentOutRefactoring.cs │ │ │ ├── CommentTriviaRefactoring.cs │ │ │ ├── ConditionalAccessExpressionRefactoring.cs │ │ │ ├── ConditionalExpressionRefactoring.cs │ │ │ ├── ConstructorDeclarationRefactoring.cs │ │ │ ├── ConvertAutoPropertyToFullPropertyRefactoring.cs │ │ │ ├── ConvertAutoPropertyToFullPropertyWithoutBackingFieldRefactoring.cs │ │ │ ├── ConvertBodyAndExpressionBodyRefactoring.cs │ │ │ ├── ConvertDoToWhileRefactoring.cs │ │ │ ├── ConvertForToForEachRefactoring.cs │ │ │ ├── ConvertForToWhileRefactoring.cs │ │ │ ├── ConvertHexadecimalLiteralToDecimalLiteralRefactoring.cs │ │ │ ├── ConvertIfToSwitchRefactoring.cs │ │ │ ├── ConvertInterpolatedStringToConcatenationRefactoring.cs │ │ │ ├── ConvertInterpolatedStringToStringFormatRefactoring.cs │ │ │ ├── ConvertLambdaExpressionBodyToBlockBodyRefactoring.cs │ │ │ ├── ConvertMethodGroupToLambdaRefactoring.cs │ │ │ ├── ConvertReturnToIf │ │ │ ├── ConvertReturnStatementToIfRefactoring.cs │ │ │ ├── ConvertReturnToIfElseRefactoring.cs │ │ │ ├── ConvertReturnToIfRefactoring`1.cs │ │ │ └── ConvertYieldReturnToIfElseRefactoring.cs │ │ │ ├── ConvertStatementsToIfElseRefactoring.cs │ │ │ ├── ConvertStringFormatToInterpolatedStringRefactoring.cs │ │ │ ├── ConvertStringLiteralRefactoring.cs │ │ │ ├── ConvertSwitchToIfRefactoring.cs │ │ │ ├── ConvertWhileToForRefactoring.cs │ │ │ ├── CopyAttributeArgumentRefactoring.cs │ │ │ ├── CopyDocumentationCommentFromBaseMemberRefactoring.cs │ │ │ ├── CopySwitchSectionRefactoring.cs │ │ │ ├── DeclarationExpressionRefactoring.cs │ │ │ ├── DeclarationPatternRefactoring.cs │ │ │ ├── DeconstructForeachVariableRefactoring.cs │ │ │ ├── DelegateDeclarationRefactoring.cs │ │ │ ├── DestructorDeclarationRefactoring.cs │ │ │ ├── DirectiveTriviaRefactoring.cs │ │ │ ├── DoStatementRefactoring.cs │ │ │ ├── ElseClauseRefactoring.cs │ │ │ ├── EmbeddedStatementRefactoring.cs │ │ │ ├── EnumDeclarationRefactoring.cs │ │ │ ├── EnumMemberDeclarationRefactoring.cs │ │ │ ├── EventDeclarationRefactoring.cs │ │ │ ├── EventFieldDeclarationRefactoring.cs │ │ │ ├── ExpandCoalesceExpressionRefactoring.cs │ │ │ ├── ExpandEventDeclarationRefactoring.cs │ │ │ ├── ExpandInitializerRefactoring.cs │ │ │ ├── ExpandPositionalConstructorRefactoring.cs │ │ │ ├── ExpressionRefactoring.cs │ │ │ ├── ExpressionStatementRefactoring.cs │ │ │ ├── ExtractCondition │ │ │ ├── ExtractConditionFromIfRefactoring.cs │ │ │ ├── ExtractConditionFromIfToIfRefactoring.cs │ │ │ ├── ExtractConditionFromIfToNestedIfRefactoring.cs │ │ │ ├── ExtractConditionFromWhileToNestedIfRefactoring.cs │ │ │ ├── ExtractConditionRefactoring.cs │ │ │ └── ExtractConditionRefactoring`1.cs │ │ │ ├── ExtractEventHandlerMethodRefactoring.cs │ │ │ ├── ExtractExpressionFromParenthesesRefactoring.cs │ │ │ ├── ExtractTypeDeclarationToNewFileRefactoring.cs │ │ │ ├── FieldDeclarationRefactoring.cs │ │ │ ├── ForEachStatementRefactoring.cs │ │ │ ├── ForStatementRefactoring.cs │ │ │ ├── GenerateAllEnumValuesRefactoring.cs │ │ │ ├── GenerateCombinedEnumMemberRefactoring.cs │ │ │ ├── GenerateEnumMemberRefactoring.cs │ │ │ ├── GenerateEnumValuesRefactoring.cs │ │ │ ├── GenerateOnEventMethodRefactoring.cs │ │ │ ├── GeneratePropertyForDebuggerDisplayAttributeRefactoring.cs │ │ │ ├── IdentifierNameRefactoring.cs │ │ │ ├── IfStatementRefactoring.cs │ │ │ ├── ImplementCustomEnumeratorRefactoring.cs │ │ │ ├── ImplementIEquatableOfTRefactoring.cs │ │ │ ├── IndexerDeclarationRefactoring.cs │ │ │ ├── InitializeFieldFromConstructorRefactoring.cs │ │ │ ├── InitializeLocalVariableWithDefaultValueRefactoring.cs │ │ │ ├── InitializerExpressionRefactoring.cs │ │ │ ├── InlineConstantDeclarationRefactoring.cs │ │ │ ├── InlineConstantValueRefactoring.cs │ │ │ ├── InlineDefinition │ │ │ ├── InlineAnalyzer.cs │ │ │ ├── InlineMethodAnalyzer.cs │ │ │ ├── InlineMethodRefactoring.cs │ │ │ ├── InlinePropertyAnalyzer.cs │ │ │ ├── InlinePropertyRefactoring.cs │ │ │ ├── InlineRefactoring.cs │ │ │ ├── InlineRewriter.cs │ │ │ └── ParameterInfo.cs │ │ │ ├── InlineUsingStaticDirectiveRefactoring.cs │ │ │ ├── InsertInterpolationRefactoring.cs │ │ │ ├── InterfaceDeclarationRefactoring.cs │ │ │ ├── InterpolatedStringRefactoring.cs │ │ │ ├── InterpolatedStringTextRefactoring.cs │ │ │ ├── InterpolationRefactoring.cs │ │ │ ├── IntroduceAndInitialize │ │ │ ├── IntroduceAndInitializeFieldInfo.cs │ │ │ ├── IntroduceAndInitializeFieldRefactoring.cs │ │ │ ├── IntroduceAndInitializeInfo.cs │ │ │ ├── IntroduceAndInitializePropertyInfo.cs │ │ │ ├── IntroduceAndInitializePropertyRefactoring.cs │ │ │ └── IntroduceAndInitializeRefactoring.cs │ │ │ ├── IntroduceConstructorRefactoring.cs │ │ │ ├── InvertBinaryExpressionRefactoring.cs │ │ │ ├── InvertBooleanLiteralRefactoring.cs │ │ │ ├── InvertConditionalExpressionRefactoring.cs │ │ │ ├── InvertIfRefactoring.cs │ │ │ ├── InvertIsExpressionRefactoring.cs │ │ │ ├── InvertLinqMethodCallRefactoring.cs │ │ │ ├── InvertOperatorRefactoring.cs │ │ │ ├── InvocationExpressionRefactoring.cs │ │ │ ├── JoinStringExpressionsRefactoring.cs │ │ │ ├── LambdaExpressionRefactoring.cs │ │ │ ├── LiteralExpressionRefactoring.cs │ │ │ ├── LocalDeclarationStatementRefactoring.cs │ │ │ ├── LocalFunctionStatementRefactoring.cs │ │ │ ├── LockStatementRefactoring.cs │ │ │ ├── MakeMemberAbstract │ │ │ ├── MakeIndexerAbstractRefactoring.cs │ │ │ ├── MakeMethodAbstractRefactoring.cs │ │ │ └── MakePropertyAbstractRefactoring.cs │ │ │ ├── MakeMemberVirtual │ │ │ ├── MakeIndexerVirtualRefactoring.cs │ │ │ ├── MakeMemberAbstractHelper.cs │ │ │ ├── MakeMethodVirtualRefactoring.cs │ │ │ └── MakePropertyVirtualRefactoring.cs │ │ │ ├── MemberDeclarationRefactoring.cs │ │ │ ├── MemberDeclarationsRefactoring.cs │ │ │ ├── MergeIfStatementsRefactoring.cs │ │ │ ├── MergeIfWithParentIfRefactoring.cs │ │ │ ├── MergeLocalDeclarationsRefactoring.cs │ │ │ ├── MergeSwitchSectionsRefactoring.cs │ │ │ ├── MethodDeclarationRefactoring.cs │ │ │ ├── MoveUnsafeContextToContainingDeclarationRefactoring.cs │ │ │ ├── NamespaceDeclarationRefactoring.cs │ │ │ ├── NodeInList │ │ │ ├── ArgumentSyntaxRewriter.cs │ │ │ ├── CopyArgumentOrParameterRefactoring.cs │ │ │ ├── CopyArgumentRefactoring.cs │ │ │ ├── CopyParameterRefactoring.cs │ │ │ ├── NodeInListRefactoring.cs │ │ │ ├── NodeSyntaxRewriter.cs │ │ │ ├── ParameterSyntaxRewriter.cs │ │ │ └── RewriterInfo.cs │ │ │ ├── NotifyWhenPropertyChangesRefactoring.cs │ │ │ ├── ParameterListRefactoring.cs │ │ │ ├── ParameterRefactoring.cs │ │ │ ├── ParenthesizeExpressionRefactoring.cs │ │ │ ├── ParenthesizedExpressionRefactoring.cs │ │ │ ├── PlusTokenRefactoring.cs │ │ │ ├── PostfixUnaryExpressionRefactoring.cs │ │ │ ├── PrefixUnaryExpressionRefactoring.cs │ │ │ ├── PromoteLocalToParameterRefactoring.cs │ │ │ ├── PropertyDeclarationRefactoring.cs │ │ │ ├── QualifiedNameRefactoring.cs │ │ │ ├── RecordDeclarationRefactoring.cs │ │ │ ├── RefactoringContext.cs │ │ │ ├── RegionDirectiveTriviaRefactoring.cs │ │ │ ├── RemoveAllMemberDeclarationsRefactoring.cs │ │ │ ├── RemoveAllPreprocessorDirectivesRefactoring.cs │ │ │ ├── RemoveAllStatementsRefactoring.cs │ │ │ ├── RemoveAsyncAwaitRefactoring.cs │ │ │ ├── RemoveBracesFromSwitchSectionRefactoring.cs │ │ │ ├── RemoveBracesFromSwitchSectionsRefactoring.cs │ │ │ ├── RemoveBracesRefactoring.cs │ │ │ ├── RemoveConditionFromLastElseRefactoring.cs │ │ │ ├── RemoveContainingStatementRefactoring.cs │ │ │ ├── RemoveEnumMemberValueRefactoring.cs │ │ │ ├── RemoveInstantiationOfLocalVariableRefactoring.cs │ │ │ ├── RemovePropertyInitializerRefactoring.cs │ │ │ ├── RemoveUnnecessaryAssignmentRefactoring.cs │ │ │ ├── ReplaceConditionalExpressionWithTrueOrFalseBranchRefactoring.cs │ │ │ ├── ReplaceEqualityOperatorWithStringEqualsRefactoring.cs │ │ │ ├── ReplaceEqualsExpression │ │ │ ├── ReplaceEqualityOperatorRefactoring.cs │ │ │ ├── ReplaceEqualityOperatorWithStringIsNullOrEmptyRefactoring.cs │ │ │ └── ReplaceEqualityOperatorWithStringIsNullOrWhiteSpaceRefactoring.cs │ │ │ ├── ReplaceInterpolatedStringWithInterpolationExpressionRefactoring.cs │ │ │ ├── ReplaceMethodWithProperty │ │ │ ├── ReplaceMethodWithPropertyRefactoring.cs │ │ │ └── ReplaceMethodWithPropertySyntaxRewriter.cs │ │ │ ├── ReplaceNullLiteralWithDefaultExpressionRefactoring.cs │ │ │ ├── ReplacePropertyWithMethod │ │ │ ├── ReplacePropertyWithMethodRefactoring.cs │ │ │ └── ReplacePropertyWithMethodSyntaxRewriter.cs │ │ │ ├── ReturnStatementRefactoring.cs │ │ │ ├── ReverseForStatementRefactoring.cs │ │ │ ├── ReverseReversedForStatementRefactoring.cs │ │ │ ├── RoslynatorCodeRefactoringProvider.cs │ │ │ ├── SelectedEnumMemberDeclarationsRefactoring.cs │ │ │ ├── SelectedLinesRefactoring.cs │ │ │ ├── SelectedMemberDeclarationsRefactoring.cs │ │ │ ├── SelectedStatementsRefactoring.cs │ │ │ ├── SelectedSwitchSectionsRefactoring.cs │ │ │ ├── SemicolonTokenRefactoring.cs │ │ │ ├── SimpleMemberAccessExpressionRefactoring.cs │ │ │ ├── SortCaseLabelsRefactoring.cs │ │ │ ├── SortMemberDeclarations │ │ │ ├── SortEnumMemberDeclarationsRefactoring.cs │ │ │ └── SortMemberDeclarationsRefactoring.cs │ │ │ ├── SplitIfElseRefactoring.cs │ │ │ ├── SplitIfStatementRefactoring.cs │ │ │ ├── SplitLocalDeclarationAndAssignmentRefactoring.cs │ │ │ ├── SplitSwitchLabelsRefactoring.cs │ │ │ ├── StatementRefactoring.cs │ │ │ ├── StringLiteralExpressionRefactoring.cs │ │ │ ├── StructDeclarationRefactoring.cs │ │ │ ├── SwapBinaryOperandsRefactoring.cs │ │ │ ├── SwitchExpressionRefactoring.cs │ │ │ ├── SwitchSectionRefactoring.cs │ │ │ ├── SwitchStatementRefactoring.cs │ │ │ ├── ThrowExpressionRefactoring.cs │ │ │ ├── ThrowStatementRefactoring.cs │ │ │ ├── TypeParameterConstraintClauseRefactoring.cs │ │ │ ├── UncommentMultiLineCommentRefactoring.cs │ │ │ ├── UncommentSingleLineCommentRefactoring.cs │ │ │ ├── UnsafeStatementRefactoring.cs │ │ │ ├── UseElementAccessRefactoring.cs │ │ │ ├── UseEnumeratorExplicitlyRefactoring.cs │ │ │ ├── UseIndexInitializerRefactoring.cs │ │ │ ├── UseListInsteadOfYieldRefactoring.cs │ │ │ ├── UseObjectInitializerRefactoring.cs │ │ │ ├── UseStringBuilderInsteadOfConcatenationRefactoring.cs │ │ │ ├── UsingDirectiveRefactoring.cs │ │ │ ├── UsingStatementRefactoring.cs │ │ │ ├── VariableDeclarationRefactoring.cs │ │ │ ├── VariableDeclaratorRefactoring.cs │ │ │ ├── WhileStatementRefactoring.cs │ │ │ ├── WrapBinaryExpressionRefactoring.cs │ │ │ ├── WrapCallChainRefactoring.cs │ │ │ ├── WrapConstraintClausesRefactoring.cs │ │ │ ├── WrapSelectedLines │ │ │ ├── WrapLinesInPreprocessorDirectiveRefactoring.cs │ │ │ ├── WrapLinesInRegionRefactoring.cs │ │ │ └── WrapSelectedLinesRefactoring.cs │ │ │ ├── WrapStatements │ │ │ ├── WrapInIfStatementRefactoring.cs │ │ │ ├── WrapLinesInTryCatchRefactoring.cs │ │ │ ├── WrapStatementsInUsingStatementRefactoring.cs │ │ │ └── WrapStatementsRefactoring.cs │ │ │ └── YieldStatementRefactoring.cs │ ├── GlobalSuppressions.cs │ ├── README.md │ ├── Refactorings.csproj │ ├── Roslynator.Refactorings.nuspec │ ├── app.config │ ├── docs │ │ └── NuGetReadme.md │ └── tools │ │ ├── install.ps1 │ │ └── uninstall.ps1 ├── Roslynator.CoreAndTesting.slnf ├── Roslynator.sln ├── Roslynator.snk ├── Template.Analyzers.xml ├── Template.Refactorings.xml ├── Tests │ ├── .editorconfig │ ├── Analyzers.Tests │ │ ├── Analyzers.Tests.csproj │ │ ├── RCS1004RemoveBracesFromIfElseTests.cs │ │ ├── RCS1005SimplifyNestedUsingStatementTests.cs │ │ ├── RCS1007AddBracesTests.cs │ │ ├── RCS1013UsePredefinedTypeTests.cs │ │ ├── RCS1014UseExplicitlyTypedArrayOrViceVersaTests.cs │ │ ├── RCS1014UseImplicitlyTypedArrayTests.cs │ │ ├── RCS1015UseNameOfOperatorTests.cs │ │ ├── RCS1016UseBlockBodyTests.cs │ │ ├── RCS1016UseBlockBodyWhenExpressionIsMultiLineTests.cs │ │ ├── RCS1016UseExpressionBodyTests.cs │ │ ├── RCS1018AddAccessibilityModifiersTests.cs │ │ ├── RCS1018RemoveAccessibilityModifiersTests.cs │ │ ├── RCS1019OrderModifiersTests.cs │ │ ├── RCS1020SimplifyNullableOfTTests.cs │ │ ├── RCS1021ConvertLambdaExpressionBodyToExpressionBodyTests.cs │ │ ├── RCS1031RemoveUnnecessaryBracesInSwitchSectionTests.cs │ │ ├── RCS1032RemoveRedundantParenthesesTests.cs │ │ ├── RCS1036RemoveUnnecessaryBlankLineTests.cs │ │ ├── RCS1037RemoveTrailingWhitespaceTests.cs │ │ ├── RCS1040RemoveEmptyElseClauseTests.cs │ │ ├── RCS1041RemoveEmptyInitializerTests.cs │ │ ├── RCS1043RemovePartialModifierFromTypeWithSinglePartTests.cs │ │ ├── RCS1044RemoveOriginalExceptionFromThrowStatementTests.cs │ │ ├── RCS1046AsynchronousMethodNameShouldEndWithAsyncTests.cs │ │ ├── RCS1047NonAsynchronousMethodNameShouldNotEndWithAsyncTests.cs │ │ ├── RCS1049SimplifyBooleanComparisonTests.cs │ │ ├── RCS1050AddOrRemoveParenthesesWhenCreatingNewObjectTests.cs │ │ ├── RCS1051AddOrRemoveParenthesesFromConditionOfConditionalExpressionTests.cs │ │ ├── RCS1055UnnecessarySemicolonAtEndOfDeclarationAnalyzerTests.cs │ │ ├── RCS1056AvoidUsageOfUsingAliasDirectiveTests.cs │ │ ├── RCS1058UseCompoundAssignmentTests.cs │ │ ├── RCS1060DeclareEachTypeInSeparateFileTests.cs │ │ ├── RCS1061MergeIfWithNestedIfTests.cs │ │ ├── RCS1066RemoveEmptyFinallyClauseTests.cs │ │ ├── RCS1068SimplifyLogicalNegationTests.cs │ │ ├── RCS1068SimplifyLogicalNegationTests2.cs │ │ ├── RCS1073ConvertIfToReturnStatementTests.cs │ │ ├── RCS1074RemoveRedundantConstructorTests.cs │ │ ├── RCS1077OptimizeLinqMethodCallTests.cs │ │ ├── RCS1078UseEmptyStringLiteralOrStringEmptyTests.cs │ │ ├── RCS1080UseCountOrLengthPropertyInsteadOfAnyMethodTests.cs │ │ ├── RCS1081SplitVariableDeclarationTests.cs │ │ ├── RCS1084UseCoalesceExpressionInsteadOfConditionalExpressionTests.cs │ │ ├── RCS1085UseAutoPropertyTests.cs │ │ ├── RCS1089UseUnaryOperatorInsteadOfAssignmentTests.cs │ │ ├── RCS1090AddCallToConfigureAwaitTests.cs │ │ ├── RCS1090RemoveCallToConfigureAwaitTests.cs │ │ ├── RCS1093FileContainsNoCodeTests.cs │ │ ├── RCS1096ConvertHasFlagCallToBitwiseOperationTests.cs │ │ ├── RCS1096UseHasFlagMethodOrBitwiseOperatorTests.cs │ │ ├── RCS1097RemoveRedundantToStringCallTests.cs │ │ ├── RCS1098ConstantValuesShouldBePlacedOnRightSideOfComparisonsTests.cs │ │ ├── RCS1101FormatDocumentationSummaryOnMultipleLinesTests.cs │ │ ├── RCS1102MakeClassStaticTests.cs │ │ ├── RCS1103ConvertIfToAssignmentTests.cs │ │ ├── RCS1104SimplifyConditionalExpressionTests.cs │ │ ├── RCS1105UnnecessaryInterpolationTests.cs │ │ ├── RCS1107RemoveRedundantStringToCharArrayCallTests.cs │ │ ├── RCS1110DeclareTypeInsideNamespaceTests.cs │ │ ├── RCS1113UseStringIsNullOrEmptyMethodTests.cs │ │ ├── RCS1114RemoveRedundantDelegateCreationTests.cs │ │ ├── RCS1118MarkLocalVariableAsConstTests.cs │ │ ├── RCS1123AddParenthesesWhenNecessaryTests.cs │ │ ├── RCS1124InlineLocalVariableTests.cs │ │ ├── RCS1128UseCoalesceExpressionTests.cs │ │ ├── RCS1128UseCoalesceExpressionTests2.cs │ │ ├── RCS1129RemoveRedundantFieldInitializationTests.cs │ │ ├── RCS1132RemoveRedundantOverridingMemberTests.cs │ │ ├── RCS1134RemoveRedundantStatementTests.cs │ │ ├── RCS1135DeclareEnumMemberWithZeroValueTests.cs │ │ ├── RCS1139AddSummaryElementToDocumentationCommentTests.cs │ │ ├── RCS1140AddExceptionToDocumentationCommentTests.cs │ │ ├── RCS1141AddParamElementToDocumentationCommentTests.cs │ │ ├── RCS1142AddTypeParamElementToDocumentationCommentTests.cs │ │ ├── RCS1143SimplifyCoalesceExpressionTests.cs │ │ ├── RCS1145RemoveRedundantAsOperatorTests.cs │ │ ├── RCS1146UseConditionalAccessTests.cs │ │ ├── RCS1151RemoveRedundantCastTests.cs │ │ ├── RCS1151RemoveRedundantCastTests2.cs │ │ ├── RCS1154SortEnumMembersTests.cs │ │ ├── RCS1156UseStringLengthInsteadOfComparisonWithEmptyStringTests.cs │ │ ├── RCS1157CompositeEnumValueContainsUndefinedFlagTests.cs │ │ ├── RCS1158StaticMemberInGenericTypeShouldUseTypeParameterTests.cs │ │ ├── RCS1159UseGenericEventHandlerTests.cs │ │ ├── RCS1161EnumMemberShouldDeclareExplicitValueTests.cs │ │ ├── RCS1163UnusedParameterTests.cs │ │ ├── RCS1164UnusedTypeParameterTests.cs │ │ ├── RCS1169MakeFieldReadOnlyTests.cs │ │ ├── RCS1170UseReadOnlyAutoPropertyTests.cs │ │ ├── RCS1171SimplifyLazyInitializationTests.cs │ │ ├── RCS1172UseIsOperatorInsteadOfAsOperatorTests.cs │ │ ├── RCS1173UseCoalesceExpressionInsteadOfIfTests.cs │ │ ├── RCS1174RemoveRedundantAsyncAwaitTests.cs │ │ ├── RCS1179UnnecessaryAssignmentTests.cs │ │ ├── RCS1180InlineLazyInitializationTests.cs │ │ ├── RCS1181ConvertCommentToDocumentationCommentTests.cs │ │ ├── RCS1182RemoveRedundantBaseInterfaceTests.cs │ │ ├── RCS1186UseRegexInstanceInsteadOfStaticMethodTests.cs │ │ ├── RCS1187UseConstantInsteadOfFieldTests.cs │ │ ├── RCS1188RemoveRedundantAutoPropertyInitializationTests.cs │ │ ├── RCS1190JoinStringExpressionsTests.cs │ │ ├── RCS1191DeclareEnumValueAsCombinationOfNamesTests.cs │ │ ├── RCS1192UnnecessaryUsageOfVerbatimStringLiteralTests.cs │ │ ├── RCS1193OverridingMemberShouldNotChangeParamsModifierTests.cs │ │ ├── RCS1194ImplementExceptionConstructorsTests.cs │ │ ├── RCS1196CallExtensionMethodAsInstanceMethodTests.cs │ │ ├── RCS1197OptimizeStringBuilderAppendCallTests.cs │ │ ├── RCS1198AvoidBoxingOfValueTypeTests.cs │ │ ├── RCS1198AvoidBoxingOfValueTypeTests2.cs │ │ ├── RCS1199UnnecessaryNullCheckTests.cs │ │ ├── RCS1201UseMethodChainingTests.cs │ │ ├── RCS1202AvoidNullReferenceExceptionTests.cs │ │ ├── RCS1202AvoidNullReferenceExceptionTests2.cs │ │ ├── RCS1203UseAttributeUsageAttributeTests.cs │ │ ├── RCS1204UseEventArgsEmptyTests.cs │ │ ├── RCS1205OrderNamedArgumentsTests.cs │ │ ├── RCS1206UseConditionalAccessInsteadOfConditionalExpressionTests.cs │ │ ├── RCS1207ConvertAnonymousFunctionToMethodGroupTests.cs │ │ ├── RCS1207ConvertMethodGroupToAnonymousFunctionTests.cs │ │ ├── RCS1208ReduceIfNestingTests.cs │ │ ├── RCS1210ReturnCompletedTaskInsteadOfNullTests.cs │ │ ├── RCS1210ReturnCompletedTaskInsteadOfNullTests2.cs │ │ ├── RCS1211RemoveUnnecessaryElseTests.cs │ │ ├── RCS1212RemoveRedundantAssignmentTests.cs │ │ ├── RCS1213RemoveUnusedMemberDeclarationTests.cs │ │ ├── RCS1214UnnecessaryInterpolatedStringTests.cs │ │ ├── RCS1215ExpressionIsAlwaysEqualToTrueOrFalseTests.cs │ │ ├── RCS1216UnnecessaryUnsafeContextTests.cs │ │ ├── RCS1218SimplifyCodeBranchingTests.cs │ │ ├── RCS1220UsePatternMatchingInsteadOfIsAndCastTests.cs │ │ ├── RCS1221UsePatternMatchingInsteadOfAsAndNullCheckTests.cs │ │ ├── RCS1222MergePreprocessorDirectivesTests.cs │ │ ├── RCS1223MarkTypeWithDebuggerDisplayAttributeTests.cs │ │ ├── RCS1224MakeMethodExtensionMethodTests.cs │ │ ├── RCS1225MakeClassSealedTests.cs │ │ ├── RCS1226AddParagraphToDocumentationCommentTests.cs │ │ ├── RCS1227ValidateArgumentsCorrectlyTests.cs │ │ ├── RCS1228UnusedElementInDocumentationCommentTests.cs │ │ ├── RCS1229UseAsyncAwaitTests.cs │ │ ├── RCS1230UnnecessaryExplicitUseOfEnumeratorTests.cs │ │ ├── RCS1231MakeParameterRefReadOnlyTests.cs │ │ ├── RCS1232OrderElementsInDocumentationCommentTests.cs │ │ ├── RCS1233UseShortCircuitingOperatorTests.cs │ │ ├── RCS1234DuplicateEnumValueTests.cs │ │ ├── RCS1235OptimizeMethodCallTests.cs │ │ ├── RCS1236UseExceptionFilterTests.cs │ │ ├── RCS1237UseBitShiftOperatorTests.cs │ │ ├── RCS1238AvoidNestedConditionalOperatorsTests.cs │ │ ├── RCS1239UseForStatementInsteadOfWhileStatementTests.cs │ │ ├── RCS1240UnnecessaryOperatorTests.cs │ │ ├── RCS1241ImplementNonGenericCounterpartTests.cs │ │ ├── RCS1242DoNotPassNonReadOnlyStructByReadOnlyReferenceTests.cs │ │ ├── RCS1243DuplicateWordInCommentTests.cs │ │ ├── RCS1244SimplifyDefaultExpressionTests.cs │ │ ├── RCS1246UseElementAccessTests.cs │ │ ├── RCS1247FixDocumentationCommentTagTests.cs │ │ ├── RCS1248NormalizeNullCheckTests.cs │ │ ├── RCS1249UnnecessaryNullForgivingOperatorTests.cs │ │ ├── RCS1250UseImplicitOrExplicitObjectCreationTests.cs │ │ ├── RCS1251RemoveUnnecessaryBracesTests.cs │ │ ├── RCS1252NormalizeUsageOfInfiniteLoopTests.cs │ │ ├── RCS1253FormatDocumentationCommentSummaryTests.cs │ │ ├── RCS1254NormalizeFormatOfEnumFlagValueTests.cs │ │ ├── RCS1255SimplifyArgumentNullCheckTests.cs │ │ ├── RCS1256InvalidArgumentNullCheckTests.cs │ │ ├── RCS1257UseEnumFieldExplicitlyTests.cs │ │ ├── RCS1258UnnecessaryEnumFlagTests.cs │ │ ├── RCS1259RemoveEmptySyntaxTests.cs │ │ ├── RCS1260AddOrRemoveTrailingCommaTests.cs │ │ ├── RCS1261DisposeResourceAsynchronouslyTests.cs │ │ ├── RCS1262UnnecessaryRawStringLiteralTests.cs │ │ ├── RCS1263InvalidReferenceInDocumentationCommentTests.cs │ │ ├── RCS1264UseVarOrExplicitTypeTests.cs │ │ ├── RCS1264UseVarOrExplicitTypeTests2.cs │ │ ├── RCS1264UseVarOrExplicitTypeTests3.cs │ │ ├── RCS1264UseVarOrExplicitTypeTests4.cs │ │ ├── RCS1264UseVarOrExplicitTypeTests5.cs │ │ ├── RCS1264UseVarOrExplicitTypeTests6.cs │ │ ├── RCS1265RemoveRedundantCatchBlockTests.cs │ │ ├── RCS1266UseRawStringLiteralTests.cs │ │ ├── RCS1267UseStringInterpolationInsteadOfStringConcatTests.cs │ │ ├── RCS1268SimplifyNumericComparisonTests.cs │ │ └── UnitTests │ │ │ └── PatternMatchingVariableDeclarationHelperTests.cs │ ├── CSharp.Tests │ │ ├── CSharp.Tests.csproj │ │ ├── ExpressionChainTests.cs │ │ └── SyntaxKindTests.cs │ ├── CSharp.Workspaces.Tests │ │ ├── CSharp.Workspaces.Tests.csproj │ │ ├── CodeActionTests.cs │ │ └── SyntaxLogicalInverterTests.cs │ ├── CodeAnalysis.Analyzers.Tests │ │ ├── CodeAnalysis.Analyzers.Tests.csproj │ │ ├── RCS9001UsePatternMatchingTests.cs │ │ ├── RCS9002UsePropertySyntaxNodeSpanStartTests.cs │ │ ├── RCS9003UnnecessaryConditionalAccessTests.cs │ │ ├── RCS9004CallAnyInsteadOfAccessingCountTests.cs │ │ ├── RCS9005UnnecessaryNullCheckTests.cs │ │ ├── RCS9006UseElementAccessTests.cs │ │ ├── RCS9007UseReturnValueTests.cs │ │ ├── RCS9008CallLastInsteadOfUsingElementAccessTests.cs │ │ ├── RCS9009UnknownLanguageNameTests.cs │ │ ├── RCS9010SpecifyExportCodeRefactoringProviderAttributeNameTests.cs │ │ └── RCS9011SpecifyExportCodeFixProviderAttributeNameTests.cs │ ├── CodeFixes.Tests │ │ ├── CS0029CannotImplicitlyConvertTypeTests.cs │ │ ├── CS0037CannotConvertNullToTypeBecauseItIsNonNullableValueTypeTests.cs │ │ ├── CS0103NameDoesNotExistInCurrentContextTests.cs │ │ ├── CS0106ModifierIsNotValidForThisItemTests.cs │ │ ├── CS0119NameIsNotValidInGivenContextTests.cs │ │ ├── CS0120ObjectReferenceIsRequiredForNonStaticMemberTests.cs │ │ ├── CS0126ObjectOfTypeConvertibleToTypeIsRequiredTests.cs │ │ ├── CS0131LeftHandSideOfAssignmentMustBeVariablePropertyOrIndexerTests.cs │ │ ├── CS0136LocalOrParameterCannotBeDeclaredInThisScopeTests.cs │ │ ├── CS0162UnreachableCodeDetectedTests.cs │ │ ├── CS0164LabelHasNotBeenReferencedTests.cs │ │ ├── CS0165UseOfUnassignedLocalVariableTests.cs │ │ ├── CS0177OutParameterMustBeAssignedToBeforeControlLeavesCurrentMethodTests.cs │ │ ├── CS0191ReadOnlyFieldCannotBeAssignedToTests.cs │ │ ├── CS0192ReadOnlyFieldCannotBePassedAsRefOrOutValueTests.cs │ │ ├── CS0201OnlyAssignmentCallIncrementDecrementAndNewObjectExpressionsCanBeUsedAsStatementTests.cs │ │ ├── CS0214_PointersAndFixedSizeBuffersMayOnlyBeUsedInUnsafeContextTests.cs │ │ ├── CS0246TypeOrNamespaceNameCouldNotBeFoundTests.cs │ │ ├── CS0266CannotImplicitlyConvertTypeExplicitConversionExistsTests.cs │ │ ├── CS0507CannotChangeAccessModifiersWhenOverridingInheritedMemberTests.cs │ │ ├── CS0508MethodReturnTypeMustMatchOverriddenMethodReturnTypeTests.cs │ │ ├── CS0539ExplicitInterfaceDeclarationIsNotMemberOfInterfaceTests.cs │ │ ├── CS0549NewVirtualMemberInSealedClassTests.cs │ │ ├── CS0621VirtualOrAbstractMembersCannotBePrivateTests.cs │ │ ├── CS1003SyntaxErrorCharExpectedTests.cs │ │ ├── CS1012TooManyCharactersInCharacterLiteralTests.cs │ │ ├── CS1061TypeDoesNotContainDefinitionAndNoExtensionMethodCouldBeFoundTests.cs │ │ ├── CS1620ArgumentMustBePassedWithRefOrOutKeywordTests.cs │ │ ├── CS1624BodyCannotBeIteratorBlockBecauseTypeIsNotIteratorInterfaceTypeTests.cs │ │ ├── CS1715MemberTypeMustMatchOverriddenMemberTypeTests.cs │ │ ├── CS1741RefOrOutParameterCannotHaveDefaultValueTests.cs │ │ ├── CS1750ValueCannotBeUsedAsDefaultParameterTests.cs │ │ ├── CS1983ReturnTypeOfAsyncMethodMustBeVoidOrTaskOrTaskOfTTests.cs │ │ ├── CS3002ReturnTypeIsNotCLSCompliantTests.cs │ │ ├── CS7036ThereIsNoArgumentGivenThatCorrespondsToRequiredFormalParameter.cs │ │ ├── CS8050OnlyAutoImplementedPropertiesCanHaveInitializersTests.cs │ │ ├── CS8139CannotChangeTupleElementNameWhenOverridingInheritedMemberTests.cs │ │ ├── CS8403MethodWithIteratorBlockMustBeAsyncToReturnIAsyncEnumerableOfTTests.cs │ │ ├── CS8600ConvertingNullLiteralOrPossibleNullValueToNonNullableTypeTests.cs │ │ ├── CS8602DereferenceOfPossiblyNullReferenceTests.cs │ │ ├── CS8604PossibleNullReferenceArgumentForParameter.cs │ │ ├── CS8610_NullabilityOfReferenceTypesInTypeOfParameterDoesNotMatchOverriddenMemberTests.cs │ │ ├── CS8618_NonNullableMemberIsUninitializedTests.cs │ │ ├── CS8625_CannotConvertNullLiteralToNonNullableReferenceTypeTests.cs │ │ ├── CS8632AnnotationForNullableReferenceTypesShouldOnlyBeUsedWithinNullableAnnotationsContextTests.cs │ │ ├── CS8765_NullabilityOfTypeOfParameterDoesNotMatchOverriddenMemberTests.cs │ │ ├── CS8767_NullabilityDoesNotMatchImplementedMemberTests.cs │ │ └── CodeFixes.Tests.csproj │ ├── Core.Tests │ │ ├── Core.Tests.csproj │ │ ├── FileSystemHelpersTests.cs │ │ ├── GeneratedCodeUtilityTests.cs │ │ └── MetadataNameTests.cs │ ├── Formatting.Analyzers.Tests │ │ ├── Formatting.Analyzers.Tests.csproj │ │ ├── RCS0001AddBlankLineAfterEmbeddedStatementTests.cs │ │ ├── RCS0002AddBlankLineAfterRegionDirectiveTests.cs │ │ ├── RCS0003AddBlankLineAfterUsingDirectiveListTests.cs │ │ ├── RCS0005AddBlankLineBeforeEndRegionDirectiveTests.cs │ │ ├── RCS0006AddEmptyLineBeforeUsingDirectiveListTests.cs │ │ ├── RCS0007AddBlankLineBetweenAccessorsTests.cs │ │ ├── RCS0008AddBlankLineBetweenClosingBraceAndNextStatementTests.cs │ │ ├── RCS0009AddEmptyLineBetweenDeclarationAndDocumentationCommentTests.cs │ │ ├── RCS0010AddBlankLineBetweenDeclarationsTests.cs │ │ ├── RCS0011BlankLineBetweenSingleLineAccessorsTests.cs │ │ ├── RCS0012AddBlankLineBetweenSingleLineDeclarationsTests.cs │ │ ├── RCS0013AddBlankLineBetweenSingleLineDeclarationsOfDifferentKindTests.cs │ │ ├── RCS0014AddBlankLineBetweenSwitchSectionsTests.cs │ │ ├── RCS0015BlankLineBetweenUsingDirectivesTests.cs │ │ ├── RCS0016PutEachAttributeListOnItsOwnLineTests.cs │ │ ├── RCS0020FormatAccessorBracesTests.cs │ │ ├── RCS0021FormatBlockBracesTests.cs │ │ ├── RCS0022AddNewLineAfterOpeningBraceOfEmptyBlockTests.cs │ │ ├── RCS0023FormatTypeDeclarationBracesTests.cs │ │ ├── RCS0024AddNewLineAfterSwitchLabelTests.cs │ │ ├── RCS0025PutFullAccessorOnItsOwnLineTests.cs │ │ ├── RCS0027PlaceNewLineAfterOrBeforeBinaryOperatorTests.cs │ │ ├── RCS0028PlaceNewLineAfterOrBeforeConditionalExpressionOperatorTests.cs │ │ ├── RCS0029PutConstructorInitializerOnItsOwnLineTests.cs │ │ ├── RCS0030PutEmbeddedStatementOnItsOwnLineTests.cs │ │ ├── RCS0031PutEnumMemberOnItsOwnLineTests.cs │ │ ├── RCS0032PlaceNewLineAfterOrBeforeArrowTokenTests.cs │ │ ├── RCS0033PutStatementOnItsOwnLineTests.cs │ │ ├── RCS0034PutTypeParameterConstraintOnItsOwnLineTests.cs │ │ ├── RCS0036RemoveBlankLineBetweenSingleLineDeclarationsOfSameKindTests.cs │ │ ├── RCS0038RemoveBlankLineBetweenUsingDirectivesWithSameRootNamespaceTests.cs │ │ ├── RCS0039RemoveNewLineBeforeBaseListTests.cs │ │ ├── RCS0041RemoveNewLineBetweenIfKeywordAndElseKeywordTests.cs │ │ ├── RCS0042RemoveNewLinesFromAccessorListOfAutoPropertyTests.cs │ │ ├── RCS0043FormatAccessorBracesOnSingleLineWhenStatementIsOnSingleLineTests.cs │ │ ├── RCS0044UseCarriageReturnAndLinefeedAsNewLineTests.cs │ │ ├── RCS0045UseLinefeedAsNewLineTests.cs │ │ ├── RCS0046UseSpacesInsteadOfTabTests.cs │ │ ├── RCS0048PutInitializerOnSingleLineTests.cs │ │ ├── RCS0049AddBlankLineAfterTopCommentTests.cs │ │ ├── RCS0050AddBlankLineBeforeTopDeclarationTests.cs │ │ ├── RCS0051AddOrRemoveNewLineBeforeWhileInDoStatementTests.cs │ │ ├── RCS0052PlaceNewLineAfterOrBeforeEqualsSignTests.cs │ │ ├── RCS0053FixFormattingOfListTests.cs │ │ ├── RCS0054FixFormattingOfCallChainTests.cs │ │ ├── RCS0055FixFormattingOfBinaryExpressionChainTests.cs │ │ ├── RCS0056LineIsTooLongTests.cs │ │ ├── RCS0057NormalizeWhitespaceAtBeginningOfFileTests.cs │ │ ├── RCS0058NormalizeWhitespaceAtEndOfFileTests.cs │ │ ├── RCS0059PlaceNewLineAfterOrBeforeNullConditionalOperatorTests.cs │ │ ├── RCS0060AddEmptyLineAfterFileScopedNamespaceTests.cs │ │ ├── RCS0061BlankLineBetweenSwitchSectionsTests.cs │ │ ├── RCS0062PutExpressionBodyOnItsOwnLineTests.cs │ │ └── RCS0063RemoveUnnecessaryBlankLineTests.cs │ ├── README.md │ ├── Refactorings.Tests │ │ ├── RR0011AddArgumentNameTests.cs │ │ ├── RR0013AddUsingDirectiveTests.cs │ │ ├── RR0014AddUsingStaticDirectiveTests.cs │ │ ├── RR0016CallExtensionMethodAsInstanceMethodTests.cs │ │ ├── RR0021ChangeMethodReturnTypeToVoidTests.cs │ │ ├── RR0022ChangeTypeAccordingToExpressionTests.cs │ │ ├── RR0023UseExplicitTypeTests.cs │ │ ├── RR0024CheckExpressionForNullTests.cs │ │ ├── RR0025CheckParameterForNullTests.cs │ │ ├── RR0031CopyMemberDeclarationTests.cs │ │ ├── RR0037ConvertExpressionBodyToBlockBodyTests.cs │ │ ├── RR0041ConvertAutoPropertyToFullPropertyTests.cs │ │ ├── RR0046ExtractTypeDeclarationToNewFileTests.cs │ │ ├── RR0048WrapArgumentsTests.cs │ │ ├── RR0051WrapCallChainTests.cs │ │ ├── RR0052WrapInitializerExpressionsTests.cs │ │ ├── RR0053WrapParametersTests.cs │ │ ├── RR0055GenerateCombinedEnumMemberTests.cs │ │ ├── RR0056GenerateEnumMemberTests.cs │ │ ├── RR0057GenerateEnumValuesTests.cs │ │ ├── RR0059AddMissingCasesToSwitchStatementTests.cs │ │ ├── RR0062InlineMethodTests.cs │ │ ├── RR0063InsertStringInterpolationTests.cs │ │ ├── RR0065IntroduceAndInitializePropertyTests.cs │ │ ├── RR0075MergeIfStatementsTests.cs │ │ ├── RR0078JoinStringExpressionsTests.cs │ │ ├── RR0081InvertIsExpressionTests.cs │ │ ├── RR0083NotifyWhenPropertyChangesTests.cs │ │ ├── RR0084ParenthesizeExpressionTests.cs │ │ ├── RR0085PromoteLocalVariableToParameterTests.cs │ │ ├── RR0086RemoveAllCommentsTests.cs │ │ ├── RR0090RemoveAllPreprocessorDirectivesTests.cs │ │ ├── RR0095RemoveBracesFromIfElseTests.cs │ │ ├── RR0098RemoveCommentTests.cs │ │ ├── RR0100RemovePreprocessorDirectiveTests.cs │ │ ├── RR0103RemoveMemberDeclarationTests.cs │ │ ├── RR0109RemoveStatementTests.cs │ │ ├── RR0112RenameIdentifierAccordingToTypeNameTest.cs │ │ ├── RR0116InvertLinqMethodCallTests.cs │ │ ├── RR0117ReplaceAsExpressionWithExplicitCastTests.cs │ │ ├── RR0118ReplaceExplicitCastWithAsExpressionTests.cs │ │ ├── RR0120ConvertConditionalExpressionToIfElseTests.cs │ │ ├── RR0124ReplaceEqualityOperatorWithStringEqualsTests.cs │ │ ├── RR0127InlineConstantValueTests.cs │ │ ├── RR0129ConvertForEachToForTests.cs │ │ ├── RR0130ConvertForToForEachTests.cs │ │ ├── RR0131ConvertForToWhileTests.cs │ │ ├── RR0133ConvertIfToSwitchTests.cs │ │ ├── RR0137ConvertMethodGroupToLambdaTests.cs │ │ ├── RR0139ReplaceNullLiteralWithDefaultExpressionTests.cs │ │ ├── RR0143ConvertReturnStatementToIfTests.cs │ │ ├── RR0147ConvertSwitchToIfTests.cs │ │ ├── RR0150ConvertWhileToDoTests.cs │ │ ├── RR0151ConvertWhileToForTests.cs │ │ ├── RR0159SwapBinaryOperandsTests.cs │ │ ├── RR0162InvertIfElseTests.cs │ │ ├── RR0166ConvertIfToConditionalExpressionTests.cs │ │ ├── RR0169ConvertBlockBodyToExpressionBodyTests.cs │ │ ├── RR0175WrapLinesInRegionTests.cs │ │ ├── RR0178AddGenericParameterToDeclarationTests.cs │ │ ├── RR0180InlineUsingStaticDirectiveTests.cs │ │ ├── RR0184SplitIfTests.cs │ │ ├── RR0185RemoveInstantiationOfLocalVariableTests.cs │ │ ├── RR0186ChangeAccessibilityTests.cs │ │ ├── RR0189InvertIfTests.cs │ │ ├── RR0194SplitLocalDeclarationAndAssignmentTests.cs │ │ ├── RR0197InitializeFieldFromConstructorTests.cs │ │ ├── RR0198InlinePropertyTests.cs │ │ ├── RR0199RemoveEnumMemberValueTests.cs │ │ ├── RR0206UseEnumeratorExplicitlyTests.cs │ │ ├── RR0207SortCaseLabelsTests.cs │ │ ├── RR0208AddTagToDocumentationCommentTests.cs │ │ ├── RR0209RemoveAsyncAwaitTests.cs │ │ ├── RR0210ImplementCustomEnumeratorTests.cs │ │ ├── RR0211ConvertStatementsToIfElseTests.cs │ │ ├── RR0212CopySwitchSectionTests.cs │ │ ├── RR0213AddParameterToInterfaceMemberTests.cs │ │ ├── RR0214ConvertSwitchExpressionToSwitchStatementTests.cs │ │ ├── RR0215ExpandPositionalConstructorTests.cs │ │ ├── RR0216AddAllPropertiesToInitializerTests.cs │ │ ├── RR0217DeconstructForeachVariableTests.cs │ │ └── Refactorings.Tests.csproj │ ├── TestConsole │ │ ├── Program.cs │ │ └── TestConsole.csproj │ ├── TestLibrary │ │ ├── .editorconfig │ │ ├── Foo.cs │ │ └── TestLibrary.csproj │ ├── Testing.CSharp.MSTest │ │ ├── Testing.CSharp.MSTest.csproj │ │ ├── Testing │ │ │ └── CSharp │ │ │ │ └── MSTest │ │ │ │ ├── MSTestAssert.cs │ │ │ │ ├── MSTestCompilerDiagnosticFixVerifier.cs │ │ │ │ ├── MSTestDiagnosticVerifier.cs │ │ │ │ └── MSTestRefactoringVerifier.cs │ │ └── docs │ │ │ └── NuGetReadme.md │ ├── Testing.CSharp.Xunit │ │ ├── Testing.CSharp.Xunit.csproj │ │ ├── Testing │ │ │ └── CSharp │ │ │ │ └── Xunit │ │ │ │ ├── XunitAssert.cs │ │ │ │ ├── XunitCompilerDiagnosticFixVerifier.cs │ │ │ │ ├── XunitDiagnosticVerifier.cs │ │ │ │ └── XunitRefactoringVerifier.cs │ │ └── docs │ │ │ └── NuGetReadme.md │ ├── Testing.CSharp │ │ ├── .editorconfig │ │ ├── Testing.CSharp.csproj │ │ ├── Testing │ │ │ └── CSharp │ │ │ │ ├── CSharpCompilerDiagnosticFixVerifier.cs │ │ │ │ ├── CSharpDiagnosticVerifier.cs │ │ │ │ ├── CSharpRefactoringVerifier.cs │ │ │ │ └── CSharpTestOptions.cs │ │ └── docs │ │ │ └── NuGetReadme.md │ ├── Testing.Common │ │ ├── .editorconfig │ │ ├── Extensions │ │ │ ├── CompilationExtensions.cs │ │ │ └── TestExtensions.cs │ │ ├── RuntimeMetadataReference.cs │ │ ├── Testing.Common.csproj │ │ ├── Testing │ │ │ ├── AdditionalFile.cs │ │ │ ├── CodeVerifier.cs │ │ │ ├── CompilerDiagnosticFixTestData.cs │ │ │ ├── CompilerDiagnosticFixVerifier.cs │ │ │ ├── DiagnosticTestData.cs │ │ │ ├── DiagnosticVerifier.cs │ │ │ ├── EmptyCodeFixProvider.cs │ │ │ ├── ExpectedDocument.cs │ │ │ ├── ExpectedTestState.cs │ │ │ ├── FileSystemVerifier.cs │ │ │ ├── IAssert.cs │ │ │ ├── RefactoringTestData.cs │ │ │ ├── RefactoringVerifier.cs │ │ │ ├── TestCode.cs │ │ │ ├── TestFile.cs │ │ │ ├── TestOptions.cs │ │ │ └── Text │ │ │ │ ├── LinePositionInfo.cs │ │ │ │ ├── LinePositionSpanInfo.cs │ │ │ │ ├── LinePositionSpanInfoComparer.cs │ │ │ │ └── TextProcessor.cs │ │ ├── Traits.cs │ │ └── docs │ │ │ └── NuGetReadme.md │ ├── Testing.VisualBasic │ │ ├── Testing.VisualBasic.csproj │ │ └── VisualBasic │ │ │ └── Testing │ │ │ ├── VisualBasicCompilerDiagnosticFixVerifier.cs │ │ │ ├── VisualBasicDiagnosticVerifier.cs │ │ │ ├── VisualBasicRefactoringVerifier.cs │ │ │ └── VisualBasicTestOptions.cs │ ├── Tests.Common │ │ ├── Testing │ │ │ └── CSharp │ │ │ │ ├── AbstractCSharpCompilerDiagnosticFixVerifier.cs │ │ │ │ ├── AbstractCSharpDiagnosticVerifier.cs │ │ │ │ ├── AbstractCSharpRefactoringVerifier.cs │ │ │ │ ├── DefaultCSharpTestOptions.cs │ │ │ │ └── WellKnownCSharpTestOptions.cs │ │ └── Tests.Common.csproj │ └── Tests.sln ├── Tools │ ├── AddCodeFileHeader │ │ ├── AddCodeFileHeader.csproj │ │ ├── App.config │ │ └── Program.cs │ ├── Cleaner │ │ ├── App.config │ │ ├── Cleaner.csproj │ │ └── Program.cs │ ├── CodeGeneration │ │ ├── CSharp │ │ │ ├── CodeFixDescriptorsGenerator.cs │ │ │ ├── CodeFixIdentifiersGenerator.cs │ │ │ ├── CodeFixesOptionsPageGenerator.cs │ │ │ ├── CodeGenerator.cs │ │ │ ├── CompilerDiagnosticIdentifiersGenerator.cs │ │ │ ├── CompilerDiagnosticRulesGenerator.cs │ │ │ ├── DiagnosticIdentifiersGenerator.cs │ │ │ ├── DiagnosticRulesGenerator.cs │ │ │ ├── DiagnosticRulesGenerators.cs │ │ │ ├── Extensions.cs │ │ │ ├── RefactoringDescriptorsGenerator.cs │ │ │ ├── RefactoringIdentifiersGenerator.cs │ │ │ ├── RefactoringsOptionsPageGenerator.cs │ │ │ ├── RuntimeMetadataReference.cs │ │ │ ├── WrapRewriter.cs │ │ │ └── WrapRewriterOptions.cs │ │ ├── CodeGeneration.csproj │ │ ├── CodeGenerationExtensions.cs │ │ ├── CodeGenerationHelpers.cs │ │ ├── EditorConfig │ │ │ └── EditorConfigGenerator.cs │ │ ├── Markdown │ │ │ ├── AnalyzersMapping.cs │ │ │ └── MarkdownGenerator.cs │ │ └── RoslynatorMetadata.cs │ ├── CodeGenerator │ │ ├── CodeGenerator.csproj │ │ ├── Program.cs │ │ └── Properties │ │ │ └── launchSettings.json │ ├── ConfigurationFileGenerator │ │ ├── ConfigurationFileGenerator.csproj │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── launchSettings.json │ │ └── configuration.md │ ├── LogParser │ │ ├── AnalyzerDiagnosticInfo.cs │ │ ├── LogParser.cs │ │ ├── LogParser.csproj │ │ ├── Program.cs │ │ └── ProjectDiagnosticInfo.cs │ ├── Metadata │ │ ├── AnalyzerConfigOption.cs │ │ ├── AnalyzerMetadata.cs │ │ ├── AnalyzerOptionMetadata.cs │ │ ├── AnalyzerOptionValueMetadata.cs │ │ ├── AnalyzerStatus.cs │ │ ├── CodeFixMetadata.cs │ │ ├── CompilerDiagnosticMetadata.cs │ │ ├── LinkMetadata.cs │ │ ├── Metadata.csproj │ │ ├── MetadataFile.cs │ │ ├── RefactoringMetadata.cs │ │ ├── SampleMetadata.cs │ │ ├── SyntaxMetadata.cs │ │ └── XmlExtensions.cs │ ├── MetadataGenerator │ │ ├── MetadataGenerator.csproj │ │ ├── Program.cs │ │ └── Properties │ │ │ └── launchSettings.json │ ├── Tools.sln │ ├── Utilities │ │ ├── FileHelper.cs │ │ └── Utilities.csproj │ └── VersionUpdater │ │ ├── Program.cs │ │ └── VersionUpdater.csproj ├── VisualBasic.Workspaces │ ├── .editorconfig │ ├── VisualBasic.Workspaces.csproj │ ├── VisualBasic │ │ ├── CodeMetrics │ │ │ ├── VisualBasicCodeMetricsService.cs │ │ │ ├── VisualBasicLinesWalker.cs │ │ │ ├── VisualBasicLogicalLinesWalker.cs │ │ │ └── VisualBasicPhysicalLinesWalker.cs │ │ └── VisualBasicSyntaxFactsService.cs │ └── app.config ├── VisualBasic │ ├── .editorconfig │ └── VisualBasic.csproj ├── VisualStudio.Refactorings │ ├── LICENSE.txt │ ├── Overview.md │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── VSPackage.cs │ ├── VSPackage.resx │ ├── VisualStudio.Refactorings.csproj │ ├── app.config │ ├── manifest.json │ ├── packages.config │ └── source.extension.vsixmanifest ├── VisualStudio.sln ├── VisualStudio │ ├── .roslynatorconfig │ ├── AnalyzersOptionsPage.cs │ ├── AnalyzersOptionsPageControl.xaml │ ├── AnalyzersOptionsPageControl.xaml.cs │ ├── BaseModel.cs │ ├── BaseOptionsPage.cs │ ├── BaseOptionsPageControl.xaml │ ├── BaseOptionsPageControl.xaml.cs │ ├── CodeFixModel.cs │ ├── CodeFixesOptionsPage.Generated.cs │ ├── CodeFixesOptionsPage.cs │ ├── GeneralOptionsPage.cs │ ├── GeneralOptionsPageControl.xaml │ ├── GeneralOptionsPageControl.xaml.cs │ ├── LICENSE.txt │ ├── Overview.md │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── RefactoringsOptionsPage.Generated.cs │ ├── RefactoringsOptionsPage.cs │ ├── RuleSetHelpers.Generated.cs │ ├── RuleSetHelpers.cs │ ├── TypeConverters │ │ ├── TrueFalseConverter.cs │ │ └── YesNoConverter.cs │ ├── VSPackage.cs │ ├── VSPackage.resx │ ├── VisualStudio.csproj │ ├── XElementExtensions.cs │ ├── manifest.json │ ├── roslynator.config │ └── source.extension.vsixmanifest ├── VisualStudioCode.sln ├── VisualStudioCode │ ├── VisualStudioCode.csproj │ ├── app.config │ └── package │ │ ├── .gitignore │ │ ├── .vscode │ │ ├── launch.json │ │ ├── settings.json │ │ └── tasks.json │ │ ├── .vscodeignore │ │ ├── CHANGELOG.md │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── images │ │ └── icon.png │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── roslyn │ │ └── common │ │ │ └── roslynator.config │ │ ├── src │ │ ├── cleanupOmnisharpConfiguration.ts │ │ ├── configurationFiles.generated.ts │ │ ├── context.ts │ │ ├── extension.ts │ │ ├── omnisharpSettings.ts │ │ ├── openRoslynatorConfiguration.ts │ │ ├── test │ │ │ ├── runTest.ts │ │ │ └── suite │ │ │ │ ├── cleanupOmnisharpConfiguration.test.ts │ │ │ │ ├── index.ts │ │ │ │ ├── openRoslynatorConfiguration.test.ts │ │ │ │ └── updateOmnisharpConfiguration.test.ts │ │ └── updateOmnisharpConfiguration.ts │ │ ├── tsconfig.json │ │ └── tslint.json ├── Workspaces.Common │ ├── CSharp │ │ ├── CodeActionFactory.cs │ │ ├── CodeFixes │ │ │ └── ModifiersCodeFixRegistrator.cs │ │ ├── DocumentRefactoringFactory.cs │ │ ├── DocumentRefactorings.cs │ │ ├── Refactorings │ │ │ ├── AddBracesToIfElseRefactoring.cs │ │ │ ├── AddBracesToSwitchSectionRefactoring.cs │ │ │ ├── AddExceptionToDocumentationComment │ │ │ │ └── AddExceptionElementToDocumentationCommentRefactoring.cs │ │ │ ├── AddParameterToInterfaceMemberRefactoring.cs │ │ │ ├── CallExtensionMethodAsInstanceMethodRefactoring.cs │ │ │ ├── ChangeAccessibilityRefactoring.cs │ │ │ ├── ConvertBlockBodyToExpressionBodyRefactoring.cs │ │ │ ├── ConvertCommentToDocumentationCommentRefactoring.cs │ │ │ ├── ConvertConditionalExpressionToIfElseRefactoring.cs │ │ │ ├── ConvertExpressionBodyToBlockBodyRefactoring.cs │ │ │ ├── ConvertForEachToForRefactoring.cs │ │ │ ├── ConvertHasFlagCallToBitwiseOperationRefactoring.cs │ │ │ ├── ConvertInterpolatedStringToStringBuilderMethodRefactoring.cs │ │ │ ├── ConvertInterpolatedStringToStringLiteralRefactoring.cs │ │ │ ├── ConvertLambdaBlockBodyToExpressionBodyRefactoring.cs │ │ │ ├── ConvertMethodGroupToAnonymousFunctionRefactoring.cs │ │ │ ├── CopyMemberDeclarationRefactoring.cs │ │ │ ├── ExpandCompoundAssignmentRefactoring.cs │ │ │ ├── ExtractTypeDeclarationToNewDocumentRefactoring.cs │ │ │ ├── GenerateBaseConstructorsRefactoring.cs │ │ │ ├── IfRefactoring.cs │ │ │ ├── InlineAliasExpressionRefactoring.cs │ │ │ ├── IntroduceFieldRefactoring.cs │ │ │ ├── IntroduceFieldToLockOnRefactoring.cs │ │ │ ├── IntroduceLocalVariableRefactoring.cs │ │ │ ├── MarkTypeWithDebuggerDisplayAttributeRefactoring.cs │ │ │ ├── ReduceIfNesting │ │ │ │ ├── ReduceIfNestingRefactoring.cs │ │ │ │ └── ReduceIfNestingRewriter.cs │ │ │ ├── RemoveAsyncAwait.cs │ │ │ ├── RemoveBracesFromIfElseElseRefactoring.cs │ │ │ ├── ReplaceAsExpressionWithExplicitCastRefactoring.cs │ │ │ ├── SplitVariableDeclarationRefactoring.cs │ │ │ ├── UseConstantInsteadOfReadOnlyFieldRefactoring.cs │ │ │ ├── UseElementAccessInsteadOfEnumerableMethodRefactoring.cs │ │ │ ├── UseLambdaInsteadOfAnonymousMethodRefactoring.cs │ │ │ ├── UseMethodChainingRefactoring.cs │ │ │ └── UseReadOnlyFieldInsteadOfConstantRefactoring.cs │ │ └── SyntaxFormatter.cs │ ├── CodeFixes │ │ └── AbstractCodeFixProvider.cs │ ├── CommonFixContext.cs │ ├── CommonWorkspaceExtensions.cs │ ├── Workspaces.Common.csproj │ └── app.config ├── Workspaces.Core │ ├── .editorconfig │ ├── AnalyzerAssembly.cs │ ├── AnalyzerAssemblyEventArgs.cs │ ├── AnalyzerLoader.cs │ ├── AssemblyFullNameComparer.cs │ ├── AttributeInfo.cs │ ├── CodeActions │ │ ├── CodeActionData.cs │ │ └── NavigationAnnotation.cs │ ├── CodeAnalysisOptions.cs │ ├── CodeFixes │ │ ├── CodeFixer.cs │ │ ├── CodeFixerOptions.cs │ │ ├── DiagnosticDescriptorFixComparer.cs │ │ ├── DiagnosticFix.cs │ │ ├── DiagnosticFixKind.cs │ │ ├── DiagnosticFixProvider.cs │ │ ├── DiagnosticFixResult.cs │ │ ├── FixAllDiagnosticProvider.cs │ │ ├── ProjectFixKind.cs │ │ └── ProjectFixResult.cs │ ├── CodeMetrics │ │ ├── CodeMetricsInfo.cs │ │ ├── CodeMetricsOptions.cs │ │ ├── CodeMetricsService.cs │ │ ├── ICodeMetricsService.cs │ │ └── LinesOfCodeKind.cs │ ├── Comparers │ │ ├── MemberSymbolDefinitionComparer.cs │ │ ├── NamedTypeSymbolDefinitionComparer.cs │ │ ├── NamespaceSymbolDefinitionComparer.cs │ │ └── SymbolDefinitionComparer.cs │ ├── ConsoleUtility.cs │ ├── DiagnosticFormatter.cs │ ├── DiagnosticInfo.cs │ ├── Diagnostics │ │ ├── CodeAnalyzer.cs │ │ ├── CodeAnalyzerOptions.cs │ │ └── ProjectAnalysisResult.cs │ ├── DialogResult.cs │ ├── DocumentReferenceInfo.cs │ ├── Extensions │ │ ├── CodeFixContextExtensions.cs │ │ ├── CollectionExtensions.cs │ │ ├── Extensions.cs │ │ ├── SyntaxFactsServiceExtensions.cs │ │ └── WorkspaceExtensions.cs │ ├── FileSystemFilter.cs │ ├── FindSymbols │ │ ├── AttributeFilterRule.cs │ │ ├── FilterRule`1.cs │ │ ├── IgnoredAttributeNameFilterRule.cs │ │ ├── IgnoredNameSymbolFilterRule.cs │ │ ├── PredicateSymbolFilterRule.cs │ │ ├── SymbolFilterOptions.cs │ │ ├── SymbolFilterReason.cs │ │ └── SymbolFilterRule.cs │ ├── Formatting │ │ ├── CodeFormatter.cs │ │ └── CodeFormatterOptions.cs │ ├── Host │ │ └── Mef │ │ │ ├── LanguageMetadata.cs │ │ │ ├── LanguageServiceMetadata.cs │ │ │ ├── MefHostServices.cs │ │ │ ├── MefLanguageServices.cs │ │ │ └── MefWorkspaceServices.cs │ ├── ISyntaxFactsService.cs │ ├── IUserDialog.cs │ ├── Logging │ │ ├── ConsoleColors.cs │ │ ├── ConsoleWriter.cs │ │ ├── LogHelpers.cs │ │ ├── LogMessage.cs │ │ ├── Logger.cs │ │ ├── TextWriterWithVerbosity.cs │ │ └── Verbosity.cs │ ├── MemberNameGenerator.cs │ ├── PathUtilities.cs │ ├── ProjectOrSolution.cs │ ├── README.md │ ├── Rename │ │ ├── CompilationErrorResolution.cs │ │ ├── DiffSpan.cs │ │ ├── DiffTracker.cs │ │ ├── FindSymbolService.cs │ │ ├── IFindSymbolService.cs │ │ ├── LocalSymbolComparer.cs │ │ ├── RenameScope.cs │ │ ├── RenameScopeFilter.cs │ │ ├── SymbolData.cs │ │ ├── SymbolListHelpers.cs │ │ ├── SymbolProvider.cs │ │ ├── SymbolRenameProgress.cs │ │ ├── SymbolRenameResult.cs │ │ ├── SymbolRenameState.cs │ │ ├── SymbolRenamer.cs │ │ └── SymbolRenamerOptions.cs │ ├── SimpleProjectInfo.cs │ ├── Spelling │ │ ├── Core │ │ │ ├── FixList.cs │ │ │ ├── Hash.cs │ │ │ ├── Spellchecker.Identifier.cs │ │ │ ├── Spellchecker.cs │ │ │ ├── SpellcheckerOptions.cs │ │ │ ├── SpellingCapture.cs │ │ │ ├── SpellingData.cs │ │ │ ├── SpellingFix.cs │ │ │ ├── SpellingFixComparer.cs │ │ │ ├── SpellingFixKind.cs │ │ │ ├── SpellingFixProvider.cs │ │ │ ├── SpellingMatch.cs │ │ │ ├── SplitMode.cs │ │ │ ├── TextCasing.cs │ │ │ ├── TextUtility.cs │ │ │ ├── WordChar.cs │ │ │ ├── WordCharMap.cs │ │ │ ├── WordList.cs │ │ │ ├── WordListLoadOptions.cs │ │ │ ├── WordListLoader.cs │ │ │ ├── WordListLoaderResult.cs │ │ │ ├── WordSequence.cs │ │ │ └── WordSequenceMatch.cs │ │ ├── ISpellingService.cs │ │ ├── SpellcheckAnalyzer.cs │ │ ├── SpellcheckOptions.cs │ │ ├── SpellingAnalysisContext.cs │ │ ├── SpellingDiagnostic.cs │ │ ├── SpellingFixResult.cs │ │ ├── SpellingFixResultEqualityComparer.cs │ │ ├── SpellingScopeFilter.cs │ │ ├── SpellingService.cs │ │ └── StringComparerUtility.cs │ ├── SymbolDefinitionSortOptions.cs │ ├── SymbolGroup.cs │ ├── SymbolGroupFilter.cs │ ├── SyntaxFinder.cs │ ├── Workspaces.Core.csproj │ ├── app.config │ └── docs │ │ └── NuGetReadme.md ├── global.ruleset.old └── spellcheck └── tools ├── build_cli_debug.ps1 ├── cli_add_file_banner.ps1 ├── cli_analyze.ps1 ├── cli_fix.ps1 ├── cli_format.ps1 ├── cli_lloc.ps1 ├── cli_loc.ps1 ├── copy_spelling_from_orang.ps1 ├── generate_all.ps1 ├── generate_api_list.ps1 ├── generate_cli_docs.ps1 ├── generate_code.ps1 ├── generate_configuration_file.ps1 ├── generate_metadata.ps1 ├── generate_ref_docs.ps1 ├── generate_ref_docs.sln ├── list_syntax_node_hierarchy.ps1 ├── nuget_push.ps1 ├── reinstall_cli.ps1 ├── reinstall_cli_debug.ps1 ├── remove_unused_symbols.ps1 ├── report_analyzers_execution_time.ps1 ├── sn.exe ├── sn.ps1 ├── vsix_publish.ps1 └── vsix_uninstall_debug.ps1 /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: JosefPihrt 2 | custom: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=BX85UA346VTN6 3 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "dotnet.defaultSolution": "src/Roslynator.sln" 3 | } -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /ChangeLog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/ChangeLog.md -------------------------------------------------------------------------------- /Donations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/Donations.md -------------------------------------------------------------------------------- /GitVersion.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/GitVersion.yml -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /NOTICE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/NOTICE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/SECURITY.md -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- 1 | # https://josefpihrt.github.io/docs/roslynator -------------------------------------------------------------------------------- /docs/configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/docs/configuration.md -------------------------------------------------------------------------------- /images/roslynator-logo-large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/images/roslynator-logo-large.png -------------------------------------------------------------------------------- /images/roslynator-logo-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/images/roslynator-logo-small.png -------------------------------------------------------------------------------- /images/roslynator-social-card.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/images/roslynator-social-card.png -------------------------------------------------------------------------------- /images/roslynator.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/images/roslynator.ai -------------------------------------------------------------------------------- /src/Analyzers.CodeFixes/Analyzers.CodeFixes.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Analyzers.CodeFixes/Analyzers.CodeFixes.csproj -------------------------------------------------------------------------------- /src/Analyzers.CodeFixes/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Analyzers.CodeFixes/GlobalSuppressions.cs -------------------------------------------------------------------------------- /src/Analyzers.CodeFixes/Roslynator.Analyzers.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Analyzers.CodeFixes/Roslynator.Analyzers.nuspec -------------------------------------------------------------------------------- /src/Analyzers.CodeFixes/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Analyzers.CodeFixes/app.config -------------------------------------------------------------------------------- /src/Analyzers.CodeFixes/docs/NuGetReadme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Analyzers.CodeFixes/docs/NuGetReadme.md -------------------------------------------------------------------------------- /src/Analyzers.CodeFixes/tools/install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Analyzers.CodeFixes/tools/install.ps1 -------------------------------------------------------------------------------- /src/Analyzers.CodeFixes/tools/uninstall.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Analyzers.CodeFixes/tools/uninstall.ps1 -------------------------------------------------------------------------------- /src/Analyzers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Analyzers.xml -------------------------------------------------------------------------------- /src/Analyzers/Analysis/WhitespaceAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Analyzers/Analysis/WhitespaceAnalyzer.cs -------------------------------------------------------------------------------- /src/Analyzers/Analyzers.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Analyzers/Analyzers.csproj -------------------------------------------------------------------------------- /src/Analyzers/CSharp/Analysis/AddBracesAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Analyzers/CSharp/Analysis/AddBracesAnalyzer.cs -------------------------------------------------------------------------------- /src/Analyzers/CSharp/Analysis/AnonymousMethodAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Analyzers/CSharp/Analysis/AnonymousMethodAnalyzer.cs -------------------------------------------------------------------------------- /src/Analyzers/CSharp/Analysis/BaseDiagnosticAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Analyzers/CSharp/Analysis/BaseDiagnosticAnalyzer.cs -------------------------------------------------------------------------------- /src/Analyzers/CSharp/Analysis/BinaryOperatorAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Analyzers/CSharp/Analysis/BinaryOperatorAnalyzer.cs -------------------------------------------------------------------------------- /src/Analyzers/CSharp/Analysis/BooleanLiteralAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Analyzers/CSharp/Analysis/BooleanLiteralAnalyzer.cs -------------------------------------------------------------------------------- /src/Analyzers/CSharp/Analysis/ConfigureAwaitAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Analyzers/CSharp/Analysis/ConfigureAwaitAnalyzer.cs -------------------------------------------------------------------------------- /src/Analyzers/CSharp/Analysis/EnumSymbolAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Analyzers/CSharp/Analysis/EnumSymbolAnalyzer.cs -------------------------------------------------------------------------------- /src/Analyzers/CSharp/Analysis/IfStatementAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Analyzers/CSharp/Analysis/IfStatementAnalyzer.cs -------------------------------------------------------------------------------- /src/Analyzers/CSharp/Analysis/OrderModifiersAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Analyzers/CSharp/Analysis/OrderModifiersAnalyzer.cs -------------------------------------------------------------------------------- /src/Analyzers/CSharp/Analysis/RemoveBracesAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Analyzers/CSharp/Analysis/RemoveBracesAnalyzer.cs -------------------------------------------------------------------------------- /src/Analyzers/CSharp/Analysis/UseAsyncAwaitAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Analyzers/CSharp/Analysis/UseAsyncAwaitAnalyzer.cs -------------------------------------------------------------------------------- /src/Analyzers/CSharp/AnalyzerOptions.Generated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Analyzers/CSharp/AnalyzerOptions.Generated.cs -------------------------------------------------------------------------------- /src/Analyzers/CSharp/CSharpDiagnosticHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Analyzers/CSharp/CSharpDiagnosticHelpers.cs -------------------------------------------------------------------------------- /src/Analyzers/CSharp/NodeSymbolInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Analyzers/CSharp/NodeSymbolInfo.cs -------------------------------------------------------------------------------- /src/Analyzers/CSharp/RawStringLiteralInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Analyzers/CSharp/RawStringLiteralInfo.cs -------------------------------------------------------------------------------- /src/Analyzers/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Analyzers/GlobalSuppressions.cs -------------------------------------------------------------------------------- /src/Analyzers/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Analyzers/LICENSE.txt -------------------------------------------------------------------------------- /src/Analyzers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Analyzers/README.md -------------------------------------------------------------------------------- /src/Analyzers/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Analyzers/app.config -------------------------------------------------------------------------------- /src/CSharp.Workspaces/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CSharp.Workspaces/.editorconfig -------------------------------------------------------------------------------- /src/CSharp.Workspaces/CSharp.Workspaces.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CSharp.Workspaces/CSharp.Workspaces.csproj -------------------------------------------------------------------------------- /src/CSharp.Workspaces/CSharp/CSharpTypeFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CSharp.Workspaces/CSharp/CSharpTypeFactory.cs -------------------------------------------------------------------------------- /src/CSharp.Workspaces/CSharp/DefaultSyntaxOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CSharp.Workspaces/CSharp/DefaultSyntaxOptions.cs -------------------------------------------------------------------------------- /src/CSharp.Workspaces/CSharp/FindSymbols/LocalWalker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CSharp.Workspaces/CSharp/FindSymbols/LocalWalker.cs -------------------------------------------------------------------------------- /src/CSharp.Workspaces/CSharp/RemoveCommentHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CSharp.Workspaces/CSharp/RemoveCommentHelper.cs -------------------------------------------------------------------------------- /src/CSharp.Workspaces/CSharp/SyntaxInverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CSharp.Workspaces/CSharp/SyntaxInverter.cs -------------------------------------------------------------------------------- /src/CSharp.Workspaces/CSharp/SyntaxLogicalInverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CSharp.Workspaces/CSharp/SyntaxLogicalInverter.cs -------------------------------------------------------------------------------- /src/CSharp.Workspaces/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CSharp.Workspaces/README.md -------------------------------------------------------------------------------- /src/CSharp.Workspaces/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CSharp.Workspaces/app.config -------------------------------------------------------------------------------- /src/CSharp.Workspaces/docs/NuGetReadme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CSharp.Workspaces/docs/NuGetReadme.md -------------------------------------------------------------------------------- /src/CSharp/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CSharp/.editorconfig -------------------------------------------------------------------------------- /src/CSharp/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CSharp/CHANGELOG.md -------------------------------------------------------------------------------- /src/CSharp/CSharp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CSharp/CSharp.csproj -------------------------------------------------------------------------------- /src/CSharp/CSharp/BracesAnalysis.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CSharp/CSharp/BracesAnalysis.cs -------------------------------------------------------------------------------- /src/CSharp/CSharp/BracesAnalysisFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CSharp/CSharp/BracesAnalysisFlags.cs -------------------------------------------------------------------------------- /src/CSharp/CSharp/CSharpFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CSharp/CSharp/CSharpFactory.cs -------------------------------------------------------------------------------- /src/CSharp/CSharp/CSharpFacts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CSharp/CSharp/CSharpFacts.cs -------------------------------------------------------------------------------- /src/CSharp/CSharp/CSharpLanguageFeature.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CSharp/CSharp/CSharpLanguageFeature.cs -------------------------------------------------------------------------------- /src/CSharp/CSharp/CSharpNameGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CSharp/CSharp/CSharpNameGenerator.cs -------------------------------------------------------------------------------- /src/CSharp/CSharp/CSharpOverriddenSymbolInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CSharp/CSharp/CSharpOverriddenSymbolInfo.cs -------------------------------------------------------------------------------- /src/CSharp/CSharp/CSharpTypeAnalysis.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CSharp/CSharp/CSharpTypeAnalysis.cs -------------------------------------------------------------------------------- /src/CSharp/CSharp/CSharpUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CSharp/CSharp/CSharpUtility.cs -------------------------------------------------------------------------------- /src/CSharp/CSharp/CommentFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CSharp/CSharp/CommentFilter.cs -------------------------------------------------------------------------------- /src/CSharp/CSharp/EnumMemberDeclarationNameComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CSharp/CSharp/EnumMemberDeclarationNameComparer.cs -------------------------------------------------------------------------------- /src/CSharp/CSharp/EnumMemberDeclarationValueComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CSharp/CSharp/EnumMemberDeclarationValueComparer.cs -------------------------------------------------------------------------------- /src/CSharp/CSharp/ExpressionChain.Reversed.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CSharp/CSharp/ExpressionChain.Reversed.cs -------------------------------------------------------------------------------- /src/CSharp/CSharp/ExpressionChain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CSharp/CSharp/ExpressionChain.cs -------------------------------------------------------------------------------- /src/CSharp/CSharp/Extensions/CSharpExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CSharp/CSharp/Extensions/CSharpExtensions.cs -------------------------------------------------------------------------------- /src/CSharp/CSharp/Extensions/EnumExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CSharp/CSharp/Extensions/EnumExtensions.cs -------------------------------------------------------------------------------- /src/CSharp/CSharp/Extensions/SymbolExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CSharp/CSharp/Extensions/SymbolExtensions.cs -------------------------------------------------------------------------------- /src/CSharp/CSharp/Extensions/SyntaxExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CSharp/CSharp/Extensions/SyntaxExtensions.cs -------------------------------------------------------------------------------- /src/CSharp/CSharp/IfStatementCascade.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CSharp/CSharp/IfStatementCascade.cs -------------------------------------------------------------------------------- /src/CSharp/CSharp/IfStatementCascadeInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CSharp/CSharp/IfStatementCascadeInfo.cs -------------------------------------------------------------------------------- /src/CSharp/CSharp/IfStatementOrElseClause.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CSharp/CSharp/IfStatementOrElseClause.cs -------------------------------------------------------------------------------- /src/CSharp/CSharp/MemberDeclarationComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CSharp/CSharp/MemberDeclarationComparer.cs -------------------------------------------------------------------------------- /src/CSharp/CSharp/MemberDeclarationInserter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CSharp/CSharp/MemberDeclarationInserter.cs -------------------------------------------------------------------------------- /src/CSharp/CSharp/MemberDeclarationKindComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CSharp/CSharp/MemberDeclarationKindComparer.cs -------------------------------------------------------------------------------- /src/CSharp/CSharp/MemberDeclarationListSelection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CSharp/CSharp/MemberDeclarationListSelection.cs -------------------------------------------------------------------------------- /src/CSharp/CSharp/MethodChain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CSharp/CSharp/MethodChain.cs -------------------------------------------------------------------------------- /src/CSharp/CSharp/ModifierComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CSharp/CSharp/ModifierComparer.cs -------------------------------------------------------------------------------- /src/CSharp/CSharp/ModifierFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CSharp/CSharp/ModifierFilter.cs -------------------------------------------------------------------------------- /src/CSharp/CSharp/ModifierKindComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CSharp/CSharp/ModifierKindComparer.cs -------------------------------------------------------------------------------- /src/CSharp/CSharp/ModifierList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CSharp/CSharp/ModifierList.cs -------------------------------------------------------------------------------- /src/CSharp/CSharp/ModifierList`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CSharp/CSharp/ModifierList`1.cs -------------------------------------------------------------------------------- /src/CSharp/CSharp/Modifiers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CSharp/CSharp/Modifiers.cs -------------------------------------------------------------------------------- /src/CSharp/CSharp/NullCheckStyles.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CSharp/CSharp/NullCheckStyles.cs -------------------------------------------------------------------------------- /src/CSharp/CSharp/PreprocessorDirectiveFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CSharp/CSharp/PreprocessorDirectiveFilter.cs -------------------------------------------------------------------------------- /src/CSharp/CSharp/StatementListSelection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CSharp/CSharp/StatementListSelection.cs -------------------------------------------------------------------------------- /src/CSharp/CSharp/StringLiteralParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CSharp/CSharp/StringLiteralParser.cs -------------------------------------------------------------------------------- /src/CSharp/CSharp/StringLiteralTextBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CSharp/CSharp/StringLiteralTextBuilder.cs -------------------------------------------------------------------------------- /src/CSharp/CSharp/Syntax/AsExpressionInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CSharp/CSharp/Syntax/AsExpressionInfo.cs -------------------------------------------------------------------------------- /src/CSharp/CSharp/Syntax/AssignmentExpressionInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CSharp/CSharp/Syntax/AssignmentExpressionInfo.cs -------------------------------------------------------------------------------- /src/CSharp/CSharp/Syntax/BinaryExpressionInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CSharp/CSharp/Syntax/BinaryExpressionInfo.cs -------------------------------------------------------------------------------- /src/CSharp/CSharp/Syntax/ConditionalExpressionInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CSharp/CSharp/Syntax/ConditionalExpressionInfo.cs -------------------------------------------------------------------------------- /src/CSharp/CSharp/Syntax/ConditionalStatementInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CSharp/CSharp/Syntax/ConditionalStatementInfo.cs -------------------------------------------------------------------------------- /src/CSharp/CSharp/Syntax/GenericInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CSharp/CSharp/Syntax/GenericInfo.cs -------------------------------------------------------------------------------- /src/CSharp/CSharp/Syntax/HexNumericLiteralSuffixKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CSharp/CSharp/Syntax/HexNumericLiteralSuffixKind.cs -------------------------------------------------------------------------------- /src/CSharp/CSharp/Syntax/IsExpressionInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CSharp/CSharp/Syntax/IsExpressionInfo.cs -------------------------------------------------------------------------------- /src/CSharp/CSharp/Syntax/MemberDeclarationListInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CSharp/CSharp/Syntax/MemberDeclarationListInfo.cs -------------------------------------------------------------------------------- /src/CSharp/CSharp/Syntax/ModifierListInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CSharp/CSharp/Syntax/ModifierListInfo.cs -------------------------------------------------------------------------------- /src/CSharp/CSharp/Syntax/NullCheckExpressionInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CSharp/CSharp/Syntax/NullCheckExpressionInfo.cs -------------------------------------------------------------------------------- /src/CSharp/CSharp/Syntax/ParameterInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CSharp/CSharp/Syntax/ParameterInfo.cs -------------------------------------------------------------------------------- /src/CSharp/CSharp/Syntax/RegionInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CSharp/CSharp/Syntax/RegionInfo.cs -------------------------------------------------------------------------------- /src/CSharp/CSharp/Syntax/SimpleIfStatementInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CSharp/CSharp/Syntax/SimpleIfStatementInfo.cs -------------------------------------------------------------------------------- /src/CSharp/CSharp/Syntax/StatementListInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CSharp/CSharp/Syntax/StatementListInfo.cs -------------------------------------------------------------------------------- /src/CSharp/CSharp/Syntax/StringConcatenationAnalysis.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CSharp/CSharp/Syntax/StringConcatenationAnalysis.cs -------------------------------------------------------------------------------- /src/CSharp/CSharp/Syntax/StringLiteralExpressionInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CSharp/CSharp/Syntax/StringLiteralExpressionInfo.cs -------------------------------------------------------------------------------- /src/CSharp/CSharp/Syntax/SyntaxInfoHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CSharp/CSharp/Syntax/SyntaxInfoHelpers.cs -------------------------------------------------------------------------------- /src/CSharp/CSharp/Syntax/TypeParameterConstraintInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CSharp/CSharp/Syntax/TypeParameterConstraintInfo.cs -------------------------------------------------------------------------------- /src/CSharp/CSharp/Syntax/UsingDirectiveListInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CSharp/CSharp/Syntax/UsingDirectiveListInfo.cs -------------------------------------------------------------------------------- /src/CSharp/CSharp/Syntax/XmlElementInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CSharp/CSharp/Syntax/XmlElementInfo.cs -------------------------------------------------------------------------------- /src/CSharp/CSharp/SyntaxAccessibility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CSharp/CSharp/SyntaxAccessibility.cs -------------------------------------------------------------------------------- /src/CSharp/CSharp/SyntaxAccessibility`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CSharp/CSharp/SyntaxAccessibility`1.cs -------------------------------------------------------------------------------- /src/CSharp/CSharp/SyntaxDebug.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CSharp/CSharp/SyntaxDebug.cs -------------------------------------------------------------------------------- /src/CSharp/CSharp/SyntaxInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CSharp/CSharp/SyntaxInfo.cs -------------------------------------------------------------------------------- /src/CSharp/CSharp/SyntaxRefactorings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CSharp/CSharp/SyntaxRefactorings.cs -------------------------------------------------------------------------------- /src/CSharp/CSharp/SyntaxRewriters/RenameRewriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CSharp/CSharp/SyntaxRewriters/RenameRewriter.cs -------------------------------------------------------------------------------- /src/CSharp/CSharp/SyntaxRewriters/TriviaRemover.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CSharp/CSharp/SyntaxRewriters/TriviaRemover.cs -------------------------------------------------------------------------------- /src/CSharp/CSharp/SyntaxRewriters/WhitespaceRemover.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CSharp/CSharp/SyntaxRewriters/WhitespaceRemover.cs -------------------------------------------------------------------------------- /src/CSharp/CSharp/SyntaxRewriters/WhitespaceReplacer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CSharp/CSharp/SyntaxRewriters/WhitespaceReplacer.cs -------------------------------------------------------------------------------- /src/CSharp/CSharp/SyntaxWalkers/ContainsYieldWalker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CSharp/CSharp/SyntaxWalkers/ContainsYieldWalker.cs -------------------------------------------------------------------------------- /src/CSharp/CSharp/SyntaxWalkers/StatementWalker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CSharp/CSharp/SyntaxWalkers/StatementWalker.cs -------------------------------------------------------------------------------- /src/CSharp/CSharp/SyntaxWalkers/TypeSyntaxWalker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CSharp/CSharp/SyntaxWalkers/TypeSyntaxWalker.cs -------------------------------------------------------------------------------- /src/CSharp/DetermineParameterHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CSharp/DetermineParameterHelper.cs -------------------------------------------------------------------------------- /src/CSharp/DetermineParameterTypeHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CSharp/DetermineParameterTypeHelper.cs -------------------------------------------------------------------------------- /src/CSharp/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CSharp/GlobalSuppressions.cs -------------------------------------------------------------------------------- /src/CSharp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CSharp/README.md -------------------------------------------------------------------------------- /src/CSharp/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CSharp/app.config -------------------------------------------------------------------------------- /src/CSharp/docs/NuGetReadme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CSharp/docs/NuGetReadme.md -------------------------------------------------------------------------------- /src/CodeAnalysis.Analyzers.CodeFixes/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CodeAnalysis.Analyzers.CodeFixes/app.config -------------------------------------------------------------------------------- /src/CodeAnalysis.Analyzers.CodeFixes/tools/install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CodeAnalysis.Analyzers.CodeFixes/tools/install.ps1 -------------------------------------------------------------------------------- /src/CodeAnalysis.Analyzers/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CodeAnalysis.Analyzers/LICENSE.txt -------------------------------------------------------------------------------- /src/CodeAnalysis.Analyzers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CodeAnalysis.Analyzers/README.md -------------------------------------------------------------------------------- /src/CodeAnalysis.Analyzers/RoslynSymbolUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CodeAnalysis.Analyzers/RoslynSymbolUtility.cs -------------------------------------------------------------------------------- /src/CodeAnalysis.Analyzers/RoslynUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CodeAnalysis.Analyzers/RoslynUtility.cs -------------------------------------------------------------------------------- /src/CodeAnalysis.Analyzers/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CodeAnalysis.Analyzers/app.config -------------------------------------------------------------------------------- /src/CodeFixes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CodeFixes.xml -------------------------------------------------------------------------------- /src/CodeFixes/CSharp/CodeFixDescriptors.Generated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CodeFixes/CSharp/CodeFixDescriptors.Generated.cs -------------------------------------------------------------------------------- /src/CodeFixes/CSharp/CodeFixIdentifiers.Generated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CodeFixes/CSharp/CodeFixIdentifiers.Generated.cs -------------------------------------------------------------------------------- /src/CodeFixes/CSharp/CodeFixIdentifiers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CodeFixes/CSharp/CodeFixIdentifiers.cs -------------------------------------------------------------------------------- /src/CodeFixes/CSharp/CodeFixes/CodeFixRegistrator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CodeFixes/CSharp/CodeFixes/CodeFixRegistrator.cs -------------------------------------------------------------------------------- /src/CodeFixes/CSharp/CodeFixes/TokenCodeFixProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CodeFixes/CSharp/CodeFixes/TokenCodeFixProvider.cs -------------------------------------------------------------------------------- /src/CodeFixes/CSharp/CodeFixes/TypeCodeFixProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CodeFixes/CSharp/CodeFixes/TypeCodeFixProvider.cs -------------------------------------------------------------------------------- /src/CodeFixes/CSharp/CodeFixes/UnsafeCodeFixProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CodeFixes/CSharp/CodeFixes/UnsafeCodeFixProvider.cs -------------------------------------------------------------------------------- /src/CodeFixes/CodeFixMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CodeFixes/CodeFixMap.cs -------------------------------------------------------------------------------- /src/CodeFixes/CodeFixOption.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CodeFixes/CodeFixOption.cs -------------------------------------------------------------------------------- /src/CodeFixes/CodeFixOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CodeFixes/CodeFixOptions.cs -------------------------------------------------------------------------------- /src/CodeFixes/CodeFixes.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CodeFixes/CodeFixes.csproj -------------------------------------------------------------------------------- /src/CodeFixes/CodeFixes/CodeFixDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CodeFixes/CodeFixes/CodeFixDescriptor.cs -------------------------------------------------------------------------------- /src/CodeFixes/CodeFixes/CodeFixIdentifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CodeFixes/CodeFixes/CodeFixIdentifier.cs -------------------------------------------------------------------------------- /src/CodeFixes/CodeFixes/CompilerCodeFixOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CodeFixes/CodeFixes/CompilerCodeFixOptions.cs -------------------------------------------------------------------------------- /src/CodeFixes/CompilerDiagnosticFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CodeFixes/CompilerDiagnosticFix.cs -------------------------------------------------------------------------------- /src/CodeFixes/DiagnosticsAll.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CodeFixes/DiagnosticsAll.xml -------------------------------------------------------------------------------- /src/CodeFixes/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CodeFixes/GlobalSuppressions.cs -------------------------------------------------------------------------------- /src/CodeFixes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CodeFixes/README.md -------------------------------------------------------------------------------- /src/CodeFixes/Roslynator.CodeFixes.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CodeFixes/Roslynator.CodeFixes.nuspec -------------------------------------------------------------------------------- /src/CodeFixes/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CodeFixes/app.config -------------------------------------------------------------------------------- /src/CodeFixes/docs/NuGetReadme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CodeFixes/docs/NuGetReadme.md -------------------------------------------------------------------------------- /src/CodeFixes/tools/install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CodeFixes/tools/install.ps1 -------------------------------------------------------------------------------- /src/CodeFixes/tools/uninstall.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CodeFixes/tools/uninstall.ps1 -------------------------------------------------------------------------------- /src/CommandLine.DocumentationGenerator/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CommandLine.DocumentationGenerator/Program.cs -------------------------------------------------------------------------------- /src/CommandLine.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CommandLine.sln -------------------------------------------------------------------------------- /src/CommandLine/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CommandLine/.editorconfig -------------------------------------------------------------------------------- /src/CommandLine/AnalyzerAssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CommandLine/AnalyzerAssemblyInfo.cs -------------------------------------------------------------------------------- /src/CommandLine/AnalyzerAssemblyLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CommandLine/AnalyzerAssemblyLoader.cs -------------------------------------------------------------------------------- /src/CommandLine/AssemblyFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CommandLine/AssemblyFactory.cs -------------------------------------------------------------------------------- /src/CommandLine/ChangeLog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CommandLine/ChangeLog.md -------------------------------------------------------------------------------- /src/CommandLine/Colors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CommandLine/Colors.cs -------------------------------------------------------------------------------- /src/CommandLine/CommandLine.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CommandLine/CommandLine.csproj -------------------------------------------------------------------------------- /src/CommandLine/CommandLine.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CommandLine/CommandLine.nuspec -------------------------------------------------------------------------------- /src/CommandLine/CommandLineHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CommandLine/CommandLineHelpers.cs -------------------------------------------------------------------------------- /src/CommandLine/CommandResults/AnalyzeCommandResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CommandLine/CommandResults/AnalyzeCommandResult.cs -------------------------------------------------------------------------------- /src/CommandLine/CommandResults/CommandResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CommandLine/CommandResults/CommandResult.cs -------------------------------------------------------------------------------- /src/CommandLine/CommandResults/CommandResults.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CommandLine/CommandResults/CommandResults.cs -------------------------------------------------------------------------------- /src/CommandLine/CommandResults/FixCommandResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CommandLine/CommandResults/FixCommandResult.cs -------------------------------------------------------------------------------- /src/CommandLine/CommandResults/FormatCommandResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CommandLine/CommandResults/FormatCommandResult.cs -------------------------------------------------------------------------------- /src/CommandLine/CommandStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CommandLine/CommandStatus.cs -------------------------------------------------------------------------------- /src/CommandLine/Commands/AnalyzeCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CommandLine/Commands/AnalyzeCommand.cs -------------------------------------------------------------------------------- /src/CommandLine/Commands/FindSymbolCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CommandLine/Commands/FindSymbolCommand.cs -------------------------------------------------------------------------------- /src/CommandLine/Commands/FixCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CommandLine/Commands/FixCommand.cs -------------------------------------------------------------------------------- /src/CommandLine/Commands/FormatCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CommandLine/Commands/FormatCommand.cs -------------------------------------------------------------------------------- /src/CommandLine/Commands/GenerateDocCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CommandLine/Commands/GenerateDocCommand.cs -------------------------------------------------------------------------------- /src/CommandLine/Commands/GenerateDocRootCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CommandLine/Commands/GenerateDocRootCommand.cs -------------------------------------------------------------------------------- /src/CommandLine/Commands/HelpCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CommandLine/Commands/HelpCommand.cs -------------------------------------------------------------------------------- /src/CommandLine/Commands/ListSymbolsCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CommandLine/Commands/ListSymbolsCommand.cs -------------------------------------------------------------------------------- /src/CommandLine/Commands/LogicalLinesOfCodeCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CommandLine/Commands/LogicalLinesOfCodeCommand.cs -------------------------------------------------------------------------------- /src/CommandLine/Commands/MSBuildWorkspaceCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CommandLine/Commands/MSBuildWorkspaceCommand.cs -------------------------------------------------------------------------------- /src/CommandLine/Commands/MigrateCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CommandLine/Commands/MigrateCommand.cs -------------------------------------------------------------------------------- /src/CommandLine/Commands/PhysicalLinesOfCodeCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CommandLine/Commands/PhysicalLinesOfCodeCommand.cs -------------------------------------------------------------------------------- /src/CommandLine/Commands/RenameSymbolCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CommandLine/Commands/RenameSymbolCommand.cs -------------------------------------------------------------------------------- /src/CommandLine/Commands/SpellcheckCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CommandLine/Commands/SpellcheckCommand.cs -------------------------------------------------------------------------------- /src/CommandLine/ConsoleDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CommandLine/ConsoleDialog.cs -------------------------------------------------------------------------------- /src/CommandLine/ConsoleDialogDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CommandLine/ConsoleDialogDefinition.cs -------------------------------------------------------------------------------- /src/CommandLine/ConsoleHelpWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CommandLine/ConsoleHelpWriter.cs -------------------------------------------------------------------------------- /src/CommandLine/ConsoleHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CommandLine/ConsoleHelpers.cs -------------------------------------------------------------------------------- /src/CommandLine/DelegateFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CommandLine/DelegateFactory.cs -------------------------------------------------------------------------------- /src/CommandLine/DocumentationHost.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CommandLine/DocumentationHost.cs -------------------------------------------------------------------------------- /src/CommandLine/EncodingHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CommandLine/EncodingHelpers.cs -------------------------------------------------------------------------------- /src/CommandLine/Encodings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CommandLine/Encodings.cs -------------------------------------------------------------------------------- /src/CommandLine/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CommandLine/Extensions.cs -------------------------------------------------------------------------------- /src/CommandLine/FindSymbols/SymbolFinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CommandLine/FindSymbols/SymbolFinder.cs -------------------------------------------------------------------------------- /src/CommandLine/FindSymbols/SymbolFinderOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CommandLine/FindSymbols/SymbolFinderOptions.cs -------------------------------------------------------------------------------- /src/CommandLine/FindSymbols/UnusedSymbolUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CommandLine/FindSymbols/UnusedSymbolUtility.cs -------------------------------------------------------------------------------- /src/CommandLine/GenerateDocumentationSample.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CommandLine/GenerateDocumentationSample.targets -------------------------------------------------------------------------------- /src/CommandLine/GitLab/GitLabIssue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CommandLine/GitLab/GitLabIssue.cs -------------------------------------------------------------------------------- /src/CommandLine/GitLab/GitLabIssueLocation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CommandLine/GitLab/GitLabIssueLocation.cs -------------------------------------------------------------------------------- /src/CommandLine/GitLab/GitLabLocationLines.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CommandLine/GitLab/GitLabLocationLines.cs -------------------------------------------------------------------------------- /src/CommandLine/Html/DocumentationDisplayMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CommandLine/Html/DocumentationDisplayMode.cs -------------------------------------------------------------------------------- /src/CommandLine/Html/SymbolDefinitionHtmlWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CommandLine/Html/SymbolDefinitionHtmlWriter.cs -------------------------------------------------------------------------------- /src/CommandLine/Json/DiagnosticGitLabJsonSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CommandLine/Json/DiagnosticGitLabJsonSerializer.cs -------------------------------------------------------------------------------- /src/CommandLine/Json/SymbolDefinitionJsonWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CommandLine/Json/SymbolDefinitionJsonWriter.cs -------------------------------------------------------------------------------- /src/CommandLine/Migration/AnalyzersMapping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CommandLine/Migration/AnalyzersMapping.cs -------------------------------------------------------------------------------- /src/CommandLine/OmitMemberParts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CommandLine/OmitMemberParts.cs -------------------------------------------------------------------------------- /src/CommandLine/OptionNames.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CommandLine/OptionNames.cs -------------------------------------------------------------------------------- /src/CommandLine/OptionShortNames.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CommandLine/OptionShortNames.cs -------------------------------------------------------------------------------- /src/CommandLine/Options/AbstractCommandLineOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CommandLine/Options/AbstractCommandLineOptions.cs -------------------------------------------------------------------------------- /src/CommandLine/Options/AnalyzeCommandLineOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CommandLine/Options/AnalyzeCommandLineOptions.cs -------------------------------------------------------------------------------- /src/CommandLine/Options/BaseCommandLineOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CommandLine/Options/BaseCommandLineOptions.cs -------------------------------------------------------------------------------- /src/CommandLine/Options/FindSymbolCommandLineOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CommandLine/Options/FindSymbolCommandLineOptions.cs -------------------------------------------------------------------------------- /src/CommandLine/Options/FixCommandLineOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CommandLine/Options/FixCommandLineOptions.cs -------------------------------------------------------------------------------- /src/CommandLine/Options/FormatCommandLineOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CommandLine/Options/FormatCommandLineOptions.cs -------------------------------------------------------------------------------- /src/CommandLine/Options/HelpCommandLineOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CommandLine/Options/HelpCommandLineOptions.cs -------------------------------------------------------------------------------- /src/CommandLine/Options/MSBuildCommandLineOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CommandLine/Options/MSBuildCommandLineOptions.cs -------------------------------------------------------------------------------- /src/CommandLine/Options/MigrateCommandLineOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CommandLine/Options/MigrateCommandLineOptions.cs -------------------------------------------------------------------------------- /src/CommandLine/Options/SpellcheckCommandLineOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CommandLine/Options/SpellcheckCommandLineOptions.cs -------------------------------------------------------------------------------- /src/CommandLine/Orang/CommandLine.Core/Command.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CommandLine/Orang/CommandLine.Core/Command.cs -------------------------------------------------------------------------------- /src/CommandLine/Orang/CommandLine.Core/CommandGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CommandLine/Orang/CommandLine.Core/CommandGroup.cs -------------------------------------------------------------------------------- /src/CommandLine/Orang/CommandLine.Core/CommandLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CommandLine/Orang/CommandLine.Core/CommandLoader.cs -------------------------------------------------------------------------------- /src/CommandLine/Orang/CommandLine.Core/CommandOption.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CommandLine/Orang/CommandLine.Core/CommandOption.cs -------------------------------------------------------------------------------- /src/CommandLine/Orang/CommandLine.Core/Help/HelpItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CommandLine/Orang/CommandLine.Core/Help/HelpItem.cs -------------------------------------------------------------------------------- /src/CommandLine/Orang/CommandLine.Core/OptionValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CommandLine/Orang/CommandLine.Core/OptionValue.cs -------------------------------------------------------------------------------- /src/CommandLine/Orang/Core/CoreExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CommandLine/Orang/Core/CoreExtensions.cs -------------------------------------------------------------------------------- /src/CommandLine/Orang/Core/Filter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CommandLine/Orang/Core/Filter.cs -------------------------------------------------------------------------------- /src/CommandLine/Orang/Core/ICapture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CommandLine/Orang/Core/ICapture.cs -------------------------------------------------------------------------------- /src/CommandLine/Orang/Core/StringBuilderCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CommandLine/Orang/Core/StringBuilderCache.cs -------------------------------------------------------------------------------- /src/CommandLine/Orang/Core/TextHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CommandLine/Orang/Core/TextHelpers.cs -------------------------------------------------------------------------------- /src/CommandLine/Orang/copy_code_from_orang.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CommandLine/Orang/copy_code_from_orang.cmd -------------------------------------------------------------------------------- /src/CommandLine/ParseHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CommandLine/ParseHelpers.cs -------------------------------------------------------------------------------- /src/CommandLine/PathInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CommandLine/PathInfo.cs -------------------------------------------------------------------------------- /src/CommandLine/PathOrigin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CommandLine/PathOrigin.cs -------------------------------------------------------------------------------- /src/CommandLine/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CommandLine/Program.cs -------------------------------------------------------------------------------- /src/CommandLine/ProjectFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CommandLine/ProjectFilter.cs -------------------------------------------------------------------------------- /src/CommandLine/ProjectName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CommandLine/ProjectName.cs -------------------------------------------------------------------------------- /src/CommandLine/ProjectOrSolutionLoadException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CommandLine/ProjectOrSolutionLoadException.cs -------------------------------------------------------------------------------- /src/CommandLine/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CommandLine/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/CommandLine/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CommandLine/README.md -------------------------------------------------------------------------------- /src/CommandLine/Rename/CliCompilationErrorResolution.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CommandLine/Rename/CliCompilationErrorResolution.cs -------------------------------------------------------------------------------- /src/CommandLine/Rename/CliSymbolRenameState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CommandLine/Rename/CliSymbolRenameState.cs -------------------------------------------------------------------------------- /src/CommandLine/RuntimeMetadataReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CommandLine/RuntimeMetadataReference.cs -------------------------------------------------------------------------------- /src/CommandLine/Versions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CommandLine/Versions.cs -------------------------------------------------------------------------------- /src/CommandLine/VisualStudioInstanceComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CommandLine/VisualStudioInstanceComparer.cs -------------------------------------------------------------------------------- /src/CommandLine/Xml/DiagnosticXmlSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CommandLine/Xml/DiagnosticXmlSerializer.cs -------------------------------------------------------------------------------- /src/CommandLine/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/CommandLine/docs/NetCore/NuGetReadme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CommandLine/docs/NetCore/NuGetReadme.md -------------------------------------------------------------------------------- /src/CommandLine/docs/NetFramework/NuGetReadme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/CommandLine/docs/NetFramework/NuGetReadme.md -------------------------------------------------------------------------------- /src/Common/AbstractAnalyzerOptionIsObsoleteAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Common/AbstractAnalyzerOptionIsObsoleteAnalyzer.cs -------------------------------------------------------------------------------- /src/Common/ArgumentNullCheckAnalysis.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Common/ArgumentNullCheckAnalysis.cs -------------------------------------------------------------------------------- /src/Common/ArgumentNullCheckStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Common/ArgumentNullCheckStyle.cs -------------------------------------------------------------------------------- /src/Common/CSharp/Analysis/AnalysisOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Common/CSharp/Analysis/AnalysisOptions.cs -------------------------------------------------------------------------------- /src/Common/CSharp/Analysis/BlockExpressionAnalysis.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Common/CSharp/Analysis/BlockExpressionAnalysis.cs -------------------------------------------------------------------------------- /src/Common/CSharp/Analysis/DiagnosticPropertyKeys.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Common/CSharp/Analysis/DiagnosticPropertyKeys.cs -------------------------------------------------------------------------------- /src/Common/CSharp/Analysis/If/IfAnalysis.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Common/CSharp/Analysis/If/IfAnalysis.cs -------------------------------------------------------------------------------- /src/Common/CSharp/Analysis/If/IfAnalysisKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Common/CSharp/Analysis/If/IfAnalysisKind.cs -------------------------------------------------------------------------------- /src/Common/CSharp/Analysis/If/IfAnalysisOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Common/CSharp/Analysis/If/IfAnalysisOptions.cs -------------------------------------------------------------------------------- /src/Common/CSharp/Analysis/RemoveAsyncAwaitAnalysis.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Common/CSharp/Analysis/RemoveAsyncAwaitAnalysis.cs -------------------------------------------------------------------------------- /src/Common/CSharp/Analysis/ReplaceAsWithCastAnalysis.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Common/CSharp/Analysis/ReplaceAsWithCastAnalysis.cs -------------------------------------------------------------------------------- /src/Common/CSharp/Analysis/UseElementAccessAnalysis.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Common/CSharp/Analysis/UseElementAccessAnalysis.cs -------------------------------------------------------------------------------- /src/Common/CSharp/CodeStyle/AccessorBracesStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Common/CSharp/CodeStyle/AccessorBracesStyle.cs -------------------------------------------------------------------------------- /src/Common/CSharp/CodeStyle/BlankLineStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Common/CSharp/CodeStyle/BlankLineStyle.cs -------------------------------------------------------------------------------- /src/Common/CSharp/CodeStyle/BlockBracesStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Common/CSharp/CodeStyle/BlockBracesStyle.cs -------------------------------------------------------------------------------- /src/Common/CSharp/CodeStyle/BodyStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Common/CSharp/CodeStyle/BodyStyle.cs -------------------------------------------------------------------------------- /src/Common/CSharp/CodeStyle/ConfigureAwaitStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Common/CSharp/CodeStyle/ConfigureAwaitStyle.cs -------------------------------------------------------------------------------- /src/Common/CSharp/CodeStyle/DocCommentSummaryStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Common/CSharp/CodeStyle/DocCommentSummaryStyle.cs -------------------------------------------------------------------------------- /src/Common/CSharp/CodeStyle/EmptyStringStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Common/CSharp/CodeStyle/EmptyStringStyle.cs -------------------------------------------------------------------------------- /src/Common/CSharp/CodeStyle/EnumFlagOperationStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Common/CSharp/CodeStyle/EnumFlagOperationStyle.cs -------------------------------------------------------------------------------- /src/Common/CSharp/CodeStyle/EnumFlagValueStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Common/CSharp/CodeStyle/EnumFlagValueStyle.cs -------------------------------------------------------------------------------- /src/Common/CSharp/CodeStyle/InfiniteLoopStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Common/CSharp/CodeStyle/InfiniteLoopStyle.cs -------------------------------------------------------------------------------- /src/Common/CSharp/CodeStyle/NewLinePosition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Common/CSharp/CodeStyle/NewLinePosition.cs -------------------------------------------------------------------------------- /src/Common/CSharp/CodeStyle/NewLineStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Common/CSharp/CodeStyle/NewLineStyle.cs -------------------------------------------------------------------------------- /src/Common/CSharp/CodeStyle/NullCheckStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Common/CSharp/CodeStyle/NullCheckStyle.cs -------------------------------------------------------------------------------- /src/Common/CSharp/CodeStyle/TrailingCommaStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Common/CSharp/CodeStyle/TrailingCommaStyle.cs -------------------------------------------------------------------------------- /src/Common/CSharp/CodeStyle/TypeStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Common/CSharp/CodeStyle/TypeStyle.cs -------------------------------------------------------------------------------- /src/Common/CSharp/Extensions/CodeStyleExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Common/CSharp/Extensions/CodeStyleExtensions.cs -------------------------------------------------------------------------------- /src/Common/CSharp/Extensions/CommonCSharpExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Common/CSharp/Extensions/CommonCSharpExtensions.cs -------------------------------------------------------------------------------- /src/Common/CSharp/IndentationAnalysis.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Common/CSharp/IndentationAnalysis.cs -------------------------------------------------------------------------------- /src/Common/CSharp/SyntaxTriviaAnalysis.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Common/CSharp/SyntaxTriviaAnalysis.cs -------------------------------------------------------------------------------- /src/Common/CSharp/TriviaBlock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Common/CSharp/TriviaBlock.cs -------------------------------------------------------------------------------- /src/Common/CSharp/TriviaBlockKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Common/CSharp/TriviaBlockKind.cs -------------------------------------------------------------------------------- /src/Common/CSharp/TriviaBlockReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Common/CSharp/TriviaBlockReader.cs -------------------------------------------------------------------------------- /src/Common/Common.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Common/Common.csproj -------------------------------------------------------------------------------- /src/Common/CommonDiagnosticRules.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Common/CommonDiagnosticRules.cs -------------------------------------------------------------------------------- /src/Common/ConfigOptionDefaultValues.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Common/ConfigOptionDefaultValues.cs -------------------------------------------------------------------------------- /src/Common/ConfigOptionDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Common/ConfigOptionDescriptor.cs -------------------------------------------------------------------------------- /src/Common/ConfigOptionKeys.Generated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Common/ConfigOptionKeys.Generated.cs -------------------------------------------------------------------------------- /src/Common/ConfigOptionKeys.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Common/ConfigOptionKeys.cs -------------------------------------------------------------------------------- /src/Common/ConfigOptionValues.Generated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Common/ConfigOptionValues.Generated.cs -------------------------------------------------------------------------------- /src/Common/ConfigOptions.Generated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Common/ConfigOptions.Generated.cs -------------------------------------------------------------------------------- /src/Common/ConfigOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Common/ConfigOptions.cs -------------------------------------------------------------------------------- /src/Common/Configuration/CodeAnalysisConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Common/Configuration/CodeAnalysisConfig.cs -------------------------------------------------------------------------------- /src/Common/Configuration/ConfigMigrator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Common/Configuration/ConfigMigrator.cs -------------------------------------------------------------------------------- /src/Common/Configuration/EditorConfigWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Common/Configuration/EditorConfigWriter.cs -------------------------------------------------------------------------------- /src/Common/Configuration/XmlCodeAnalysisConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Common/Configuration/XmlCodeAnalysisConfig.cs -------------------------------------------------------------------------------- /src/Common/Configuration/XmlCodeAnalysisConfigLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Common/Configuration/XmlCodeAnalysisConfigLoader.cs -------------------------------------------------------------------------------- /src/Common/Configuration/XmlConfigLoadOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Common/Configuration/XmlConfigLoadOptions.cs -------------------------------------------------------------------------------- /src/Common/Configuration/XmlExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Common/Configuration/XmlExtensions.cs -------------------------------------------------------------------------------- /src/Common/DiagnosticCategories.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Common/DiagnosticCategories.cs -------------------------------------------------------------------------------- /src/Common/DiagnosticDescriptorFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Common/DiagnosticDescriptorFactory.cs -------------------------------------------------------------------------------- /src/Common/DiagnosticHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Common/DiagnosticHelpers.cs -------------------------------------------------------------------------------- /src/Common/DiagnosticIdentifiers.Generated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Common/DiagnosticIdentifiers.Generated.cs -------------------------------------------------------------------------------- /src/Common/DiagnosticProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Common/DiagnosticProperties.cs -------------------------------------------------------------------------------- /src/Common/DiagnosticRules.Generated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Common/DiagnosticRules.Generated.cs -------------------------------------------------------------------------------- /src/Common/EquivalenceKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Common/EquivalenceKey.cs -------------------------------------------------------------------------------- /src/Common/Extensions/CommonExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Common/Extensions/CommonExtensions.cs -------------------------------------------------------------------------------- /src/Common/Extensions/HashSetExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Common/Extensions/HashSetExtensions.cs -------------------------------------------------------------------------------- /src/Common/IndentStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Common/IndentStyle.cs -------------------------------------------------------------------------------- /src/Common/LegacyConfigOptionDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Common/LegacyConfigOptionDescriptor.cs -------------------------------------------------------------------------------- /src/Common/LegacyConfigOptions..cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Common/LegacyConfigOptions..cs -------------------------------------------------------------------------------- /src/Common/LegacyConfigOptions.Generated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Common/LegacyConfigOptions.Generated.cs -------------------------------------------------------------------------------- /src/Common/OptionSet`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Common/OptionSet`1.cs -------------------------------------------------------------------------------- /src/Common/RefactoringDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Common/RefactoringDescriptor.cs -------------------------------------------------------------------------------- /src/Common/RoslynMetadataNames.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Common/RoslynMetadataNames.cs -------------------------------------------------------------------------------- /src/Common/RuleSetLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Common/RuleSetLoader.cs -------------------------------------------------------------------------------- /src/Common/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Common/app.config -------------------------------------------------------------------------------- /src/ConfigOptions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/ConfigOptions.xml -------------------------------------------------------------------------------- /src/Core/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Core/.editorconfig -------------------------------------------------------------------------------- /src/Core/AccessibilityFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Core/AccessibilityFilter.cs -------------------------------------------------------------------------------- /src/Core/AsyncMethodNameGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Core/AsyncMethodNameGenerator.cs -------------------------------------------------------------------------------- /src/Core/Collections/Enumerable`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Core/Collections/Enumerable`1.cs -------------------------------------------------------------------------------- /src/Core/Collections/Enumerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Core/Collections/Enumerator.cs -------------------------------------------------------------------------------- /src/Core/Collections/Enumerator`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Core/Collections/Enumerator`1.cs -------------------------------------------------------------------------------- /src/Core/Collections/ReadOnlyCollection`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Core/Collections/ReadOnlyCollection`1.cs -------------------------------------------------------------------------------- /src/Core/Collections/ReadOnlyList`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Core/Collections/ReadOnlyList`1.cs -------------------------------------------------------------------------------- /src/Core/CommonDiagnosticIdentifiers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Core/CommonDiagnosticIdentifiers.cs -------------------------------------------------------------------------------- /src/Core/ConvertHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Core/ConvertHelpers.cs -------------------------------------------------------------------------------- /src/Core/Core.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Core/Core.csproj -------------------------------------------------------------------------------- /src/Core/CreateNameFromTypeSymbolHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Core/CreateNameFromTypeSymbolHelper.cs -------------------------------------------------------------------------------- /src/Core/DefaultNames.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Core/DefaultNames.cs -------------------------------------------------------------------------------- /src/Core/DiagnosticComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Core/DiagnosticComparer.cs -------------------------------------------------------------------------------- /src/Core/DiagnosticDeepEqualityComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Core/DiagnosticDeepEqualityComparer.cs -------------------------------------------------------------------------------- /src/Core/DiagnosticDescriptorComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Core/DiagnosticDescriptorComparer.cs -------------------------------------------------------------------------------- /src/Core/DiagnosticDescriptorUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Core/DiagnosticDescriptorUtility.cs -------------------------------------------------------------------------------- /src/Core/DiagnosticIdComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Core/DiagnosticIdComparer.cs -------------------------------------------------------------------------------- /src/Core/DiagnosticIdPrefix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Core/DiagnosticIdPrefix.cs -------------------------------------------------------------------------------- /src/Core/Documentation/DocumentationCommentData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Core/Documentation/DocumentationCommentData.cs -------------------------------------------------------------------------------- /src/Core/Documentation/DocumentationCommentOrigin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Core/Documentation/DocumentationCommentOrigin.cs -------------------------------------------------------------------------------- /src/Core/Empty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Core/Empty.cs -------------------------------------------------------------------------------- /src/Core/EnumFieldSymbolInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Core/EnumFieldSymbolInfo.cs -------------------------------------------------------------------------------- /src/Core/EnumSymbolInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Core/EnumSymbolInfo.cs -------------------------------------------------------------------------------- /src/Core/EnumUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Core/EnumUtility.cs -------------------------------------------------------------------------------- /src/Core/EnumValueComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Core/EnumValueComparer.cs -------------------------------------------------------------------------------- /src/Core/ExtensionMethodSymbolInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Core/ExtensionMethodSymbolInfo.cs -------------------------------------------------------------------------------- /src/Core/Extensions/DiagnosticsExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Core/Extensions/DiagnosticsExtensions.cs -------------------------------------------------------------------------------- /src/Core/Extensions/EnumExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Core/Extensions/EnumExtensions.cs -------------------------------------------------------------------------------- /src/Core/Extensions/EnumerableExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Core/Extensions/EnumerableExtensions.cs -------------------------------------------------------------------------------- /src/Core/Extensions/FileLinePositionSpanExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Core/Extensions/FileLinePositionSpanExtensions.cs -------------------------------------------------------------------------------- /src/Core/Extensions/ListExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Core/Extensions/ListExtensions.cs -------------------------------------------------------------------------------- /src/Core/Extensions/SemanticModelExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Core/Extensions/SemanticModelExtensions.cs -------------------------------------------------------------------------------- /src/Core/Extensions/SymbolDisplayFormatExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Core/Extensions/SymbolDisplayFormatExtensions.cs -------------------------------------------------------------------------------- /src/Core/Extensions/SymbolExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Core/Extensions/SymbolExtensions.cs -------------------------------------------------------------------------------- /src/Core/Extensions/SyntaxExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Core/Extensions/SyntaxExtensions.cs -------------------------------------------------------------------------------- /src/Core/Extensions/SyntaxTreeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Core/Extensions/SyntaxTreeExtensions.cs -------------------------------------------------------------------------------- /src/Core/Extensions/TextExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Core/Extensions/TextExtensions.cs -------------------------------------------------------------------------------- /src/Core/Extensions/TextSpanExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Core/Extensions/TextSpanExtensions.cs -------------------------------------------------------------------------------- /src/Core/FileSystemHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Core/FileSystemHelpers.cs -------------------------------------------------------------------------------- /src/Core/FlagsUtility`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Core/FlagsUtility`1.cs -------------------------------------------------------------------------------- /src/Core/GeneratedCodeUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Core/GeneratedCodeUtility.cs -------------------------------------------------------------------------------- /src/Core/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Core/GlobalSuppressions.cs -------------------------------------------------------------------------------- /src/Core/Hash.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Core/Hash.cs -------------------------------------------------------------------------------- /src/Core/ISelection`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Core/ISelection`1.cs -------------------------------------------------------------------------------- /src/Core/Immutable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Core/Immutable.cs -------------------------------------------------------------------------------- /src/Core/Interval.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Core/Interval.cs -------------------------------------------------------------------------------- /src/Core/IsExternalInit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Core/IsExternalInit.cs -------------------------------------------------------------------------------- /src/Core/MemberDeclarationKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Core/MemberDeclarationKind.cs -------------------------------------------------------------------------------- /src/Core/MetadataName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Core/MetadataName.cs -------------------------------------------------------------------------------- /src/Core/MetadataNameEqualityComparer`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Core/MetadataNameEqualityComparer`1.cs -------------------------------------------------------------------------------- /src/Core/MetadataNameSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Core/MetadataNameSet.cs -------------------------------------------------------------------------------- /src/Core/MetadataNames.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Core/MetadataNames.cs -------------------------------------------------------------------------------- /src/Core/NameGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Core/NameGenerator.cs -------------------------------------------------------------------------------- /src/Core/NameGenerators.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Core/NameGenerators.cs -------------------------------------------------------------------------------- /src/Core/NumberSuffixNameGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Core/NumberSuffixNameGenerator.cs -------------------------------------------------------------------------------- /src/Core/OneOrMany.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Core/OneOrMany.cs -------------------------------------------------------------------------------- /src/Core/OneOrMany`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Core/OneOrMany`1.cs -------------------------------------------------------------------------------- /src/Core/OverriddenSymbolInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Core/OverriddenSymbolInfo.cs -------------------------------------------------------------------------------- /src/Core/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Core/README.md -------------------------------------------------------------------------------- /src/Core/SelectionResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Core/SelectionResult.cs -------------------------------------------------------------------------------- /src/Core/SeparatedSyntaxListSelection`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Core/SeparatedSyntaxListSelection`1.cs -------------------------------------------------------------------------------- /src/Core/StringUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Core/StringUtility.cs -------------------------------------------------------------------------------- /src/Core/SymbolDisplayFormats.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Core/SymbolDisplayFormats.cs -------------------------------------------------------------------------------- /src/Core/SymbolDisplayPartFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Core/SymbolDisplayPartFactory.cs -------------------------------------------------------------------------------- /src/Core/SymbolDisplayTypeDeclarationOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Core/SymbolDisplayTypeDeclarationOptions.cs -------------------------------------------------------------------------------- /src/Core/SymbolUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Core/SymbolUtility.cs -------------------------------------------------------------------------------- /src/Core/SyntaxListSelection`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Core/SyntaxListSelection`1.cs -------------------------------------------------------------------------------- /src/Core/SyntaxUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Core/SyntaxUtility.cs -------------------------------------------------------------------------------- /src/Core/Text/IndentationInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Core/Text/IndentationInfo.cs -------------------------------------------------------------------------------- /src/Core/Text/StringBuilderCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Core/Text/StringBuilderCache.cs -------------------------------------------------------------------------------- /src/Core/Text/StringBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Core/Text/StringBuilderExtensions.cs -------------------------------------------------------------------------------- /src/Core/Text/SyntaxNodeTextBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Core/Text/SyntaxNodeTextBuilder.cs -------------------------------------------------------------------------------- /src/Core/Text/TextLineCollectionSelection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Core/Text/TextLineCollectionSelection.cs -------------------------------------------------------------------------------- /src/Core/TypeAnalysis.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Core/TypeAnalysis.cs -------------------------------------------------------------------------------- /src/Core/TypeAnalysisFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Core/TypeAnalysisFlags.cs -------------------------------------------------------------------------------- /src/Core/TypeAppearance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Core/TypeAppearance.cs -------------------------------------------------------------------------------- /src/Core/UnderscoreSuffixNameGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Core/UnderscoreSuffixNameGenerator.cs -------------------------------------------------------------------------------- /src/Core/UnityScriptMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Core/UnityScriptMethods.cs -------------------------------------------------------------------------------- /src/Core/Visibility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Core/Visibility.cs -------------------------------------------------------------------------------- /src/Core/VisibilityFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Core/VisibilityFilter.cs -------------------------------------------------------------------------------- /src/Core/WellKnownDiagnosticIdPrefixes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Core/WellKnownDiagnosticIdPrefixes.cs -------------------------------------------------------------------------------- /src/Core/WellKnownXmlTags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Core/WellKnownXmlTags.cs -------------------------------------------------------------------------------- /src/Core/XmlTag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Core/XmlTag.cs -------------------------------------------------------------------------------- /src/Core/XmlTagMapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Core/XmlTagMapper.cs -------------------------------------------------------------------------------- /src/Core/docs/NuGetReadme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Core/docs/NuGetReadme.md -------------------------------------------------------------------------------- /src/Diagnostics.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Diagnostics.xml -------------------------------------------------------------------------------- /src/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Directory.Build.props -------------------------------------------------------------------------------- /src/Documentation/AbstractSymbolDefinitionTextWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Documentation/AbstractSymbolDefinitionTextWriter.cs -------------------------------------------------------------------------------- /src/Documentation/CommonDocumentationParts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Documentation/CommonDocumentationParts.cs -------------------------------------------------------------------------------- /src/Documentation/DefinitionListFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Documentation/DefinitionListFormat.cs -------------------------------------------------------------------------------- /src/Documentation/Documentation.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Documentation/Documentation.csproj -------------------------------------------------------------------------------- /src/Documentation/DocumentationContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Documentation/DocumentationContext.cs -------------------------------------------------------------------------------- /src/Documentation/DocumentationDepth.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Documentation/DocumentationDepth.cs -------------------------------------------------------------------------------- /src/Documentation/DocumentationDisplayFormats.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Documentation/DocumentationDisplayFormats.cs -------------------------------------------------------------------------------- /src/Documentation/DocumentationFileKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Documentation/DocumentationFileKind.cs -------------------------------------------------------------------------------- /src/Documentation/DocumentationFilterOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Documentation/DocumentationFilterOptions.cs -------------------------------------------------------------------------------- /src/Documentation/DocumentationGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Documentation/DocumentationGenerator.cs -------------------------------------------------------------------------------- /src/Documentation/DocumentationGeneratorResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Documentation/DocumentationGeneratorResult.cs -------------------------------------------------------------------------------- /src/Documentation/DocumentationModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Documentation/DocumentationModel.cs -------------------------------------------------------------------------------- /src/Documentation/DocumentationOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Documentation/DocumentationOptions.cs -------------------------------------------------------------------------------- /src/Documentation/DocumentationResources.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Documentation/DocumentationResources.cs -------------------------------------------------------------------------------- /src/Documentation/DocumentationUrlInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Documentation/DocumentationUrlInfo.cs -------------------------------------------------------------------------------- /src/Documentation/DocumentationUrlKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Documentation/DocumentationUrlKind.cs -------------------------------------------------------------------------------- /src/Documentation/DocumentationUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Documentation/DocumentationUtility.cs -------------------------------------------------------------------------------- /src/Documentation/DocumentationWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Documentation/DocumentationWriter.cs -------------------------------------------------------------------------------- /src/Documentation/Extensions/SymbolExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Documentation/Extensions/SymbolExtensions.cs -------------------------------------------------------------------------------- /src/Documentation/Extensions/XmlExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Documentation/Extensions/XmlExtensions.cs -------------------------------------------------------------------------------- /src/Documentation/FilesLayout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Documentation/FilesLayout.cs -------------------------------------------------------------------------------- /src/Documentation/IncludeContainingNamespaceFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Documentation/IncludeContainingNamespaceFilter.cs -------------------------------------------------------------------------------- /src/Documentation/InheritDocUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Documentation/InheritDocUtility.cs -------------------------------------------------------------------------------- /src/Documentation/InheritanceStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Documentation/InheritanceStyle.cs -------------------------------------------------------------------------------- /src/Documentation/Markdown/GitHubDocumentationWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Documentation/Markdown/GitHubDocumentationWriter.cs -------------------------------------------------------------------------------- /src/Documentation/Markdown/SphinxDocumentationWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Documentation/Markdown/SphinxDocumentationWriter.cs -------------------------------------------------------------------------------- /src/Documentation/MemberDocumentationPartComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Documentation/MemberDocumentationPartComparer.cs -------------------------------------------------------------------------------- /src/Documentation/MemberDocumentationParts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Documentation/MemberDocumentationParts.cs -------------------------------------------------------------------------------- /src/Documentation/MemberSymbolEqualityComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Documentation/MemberSymbolEqualityComparer.cs -------------------------------------------------------------------------------- /src/Documentation/NamespaceDocumentationPartComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Documentation/NamespaceDocumentationPartComparer.cs -------------------------------------------------------------------------------- /src/Documentation/NamespaceDocumentationParts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Documentation/NamespaceDocumentationParts.cs -------------------------------------------------------------------------------- /src/Documentation/README.md: -------------------------------------------------------------------------------- 1 | # Roslynator\.Documentation 2 | -------------------------------------------------------------------------------- /src/Documentation/RootDocumentationPartComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Documentation/RootDocumentationPartComparer.cs -------------------------------------------------------------------------------- /src/Documentation/RootDocumentationParts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Documentation/RootDocumentationParts.cs -------------------------------------------------------------------------------- /src/Documentation/SourceReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Documentation/SourceReference.cs -------------------------------------------------------------------------------- /src/Documentation/SourceReferenceProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Documentation/SourceReferenceProvider.cs -------------------------------------------------------------------------------- /src/Documentation/SymbolComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Documentation/SymbolComparer.cs -------------------------------------------------------------------------------- /src/Documentation/SymbolDefinitionDisplay.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Documentation/SymbolDefinitionDisplay.cs -------------------------------------------------------------------------------- /src/Documentation/SymbolDefinitionListLayout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Documentation/SymbolDefinitionListLayout.cs -------------------------------------------------------------------------------- /src/Documentation/SymbolDefinitionPartFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Documentation/SymbolDefinitionPartFilter.cs -------------------------------------------------------------------------------- /src/Documentation/SymbolDefinitionTextWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Documentation/SymbolDefinitionTextWriter.cs -------------------------------------------------------------------------------- /src/Documentation/SymbolDefinitionWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Documentation/SymbolDefinitionWriter.cs -------------------------------------------------------------------------------- /src/Documentation/SymbolDefinitionWriterHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Documentation/SymbolDefinitionWriterHelpers.cs -------------------------------------------------------------------------------- /src/Documentation/SymbolDisplayAdditionalOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Documentation/SymbolDisplayAdditionalOptions.cs -------------------------------------------------------------------------------- /src/Documentation/SymbolDocumentationProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Documentation/SymbolDocumentationProvider.cs -------------------------------------------------------------------------------- /src/Documentation/SymbolTitleParts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Documentation/SymbolTitleParts.cs -------------------------------------------------------------------------------- /src/Documentation/SymbolXmlDocumentation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Documentation/SymbolXmlDocumentation.cs -------------------------------------------------------------------------------- /src/Documentation/TextUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Documentation/TextUtility.cs -------------------------------------------------------------------------------- /src/Documentation/TypeDocumentationModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Documentation/TypeDocumentationModel.cs -------------------------------------------------------------------------------- /src/Documentation/TypeDocumentationPartComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Documentation/TypeDocumentationPartComparer.cs -------------------------------------------------------------------------------- /src/Documentation/TypeDocumentationParts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Documentation/TypeDocumentationParts.cs -------------------------------------------------------------------------------- /src/Documentation/TypeHierarchy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Documentation/TypeHierarchy.cs -------------------------------------------------------------------------------- /src/Documentation/TypeHierarchyItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Documentation/TypeHierarchyItem.cs -------------------------------------------------------------------------------- /src/Documentation/TypeKindComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Documentation/TypeKindComparer.cs -------------------------------------------------------------------------------- /src/Documentation/TypeSymbolDisplayFormats.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Documentation/TypeSymbolDisplayFormats.cs -------------------------------------------------------------------------------- /src/Documentation/UrlProviders/ExternalUrlProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Documentation/UrlProviders/ExternalUrlProvider.cs -------------------------------------------------------------------------------- /src/Documentation/UrlProviders/UrlSegmentsProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Documentation/UrlProviders/UrlSegmentsProvider.cs -------------------------------------------------------------------------------- /src/Documentation/WellKnownNames.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Documentation/WellKnownNames.cs -------------------------------------------------------------------------------- /src/Documentation/WrapListOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Documentation/WrapListOptions.cs -------------------------------------------------------------------------------- /src/Documentation/Xml/SymbolDefinitionXmlWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Documentation/Xml/SymbolDefinitionXmlWriter.cs -------------------------------------------------------------------------------- /src/Documentation/XmlDocumentation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Documentation/XmlDocumentation.cs -------------------------------------------------------------------------------- /src/Formatting.Analyzers.CodeFixes/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Formatting.Analyzers.CodeFixes/app.config -------------------------------------------------------------------------------- /src/Formatting.Analyzers.CodeFixes/docs/NuGetReadme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Formatting.Analyzers.CodeFixes/docs/NuGetReadme.md -------------------------------------------------------------------------------- /src/Formatting.Analyzers.CodeFixes/tools/install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Formatting.Analyzers.CodeFixes/tools/install.ps1 -------------------------------------------------------------------------------- /src/Formatting.Analyzers.CodeFixes/tools/uninstall.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Formatting.Analyzers.CodeFixes/tools/uninstall.ps1 -------------------------------------------------------------------------------- /src/Formatting.Analyzers/CSharp/AccessorListAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Formatting.Analyzers/CSharp/AccessorListAnalyzer.cs -------------------------------------------------------------------------------- /src/Formatting.Analyzers/Formatting.Analyzers.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Formatting.Analyzers/Formatting.Analyzers.csproj -------------------------------------------------------------------------------- /src/Formatting.Analyzers/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Formatting.Analyzers/LICENSE.txt -------------------------------------------------------------------------------- /src/Formatting.Analyzers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Formatting.Analyzers/README.md -------------------------------------------------------------------------------- /src/Formatting.Analyzers/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Formatting.Analyzers/app.config -------------------------------------------------------------------------------- /src/Refactorings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Refactorings.xml -------------------------------------------------------------------------------- /src/Refactorings/CSharp/RefactoringIdentifiers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Refactorings/CSharp/RefactoringIdentifiers.cs -------------------------------------------------------------------------------- /src/Refactorings/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Refactorings/GlobalSuppressions.cs -------------------------------------------------------------------------------- /src/Refactorings/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Refactorings/README.md -------------------------------------------------------------------------------- /src/Refactorings/Refactorings.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Refactorings/Refactorings.csproj -------------------------------------------------------------------------------- /src/Refactorings/Roslynator.Refactorings.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Refactorings/Roslynator.Refactorings.nuspec -------------------------------------------------------------------------------- /src/Refactorings/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Refactorings/app.config -------------------------------------------------------------------------------- /src/Refactorings/docs/NuGetReadme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Refactorings/docs/NuGetReadme.md -------------------------------------------------------------------------------- /src/Refactorings/tools/install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Refactorings/tools/install.ps1 -------------------------------------------------------------------------------- /src/Refactorings/tools/uninstall.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Refactorings/tools/uninstall.ps1 -------------------------------------------------------------------------------- /src/Roslynator.CoreAndTesting.slnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Roslynator.CoreAndTesting.slnf -------------------------------------------------------------------------------- /src/Roslynator.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Roslynator.sln -------------------------------------------------------------------------------- /src/Roslynator.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Roslynator.snk -------------------------------------------------------------------------------- /src/Template.Analyzers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Template.Analyzers.xml -------------------------------------------------------------------------------- /src/Template.Refactorings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Template.Refactorings.xml -------------------------------------------------------------------------------- /src/Tests/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Tests/.editorconfig -------------------------------------------------------------------------------- /src/Tests/Analyzers.Tests/Analyzers.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Tests/Analyzers.Tests/Analyzers.Tests.csproj -------------------------------------------------------------------------------- /src/Tests/Analyzers.Tests/RCS1007AddBracesTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Tests/Analyzers.Tests/RCS1007AddBracesTests.cs -------------------------------------------------------------------------------- /src/Tests/Analyzers.Tests/RCS1016UseBlockBodyTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Tests/Analyzers.Tests/RCS1016UseBlockBodyTests.cs -------------------------------------------------------------------------------- /src/Tests/Analyzers.Tests/RCS1019OrderModifiersTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Tests/Analyzers.Tests/RCS1019OrderModifiersTests.cs -------------------------------------------------------------------------------- /src/Tests/Analyzers.Tests/RCS1229UseAsyncAwaitTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Tests/Analyzers.Tests/RCS1229UseAsyncAwaitTests.cs -------------------------------------------------------------------------------- /src/Tests/CSharp.Tests/CSharp.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Tests/CSharp.Tests/CSharp.Tests.csproj -------------------------------------------------------------------------------- /src/Tests/CSharp.Tests/ExpressionChainTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Tests/CSharp.Tests/ExpressionChainTests.cs -------------------------------------------------------------------------------- /src/Tests/CSharp.Tests/SyntaxKindTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Tests/CSharp.Tests/SyntaxKindTests.cs -------------------------------------------------------------------------------- /src/Tests/CSharp.Workspaces.Tests/CodeActionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Tests/CSharp.Workspaces.Tests/CodeActionTests.cs -------------------------------------------------------------------------------- /src/Tests/CodeFixes.Tests/CodeFixes.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Tests/CodeFixes.Tests/CodeFixes.Tests.csproj -------------------------------------------------------------------------------- /src/Tests/Core.Tests/Core.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Tests/Core.Tests/Core.Tests.csproj -------------------------------------------------------------------------------- /src/Tests/Core.Tests/FileSystemHelpersTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Tests/Core.Tests/FileSystemHelpersTests.cs -------------------------------------------------------------------------------- /src/Tests/Core.Tests/GeneratedCodeUtilityTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Tests/Core.Tests/GeneratedCodeUtilityTests.cs -------------------------------------------------------------------------------- /src/Tests/Core.Tests/MetadataNameTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Tests/Core.Tests/MetadataNameTests.cs -------------------------------------------------------------------------------- /src/Tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Tests/README.md -------------------------------------------------------------------------------- /src/Tests/Refactorings.Tests/RR0062InlineMethodTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Tests/Refactorings.Tests/RR0062InlineMethodTests.cs -------------------------------------------------------------------------------- /src/Tests/Refactorings.Tests/RR0162InvertIfElseTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Tests/Refactorings.Tests/RR0162InvertIfElseTests.cs -------------------------------------------------------------------------------- /src/Tests/Refactorings.Tests/RR0184SplitIfTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Tests/Refactorings.Tests/RR0184SplitIfTests.cs -------------------------------------------------------------------------------- /src/Tests/Refactorings.Tests/RR0189InvertIfTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Tests/Refactorings.Tests/RR0189InvertIfTests.cs -------------------------------------------------------------------------------- /src/Tests/Refactorings.Tests/Refactorings.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Tests/Refactorings.Tests/Refactorings.Tests.csproj -------------------------------------------------------------------------------- /src/Tests/TestConsole/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Tests/TestConsole/Program.cs -------------------------------------------------------------------------------- /src/Tests/TestConsole/TestConsole.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Tests/TestConsole/TestConsole.csproj -------------------------------------------------------------------------------- /src/Tests/TestLibrary/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Tests/TestLibrary/.editorconfig -------------------------------------------------------------------------------- /src/Tests/TestLibrary/Foo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Tests/TestLibrary/Foo.cs -------------------------------------------------------------------------------- /src/Tests/TestLibrary/TestLibrary.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Tests/TestLibrary/TestLibrary.csproj -------------------------------------------------------------------------------- /src/Tests/Testing.CSharp.MSTest/docs/NuGetReadme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Tests/Testing.CSharp.MSTest/docs/NuGetReadme.md -------------------------------------------------------------------------------- /src/Tests/Testing.CSharp.Xunit/docs/NuGetReadme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Tests/Testing.CSharp.Xunit/docs/NuGetReadme.md -------------------------------------------------------------------------------- /src/Tests/Testing.CSharp/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Tests/Testing.CSharp/.editorconfig -------------------------------------------------------------------------------- /src/Tests/Testing.CSharp/Testing.CSharp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Tests/Testing.CSharp/Testing.CSharp.csproj -------------------------------------------------------------------------------- /src/Tests/Testing.CSharp/docs/NuGetReadme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Tests/Testing.CSharp/docs/NuGetReadme.md -------------------------------------------------------------------------------- /src/Tests/Testing.Common/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Tests/Testing.Common/.editorconfig -------------------------------------------------------------------------------- /src/Tests/Testing.Common/Extensions/TestExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Tests/Testing.Common/Extensions/TestExtensions.cs -------------------------------------------------------------------------------- /src/Tests/Testing.Common/RuntimeMetadataReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Tests/Testing.Common/RuntimeMetadataReference.cs -------------------------------------------------------------------------------- /src/Tests/Testing.Common/Testing.Common.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Tests/Testing.Common/Testing.Common.csproj -------------------------------------------------------------------------------- /src/Tests/Testing.Common/Testing/AdditionalFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Tests/Testing.Common/Testing/AdditionalFile.cs -------------------------------------------------------------------------------- /src/Tests/Testing.Common/Testing/CodeVerifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Tests/Testing.Common/Testing/CodeVerifier.cs -------------------------------------------------------------------------------- /src/Tests/Testing.Common/Testing/DiagnosticTestData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Tests/Testing.Common/Testing/DiagnosticTestData.cs -------------------------------------------------------------------------------- /src/Tests/Testing.Common/Testing/DiagnosticVerifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Tests/Testing.Common/Testing/DiagnosticVerifier.cs -------------------------------------------------------------------------------- /src/Tests/Testing.Common/Testing/ExpectedDocument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Tests/Testing.Common/Testing/ExpectedDocument.cs -------------------------------------------------------------------------------- /src/Tests/Testing.Common/Testing/ExpectedTestState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Tests/Testing.Common/Testing/ExpectedTestState.cs -------------------------------------------------------------------------------- /src/Tests/Testing.Common/Testing/FileSystemVerifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Tests/Testing.Common/Testing/FileSystemVerifier.cs -------------------------------------------------------------------------------- /src/Tests/Testing.Common/Testing/IAssert.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Tests/Testing.Common/Testing/IAssert.cs -------------------------------------------------------------------------------- /src/Tests/Testing.Common/Testing/RefactoringTestData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Tests/Testing.Common/Testing/RefactoringTestData.cs -------------------------------------------------------------------------------- /src/Tests/Testing.Common/Testing/RefactoringVerifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Tests/Testing.Common/Testing/RefactoringVerifier.cs -------------------------------------------------------------------------------- /src/Tests/Testing.Common/Testing/TestCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Tests/Testing.Common/Testing/TestCode.cs -------------------------------------------------------------------------------- /src/Tests/Testing.Common/Testing/TestFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Tests/Testing.Common/Testing/TestFile.cs -------------------------------------------------------------------------------- /src/Tests/Testing.Common/Testing/TestOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Tests/Testing.Common/Testing/TestOptions.cs -------------------------------------------------------------------------------- /src/Tests/Testing.Common/Testing/Text/TextProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Tests/Testing.Common/Testing/Text/TextProcessor.cs -------------------------------------------------------------------------------- /src/Tests/Testing.Common/Traits.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Tests/Testing.Common/Traits.cs -------------------------------------------------------------------------------- /src/Tests/Testing.Common/docs/NuGetReadme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Tests/Testing.Common/docs/NuGetReadme.md -------------------------------------------------------------------------------- /src/Tests/Tests.Common/Tests.Common.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Tests/Tests.Common/Tests.Common.csproj -------------------------------------------------------------------------------- /src/Tests/Tests.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Tests/Tests.sln -------------------------------------------------------------------------------- /src/Tools/AddCodeFileHeader/AddCodeFileHeader.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Tools/AddCodeFileHeader/AddCodeFileHeader.csproj -------------------------------------------------------------------------------- /src/Tools/AddCodeFileHeader/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Tools/AddCodeFileHeader/App.config -------------------------------------------------------------------------------- /src/Tools/AddCodeFileHeader/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Tools/AddCodeFileHeader/Program.cs -------------------------------------------------------------------------------- /src/Tools/Cleaner/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Tools/Cleaner/App.config -------------------------------------------------------------------------------- /src/Tools/Cleaner/Cleaner.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Tools/Cleaner/Cleaner.csproj -------------------------------------------------------------------------------- /src/Tools/Cleaner/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Tools/Cleaner/Program.cs -------------------------------------------------------------------------------- /src/Tools/CodeGeneration/CSharp/CodeGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Tools/CodeGeneration/CSharp/CodeGenerator.cs -------------------------------------------------------------------------------- /src/Tools/CodeGeneration/CSharp/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Tools/CodeGeneration/CSharp/Extensions.cs -------------------------------------------------------------------------------- /src/Tools/CodeGeneration/CSharp/WrapRewriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Tools/CodeGeneration/CSharp/WrapRewriter.cs -------------------------------------------------------------------------------- /src/Tools/CodeGeneration/CSharp/WrapRewriterOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Tools/CodeGeneration/CSharp/WrapRewriterOptions.cs -------------------------------------------------------------------------------- /src/Tools/CodeGeneration/CodeGeneration.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Tools/CodeGeneration/CodeGeneration.csproj -------------------------------------------------------------------------------- /src/Tools/CodeGeneration/CodeGenerationExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Tools/CodeGeneration/CodeGenerationExtensions.cs -------------------------------------------------------------------------------- /src/Tools/CodeGeneration/CodeGenerationHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Tools/CodeGeneration/CodeGenerationHelpers.cs -------------------------------------------------------------------------------- /src/Tools/CodeGeneration/Markdown/AnalyzersMapping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Tools/CodeGeneration/Markdown/AnalyzersMapping.cs -------------------------------------------------------------------------------- /src/Tools/CodeGeneration/Markdown/MarkdownGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Tools/CodeGeneration/Markdown/MarkdownGenerator.cs -------------------------------------------------------------------------------- /src/Tools/CodeGeneration/RoslynatorMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Tools/CodeGeneration/RoslynatorMetadata.cs -------------------------------------------------------------------------------- /src/Tools/CodeGenerator/CodeGenerator.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Tools/CodeGenerator/CodeGenerator.csproj -------------------------------------------------------------------------------- /src/Tools/CodeGenerator/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Tools/CodeGenerator/Program.cs -------------------------------------------------------------------------------- /src/Tools/CodeGenerator/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Tools/CodeGenerator/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/Tools/ConfigurationFileGenerator/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Tools/ConfigurationFileGenerator/Program.cs -------------------------------------------------------------------------------- /src/Tools/ConfigurationFileGenerator/configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Tools/ConfigurationFileGenerator/configuration.md -------------------------------------------------------------------------------- /src/Tools/LogParser/AnalyzerDiagnosticInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Tools/LogParser/AnalyzerDiagnosticInfo.cs -------------------------------------------------------------------------------- /src/Tools/LogParser/LogParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Tools/LogParser/LogParser.cs -------------------------------------------------------------------------------- /src/Tools/LogParser/LogParser.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Tools/LogParser/LogParser.csproj -------------------------------------------------------------------------------- /src/Tools/LogParser/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Tools/LogParser/Program.cs -------------------------------------------------------------------------------- /src/Tools/LogParser/ProjectDiagnosticInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Tools/LogParser/ProjectDiagnosticInfo.cs -------------------------------------------------------------------------------- /src/Tools/Metadata/AnalyzerConfigOption.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Tools/Metadata/AnalyzerConfigOption.cs -------------------------------------------------------------------------------- /src/Tools/Metadata/AnalyzerMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Tools/Metadata/AnalyzerMetadata.cs -------------------------------------------------------------------------------- /src/Tools/Metadata/AnalyzerOptionMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Tools/Metadata/AnalyzerOptionMetadata.cs -------------------------------------------------------------------------------- /src/Tools/Metadata/AnalyzerOptionValueMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Tools/Metadata/AnalyzerOptionValueMetadata.cs -------------------------------------------------------------------------------- /src/Tools/Metadata/AnalyzerStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Tools/Metadata/AnalyzerStatus.cs -------------------------------------------------------------------------------- /src/Tools/Metadata/CodeFixMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Tools/Metadata/CodeFixMetadata.cs -------------------------------------------------------------------------------- /src/Tools/Metadata/CompilerDiagnosticMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Tools/Metadata/CompilerDiagnosticMetadata.cs -------------------------------------------------------------------------------- /src/Tools/Metadata/LinkMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Tools/Metadata/LinkMetadata.cs -------------------------------------------------------------------------------- /src/Tools/Metadata/Metadata.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Tools/Metadata/Metadata.csproj -------------------------------------------------------------------------------- /src/Tools/Metadata/MetadataFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Tools/Metadata/MetadataFile.cs -------------------------------------------------------------------------------- /src/Tools/Metadata/RefactoringMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Tools/Metadata/RefactoringMetadata.cs -------------------------------------------------------------------------------- /src/Tools/Metadata/SampleMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Tools/Metadata/SampleMetadata.cs -------------------------------------------------------------------------------- /src/Tools/Metadata/SyntaxMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Tools/Metadata/SyntaxMetadata.cs -------------------------------------------------------------------------------- /src/Tools/Metadata/XmlExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Tools/Metadata/XmlExtensions.cs -------------------------------------------------------------------------------- /src/Tools/MetadataGenerator/MetadataGenerator.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Tools/MetadataGenerator/MetadataGenerator.csproj -------------------------------------------------------------------------------- /src/Tools/MetadataGenerator/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Tools/MetadataGenerator/Program.cs -------------------------------------------------------------------------------- /src/Tools/Tools.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Tools/Tools.sln -------------------------------------------------------------------------------- /src/Tools/Utilities/FileHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Tools/Utilities/FileHelper.cs -------------------------------------------------------------------------------- /src/Tools/Utilities/Utilities.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Tools/Utilities/Utilities.csproj -------------------------------------------------------------------------------- /src/Tools/VersionUpdater/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Tools/VersionUpdater/Program.cs -------------------------------------------------------------------------------- /src/Tools/VersionUpdater/VersionUpdater.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Tools/VersionUpdater/VersionUpdater.csproj -------------------------------------------------------------------------------- /src/VisualBasic.Workspaces/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/VisualBasic.Workspaces/.editorconfig -------------------------------------------------------------------------------- /src/VisualBasic.Workspaces/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/VisualBasic.Workspaces/app.config -------------------------------------------------------------------------------- /src/VisualBasic/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/VisualBasic/.editorconfig -------------------------------------------------------------------------------- /src/VisualBasic/VisualBasic.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/VisualBasic/VisualBasic.csproj -------------------------------------------------------------------------------- /src/VisualStudio.Refactorings/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/VisualStudio.Refactorings/LICENSE.txt -------------------------------------------------------------------------------- /src/VisualStudio.Refactorings/Overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/VisualStudio.Refactorings/Overview.md -------------------------------------------------------------------------------- /src/VisualStudio.Refactorings/VSPackage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/VisualStudio.Refactorings/VSPackage.cs -------------------------------------------------------------------------------- /src/VisualStudio.Refactorings/VSPackage.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/VisualStudio.Refactorings/VSPackage.resx -------------------------------------------------------------------------------- /src/VisualStudio.Refactorings/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/VisualStudio.Refactorings/app.config -------------------------------------------------------------------------------- /src/VisualStudio.Refactorings/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/VisualStudio.Refactorings/manifest.json -------------------------------------------------------------------------------- /src/VisualStudio.Refactorings/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/VisualStudio.Refactorings/packages.config -------------------------------------------------------------------------------- /src/VisualStudio.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/VisualStudio.sln -------------------------------------------------------------------------------- /src/VisualStudio/.roslynatorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/VisualStudio/.roslynatorconfig -------------------------------------------------------------------------------- /src/VisualStudio/AnalyzersOptionsPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/VisualStudio/AnalyzersOptionsPage.cs -------------------------------------------------------------------------------- /src/VisualStudio/AnalyzersOptionsPageControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/VisualStudio/AnalyzersOptionsPageControl.xaml -------------------------------------------------------------------------------- /src/VisualStudio/AnalyzersOptionsPageControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/VisualStudio/AnalyzersOptionsPageControl.xaml.cs -------------------------------------------------------------------------------- /src/VisualStudio/BaseModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/VisualStudio/BaseModel.cs -------------------------------------------------------------------------------- /src/VisualStudio/BaseOptionsPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/VisualStudio/BaseOptionsPage.cs -------------------------------------------------------------------------------- /src/VisualStudio/BaseOptionsPageControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/VisualStudio/BaseOptionsPageControl.xaml -------------------------------------------------------------------------------- /src/VisualStudio/BaseOptionsPageControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/VisualStudio/BaseOptionsPageControl.xaml.cs -------------------------------------------------------------------------------- /src/VisualStudio/CodeFixModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/VisualStudio/CodeFixModel.cs -------------------------------------------------------------------------------- /src/VisualStudio/CodeFixesOptionsPage.Generated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/VisualStudio/CodeFixesOptionsPage.Generated.cs -------------------------------------------------------------------------------- /src/VisualStudio/CodeFixesOptionsPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/VisualStudio/CodeFixesOptionsPage.cs -------------------------------------------------------------------------------- /src/VisualStudio/GeneralOptionsPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/VisualStudio/GeneralOptionsPage.cs -------------------------------------------------------------------------------- /src/VisualStudio/GeneralOptionsPageControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/VisualStudio/GeneralOptionsPageControl.xaml -------------------------------------------------------------------------------- /src/VisualStudio/GeneralOptionsPageControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/VisualStudio/GeneralOptionsPageControl.xaml.cs -------------------------------------------------------------------------------- /src/VisualStudio/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/VisualStudio/LICENSE.txt -------------------------------------------------------------------------------- /src/VisualStudio/Overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/VisualStudio/Overview.md -------------------------------------------------------------------------------- /src/VisualStudio/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/VisualStudio/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/VisualStudio/RefactoringsOptionsPage.Generated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/VisualStudio/RefactoringsOptionsPage.Generated.cs -------------------------------------------------------------------------------- /src/VisualStudio/RefactoringsOptionsPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/VisualStudio/RefactoringsOptionsPage.cs -------------------------------------------------------------------------------- /src/VisualStudio/RuleSetHelpers.Generated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/VisualStudio/RuleSetHelpers.Generated.cs -------------------------------------------------------------------------------- /src/VisualStudio/RuleSetHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/VisualStudio/RuleSetHelpers.cs -------------------------------------------------------------------------------- /src/VisualStudio/TypeConverters/TrueFalseConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/VisualStudio/TypeConverters/TrueFalseConverter.cs -------------------------------------------------------------------------------- /src/VisualStudio/TypeConverters/YesNoConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/VisualStudio/TypeConverters/YesNoConverter.cs -------------------------------------------------------------------------------- /src/VisualStudio/VSPackage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/VisualStudio/VSPackage.cs -------------------------------------------------------------------------------- /src/VisualStudio/VSPackage.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/VisualStudio/VSPackage.resx -------------------------------------------------------------------------------- /src/VisualStudio/VisualStudio.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/VisualStudio/VisualStudio.csproj -------------------------------------------------------------------------------- /src/VisualStudio/XElementExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/VisualStudio/XElementExtensions.cs -------------------------------------------------------------------------------- /src/VisualStudio/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/VisualStudio/manifest.json -------------------------------------------------------------------------------- /src/VisualStudio/roslynator.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/VisualStudio/roslynator.config -------------------------------------------------------------------------------- /src/VisualStudio/source.extension.vsixmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/VisualStudio/source.extension.vsixmanifest -------------------------------------------------------------------------------- /src/VisualStudioCode.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/VisualStudioCode.sln -------------------------------------------------------------------------------- /src/VisualStudioCode/VisualStudioCode.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/VisualStudioCode/VisualStudioCode.csproj -------------------------------------------------------------------------------- /src/VisualStudioCode/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/VisualStudioCode/app.config -------------------------------------------------------------------------------- /src/VisualStudioCode/package/.gitignore: -------------------------------------------------------------------------------- 1 | *.dll 2 | *.vsix 3 | out -------------------------------------------------------------------------------- /src/VisualStudioCode/package/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/VisualStudioCode/package/.vscode/launch.json -------------------------------------------------------------------------------- /src/VisualStudioCode/package/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/VisualStudioCode/package/.vscode/settings.json -------------------------------------------------------------------------------- /src/VisualStudioCode/package/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/VisualStudioCode/package/.vscode/tasks.json -------------------------------------------------------------------------------- /src/VisualStudioCode/package/.vscodeignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/VisualStudioCode/package/.vscodeignore -------------------------------------------------------------------------------- /src/VisualStudioCode/package/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/VisualStudioCode/package/CHANGELOG.md -------------------------------------------------------------------------------- /src/VisualStudioCode/package/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/VisualStudioCode/package/LICENSE.txt -------------------------------------------------------------------------------- /src/VisualStudioCode/package/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/VisualStudioCode/package/README.md -------------------------------------------------------------------------------- /src/VisualStudioCode/package/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/VisualStudioCode/package/images/icon.png -------------------------------------------------------------------------------- /src/VisualStudioCode/package/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/VisualStudioCode/package/package-lock.json -------------------------------------------------------------------------------- /src/VisualStudioCode/package/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/VisualStudioCode/package/package.json -------------------------------------------------------------------------------- /src/VisualStudioCode/package/src/context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/VisualStudioCode/package/src/context.ts -------------------------------------------------------------------------------- /src/VisualStudioCode/package/src/extension.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/VisualStudioCode/package/src/extension.ts -------------------------------------------------------------------------------- /src/VisualStudioCode/package/src/omnisharpSettings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/VisualStudioCode/package/src/omnisharpSettings.ts -------------------------------------------------------------------------------- /src/VisualStudioCode/package/src/test/runTest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/VisualStudioCode/package/src/test/runTest.ts -------------------------------------------------------------------------------- /src/VisualStudioCode/package/src/test/suite/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/VisualStudioCode/package/src/test/suite/index.ts -------------------------------------------------------------------------------- /src/VisualStudioCode/package/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/VisualStudioCode/package/tsconfig.json -------------------------------------------------------------------------------- /src/VisualStudioCode/package/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/VisualStudioCode/package/tslint.json -------------------------------------------------------------------------------- /src/Workspaces.Common/CSharp/CodeActionFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Workspaces.Common/CSharp/CodeActionFactory.cs -------------------------------------------------------------------------------- /src/Workspaces.Common/CSharp/DocumentRefactorings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Workspaces.Common/CSharp/DocumentRefactorings.cs -------------------------------------------------------------------------------- /src/Workspaces.Common/CSharp/SyntaxFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Workspaces.Common/CSharp/SyntaxFormatter.cs -------------------------------------------------------------------------------- /src/Workspaces.Common/CommonFixContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Workspaces.Common/CommonFixContext.cs -------------------------------------------------------------------------------- /src/Workspaces.Common/CommonWorkspaceExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Workspaces.Common/CommonWorkspaceExtensions.cs -------------------------------------------------------------------------------- /src/Workspaces.Common/Workspaces.Common.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Workspaces.Common/Workspaces.Common.csproj -------------------------------------------------------------------------------- /src/Workspaces.Common/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Workspaces.Common/app.config -------------------------------------------------------------------------------- /src/Workspaces.Core/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Workspaces.Core/.editorconfig -------------------------------------------------------------------------------- /src/Workspaces.Core/AnalyzerAssembly.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Workspaces.Core/AnalyzerAssembly.cs -------------------------------------------------------------------------------- /src/Workspaces.Core/AnalyzerAssemblyEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Workspaces.Core/AnalyzerAssemblyEventArgs.cs -------------------------------------------------------------------------------- /src/Workspaces.Core/AnalyzerLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Workspaces.Core/AnalyzerLoader.cs -------------------------------------------------------------------------------- /src/Workspaces.Core/AssemblyFullNameComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Workspaces.Core/AssemblyFullNameComparer.cs -------------------------------------------------------------------------------- /src/Workspaces.Core/AttributeInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Workspaces.Core/AttributeInfo.cs -------------------------------------------------------------------------------- /src/Workspaces.Core/CodeActions/CodeActionData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Workspaces.Core/CodeActions/CodeActionData.cs -------------------------------------------------------------------------------- /src/Workspaces.Core/CodeActions/NavigationAnnotation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Workspaces.Core/CodeActions/NavigationAnnotation.cs -------------------------------------------------------------------------------- /src/Workspaces.Core/CodeAnalysisOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Workspaces.Core/CodeAnalysisOptions.cs -------------------------------------------------------------------------------- /src/Workspaces.Core/CodeFixes/CodeFixer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Workspaces.Core/CodeFixes/CodeFixer.cs -------------------------------------------------------------------------------- /src/Workspaces.Core/CodeFixes/CodeFixerOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Workspaces.Core/CodeFixes/CodeFixerOptions.cs -------------------------------------------------------------------------------- /src/Workspaces.Core/CodeFixes/DiagnosticFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Workspaces.Core/CodeFixes/DiagnosticFix.cs -------------------------------------------------------------------------------- /src/Workspaces.Core/CodeFixes/DiagnosticFixKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Workspaces.Core/CodeFixes/DiagnosticFixKind.cs -------------------------------------------------------------------------------- /src/Workspaces.Core/CodeFixes/DiagnosticFixProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Workspaces.Core/CodeFixes/DiagnosticFixProvider.cs -------------------------------------------------------------------------------- /src/Workspaces.Core/CodeFixes/DiagnosticFixResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Workspaces.Core/CodeFixes/DiagnosticFixResult.cs -------------------------------------------------------------------------------- /src/Workspaces.Core/CodeFixes/ProjectFixKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Workspaces.Core/CodeFixes/ProjectFixKind.cs -------------------------------------------------------------------------------- /src/Workspaces.Core/CodeFixes/ProjectFixResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Workspaces.Core/CodeFixes/ProjectFixResult.cs -------------------------------------------------------------------------------- /src/Workspaces.Core/CodeMetrics/CodeMetricsInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Workspaces.Core/CodeMetrics/CodeMetricsInfo.cs -------------------------------------------------------------------------------- /src/Workspaces.Core/CodeMetrics/CodeMetricsOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Workspaces.Core/CodeMetrics/CodeMetricsOptions.cs -------------------------------------------------------------------------------- /src/Workspaces.Core/CodeMetrics/CodeMetricsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Workspaces.Core/CodeMetrics/CodeMetricsService.cs -------------------------------------------------------------------------------- /src/Workspaces.Core/CodeMetrics/ICodeMetricsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Workspaces.Core/CodeMetrics/ICodeMetricsService.cs -------------------------------------------------------------------------------- /src/Workspaces.Core/CodeMetrics/LinesOfCodeKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Workspaces.Core/CodeMetrics/LinesOfCodeKind.cs -------------------------------------------------------------------------------- /src/Workspaces.Core/ConsoleUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Workspaces.Core/ConsoleUtility.cs -------------------------------------------------------------------------------- /src/Workspaces.Core/DiagnosticFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Workspaces.Core/DiagnosticFormatter.cs -------------------------------------------------------------------------------- /src/Workspaces.Core/DiagnosticInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Workspaces.Core/DiagnosticInfo.cs -------------------------------------------------------------------------------- /src/Workspaces.Core/Diagnostics/CodeAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Workspaces.Core/Diagnostics/CodeAnalyzer.cs -------------------------------------------------------------------------------- /src/Workspaces.Core/Diagnostics/CodeAnalyzerOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Workspaces.Core/Diagnostics/CodeAnalyzerOptions.cs -------------------------------------------------------------------------------- /src/Workspaces.Core/DialogResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Workspaces.Core/DialogResult.cs -------------------------------------------------------------------------------- /src/Workspaces.Core/DocumentReferenceInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Workspaces.Core/DocumentReferenceInfo.cs -------------------------------------------------------------------------------- /src/Workspaces.Core/Extensions/CollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Workspaces.Core/Extensions/CollectionExtensions.cs -------------------------------------------------------------------------------- /src/Workspaces.Core/Extensions/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Workspaces.Core/Extensions/Extensions.cs -------------------------------------------------------------------------------- /src/Workspaces.Core/Extensions/WorkspaceExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Workspaces.Core/Extensions/WorkspaceExtensions.cs -------------------------------------------------------------------------------- /src/Workspaces.Core/FileSystemFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Workspaces.Core/FileSystemFilter.cs -------------------------------------------------------------------------------- /src/Workspaces.Core/FindSymbols/AttributeFilterRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Workspaces.Core/FindSymbols/AttributeFilterRule.cs -------------------------------------------------------------------------------- /src/Workspaces.Core/FindSymbols/FilterRule`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Workspaces.Core/FindSymbols/FilterRule`1.cs -------------------------------------------------------------------------------- /src/Workspaces.Core/FindSymbols/SymbolFilterOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Workspaces.Core/FindSymbols/SymbolFilterOptions.cs -------------------------------------------------------------------------------- /src/Workspaces.Core/FindSymbols/SymbolFilterReason.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Workspaces.Core/FindSymbols/SymbolFilterReason.cs -------------------------------------------------------------------------------- /src/Workspaces.Core/FindSymbols/SymbolFilterRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Workspaces.Core/FindSymbols/SymbolFilterRule.cs -------------------------------------------------------------------------------- /src/Workspaces.Core/Formatting/CodeFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Workspaces.Core/Formatting/CodeFormatter.cs -------------------------------------------------------------------------------- /src/Workspaces.Core/Formatting/CodeFormatterOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Workspaces.Core/Formatting/CodeFormatterOptions.cs -------------------------------------------------------------------------------- /src/Workspaces.Core/Host/Mef/LanguageMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Workspaces.Core/Host/Mef/LanguageMetadata.cs -------------------------------------------------------------------------------- /src/Workspaces.Core/Host/Mef/LanguageServiceMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Workspaces.Core/Host/Mef/LanguageServiceMetadata.cs -------------------------------------------------------------------------------- /src/Workspaces.Core/Host/Mef/MefHostServices.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Workspaces.Core/Host/Mef/MefHostServices.cs -------------------------------------------------------------------------------- /src/Workspaces.Core/Host/Mef/MefLanguageServices.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Workspaces.Core/Host/Mef/MefLanguageServices.cs -------------------------------------------------------------------------------- /src/Workspaces.Core/Host/Mef/MefWorkspaceServices.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Workspaces.Core/Host/Mef/MefWorkspaceServices.cs -------------------------------------------------------------------------------- /src/Workspaces.Core/ISyntaxFactsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Workspaces.Core/ISyntaxFactsService.cs -------------------------------------------------------------------------------- /src/Workspaces.Core/IUserDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Workspaces.Core/IUserDialog.cs -------------------------------------------------------------------------------- /src/Workspaces.Core/Logging/ConsoleColors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Workspaces.Core/Logging/ConsoleColors.cs -------------------------------------------------------------------------------- /src/Workspaces.Core/Logging/ConsoleWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Workspaces.Core/Logging/ConsoleWriter.cs -------------------------------------------------------------------------------- /src/Workspaces.Core/Logging/LogHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Workspaces.Core/Logging/LogHelpers.cs -------------------------------------------------------------------------------- /src/Workspaces.Core/Logging/LogMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Workspaces.Core/Logging/LogMessage.cs -------------------------------------------------------------------------------- /src/Workspaces.Core/Logging/Logger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Workspaces.Core/Logging/Logger.cs -------------------------------------------------------------------------------- /src/Workspaces.Core/Logging/TextWriterWithVerbosity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Workspaces.Core/Logging/TextWriterWithVerbosity.cs -------------------------------------------------------------------------------- /src/Workspaces.Core/Logging/Verbosity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Workspaces.Core/Logging/Verbosity.cs -------------------------------------------------------------------------------- /src/Workspaces.Core/MemberNameGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Workspaces.Core/MemberNameGenerator.cs -------------------------------------------------------------------------------- /src/Workspaces.Core/PathUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Workspaces.Core/PathUtilities.cs -------------------------------------------------------------------------------- /src/Workspaces.Core/ProjectOrSolution.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Workspaces.Core/ProjectOrSolution.cs -------------------------------------------------------------------------------- /src/Workspaces.Core/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Workspaces.Core/README.md -------------------------------------------------------------------------------- /src/Workspaces.Core/Rename/DiffSpan.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Workspaces.Core/Rename/DiffSpan.cs -------------------------------------------------------------------------------- /src/Workspaces.Core/Rename/DiffTracker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Workspaces.Core/Rename/DiffTracker.cs -------------------------------------------------------------------------------- /src/Workspaces.Core/Rename/FindSymbolService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Workspaces.Core/Rename/FindSymbolService.cs -------------------------------------------------------------------------------- /src/Workspaces.Core/Rename/IFindSymbolService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Workspaces.Core/Rename/IFindSymbolService.cs -------------------------------------------------------------------------------- /src/Workspaces.Core/Rename/LocalSymbolComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Workspaces.Core/Rename/LocalSymbolComparer.cs -------------------------------------------------------------------------------- /src/Workspaces.Core/Rename/RenameScope.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Workspaces.Core/Rename/RenameScope.cs -------------------------------------------------------------------------------- /src/Workspaces.Core/Rename/RenameScopeFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Workspaces.Core/Rename/RenameScopeFilter.cs -------------------------------------------------------------------------------- /src/Workspaces.Core/Rename/SymbolData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Workspaces.Core/Rename/SymbolData.cs -------------------------------------------------------------------------------- /src/Workspaces.Core/Rename/SymbolListHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Workspaces.Core/Rename/SymbolListHelpers.cs -------------------------------------------------------------------------------- /src/Workspaces.Core/Rename/SymbolProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Workspaces.Core/Rename/SymbolProvider.cs -------------------------------------------------------------------------------- /src/Workspaces.Core/Rename/SymbolRenameProgress.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Workspaces.Core/Rename/SymbolRenameProgress.cs -------------------------------------------------------------------------------- /src/Workspaces.Core/Rename/SymbolRenameResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Workspaces.Core/Rename/SymbolRenameResult.cs -------------------------------------------------------------------------------- /src/Workspaces.Core/Rename/SymbolRenameState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Workspaces.Core/Rename/SymbolRenameState.cs -------------------------------------------------------------------------------- /src/Workspaces.Core/Rename/SymbolRenamer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Workspaces.Core/Rename/SymbolRenamer.cs -------------------------------------------------------------------------------- /src/Workspaces.Core/Rename/SymbolRenamerOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Workspaces.Core/Rename/SymbolRenamerOptions.cs -------------------------------------------------------------------------------- /src/Workspaces.Core/SimpleProjectInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Workspaces.Core/SimpleProjectInfo.cs -------------------------------------------------------------------------------- /src/Workspaces.Core/Spelling/Core/FixList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Workspaces.Core/Spelling/Core/FixList.cs -------------------------------------------------------------------------------- /src/Workspaces.Core/Spelling/Core/Hash.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Workspaces.Core/Spelling/Core/Hash.cs -------------------------------------------------------------------------------- /src/Workspaces.Core/Spelling/Core/Spellchecker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Workspaces.Core/Spelling/Core/Spellchecker.cs -------------------------------------------------------------------------------- /src/Workspaces.Core/Spelling/Core/SpellingCapture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Workspaces.Core/Spelling/Core/SpellingCapture.cs -------------------------------------------------------------------------------- /src/Workspaces.Core/Spelling/Core/SpellingData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Workspaces.Core/Spelling/Core/SpellingData.cs -------------------------------------------------------------------------------- /src/Workspaces.Core/Spelling/Core/SpellingFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Workspaces.Core/Spelling/Core/SpellingFix.cs -------------------------------------------------------------------------------- /src/Workspaces.Core/Spelling/Core/SpellingFixKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Workspaces.Core/Spelling/Core/SpellingFixKind.cs -------------------------------------------------------------------------------- /src/Workspaces.Core/Spelling/Core/SpellingMatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Workspaces.Core/Spelling/Core/SpellingMatch.cs -------------------------------------------------------------------------------- /src/Workspaces.Core/Spelling/Core/SplitMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Workspaces.Core/Spelling/Core/SplitMode.cs -------------------------------------------------------------------------------- /src/Workspaces.Core/Spelling/Core/TextCasing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Workspaces.Core/Spelling/Core/TextCasing.cs -------------------------------------------------------------------------------- /src/Workspaces.Core/Spelling/Core/TextUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Workspaces.Core/Spelling/Core/TextUtility.cs -------------------------------------------------------------------------------- /src/Workspaces.Core/Spelling/Core/WordChar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Workspaces.Core/Spelling/Core/WordChar.cs -------------------------------------------------------------------------------- /src/Workspaces.Core/Spelling/Core/WordCharMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Workspaces.Core/Spelling/Core/WordCharMap.cs -------------------------------------------------------------------------------- /src/Workspaces.Core/Spelling/Core/WordList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Workspaces.Core/Spelling/Core/WordList.cs -------------------------------------------------------------------------------- /src/Workspaces.Core/Spelling/Core/WordListLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Workspaces.Core/Spelling/Core/WordListLoader.cs -------------------------------------------------------------------------------- /src/Workspaces.Core/Spelling/Core/WordSequence.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Workspaces.Core/Spelling/Core/WordSequence.cs -------------------------------------------------------------------------------- /src/Workspaces.Core/Spelling/Core/WordSequenceMatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Workspaces.Core/Spelling/Core/WordSequenceMatch.cs -------------------------------------------------------------------------------- /src/Workspaces.Core/Spelling/ISpellingService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Workspaces.Core/Spelling/ISpellingService.cs -------------------------------------------------------------------------------- /src/Workspaces.Core/Spelling/SpellcheckAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Workspaces.Core/Spelling/SpellcheckAnalyzer.cs -------------------------------------------------------------------------------- /src/Workspaces.Core/Spelling/SpellcheckOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Workspaces.Core/Spelling/SpellcheckOptions.cs -------------------------------------------------------------------------------- /src/Workspaces.Core/Spelling/SpellingAnalysisContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Workspaces.Core/Spelling/SpellingAnalysisContext.cs -------------------------------------------------------------------------------- /src/Workspaces.Core/Spelling/SpellingDiagnostic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Workspaces.Core/Spelling/SpellingDiagnostic.cs -------------------------------------------------------------------------------- /src/Workspaces.Core/Spelling/SpellingFixResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Workspaces.Core/Spelling/SpellingFixResult.cs -------------------------------------------------------------------------------- /src/Workspaces.Core/Spelling/SpellingScopeFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Workspaces.Core/Spelling/SpellingScopeFilter.cs -------------------------------------------------------------------------------- /src/Workspaces.Core/Spelling/SpellingService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Workspaces.Core/Spelling/SpellingService.cs -------------------------------------------------------------------------------- /src/Workspaces.Core/Spelling/StringComparerUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Workspaces.Core/Spelling/StringComparerUtility.cs -------------------------------------------------------------------------------- /src/Workspaces.Core/SymbolDefinitionSortOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Workspaces.Core/SymbolDefinitionSortOptions.cs -------------------------------------------------------------------------------- /src/Workspaces.Core/SymbolGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Workspaces.Core/SymbolGroup.cs -------------------------------------------------------------------------------- /src/Workspaces.Core/SymbolGroupFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Workspaces.Core/SymbolGroupFilter.cs -------------------------------------------------------------------------------- /src/Workspaces.Core/SyntaxFinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Workspaces.Core/SyntaxFinder.cs -------------------------------------------------------------------------------- /src/Workspaces.Core/Workspaces.Core.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Workspaces.Core/Workspaces.Core.csproj -------------------------------------------------------------------------------- /src/Workspaces.Core/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Workspaces.Core/app.config -------------------------------------------------------------------------------- /src/Workspaces.Core/docs/NuGetReadme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/Workspaces.Core/docs/NuGetReadme.md -------------------------------------------------------------------------------- /src/global.ruleset.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/global.ruleset.old -------------------------------------------------------------------------------- /src/spellcheck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/src/spellcheck -------------------------------------------------------------------------------- /tools/build_cli_debug.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/tools/build_cli_debug.ps1 -------------------------------------------------------------------------------- /tools/cli_add_file_banner.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/tools/cli_add_file_banner.ps1 -------------------------------------------------------------------------------- /tools/cli_analyze.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/tools/cli_analyze.ps1 -------------------------------------------------------------------------------- /tools/cli_fix.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/tools/cli_fix.ps1 -------------------------------------------------------------------------------- /tools/cli_format.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/tools/cli_format.ps1 -------------------------------------------------------------------------------- /tools/cli_lloc.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/tools/cli_lloc.ps1 -------------------------------------------------------------------------------- /tools/cli_loc.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/tools/cli_loc.ps1 -------------------------------------------------------------------------------- /tools/copy_spelling_from_orang.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/tools/copy_spelling_from_orang.ps1 -------------------------------------------------------------------------------- /tools/generate_all.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/tools/generate_all.ps1 -------------------------------------------------------------------------------- /tools/generate_api_list.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/tools/generate_api_list.ps1 -------------------------------------------------------------------------------- /tools/generate_cli_docs.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/tools/generate_cli_docs.ps1 -------------------------------------------------------------------------------- /tools/generate_code.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/tools/generate_code.ps1 -------------------------------------------------------------------------------- /tools/generate_configuration_file.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/tools/generate_configuration_file.ps1 -------------------------------------------------------------------------------- /tools/generate_metadata.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/tools/generate_metadata.ps1 -------------------------------------------------------------------------------- /tools/generate_ref_docs.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/tools/generate_ref_docs.ps1 -------------------------------------------------------------------------------- /tools/generate_ref_docs.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/tools/generate_ref_docs.sln -------------------------------------------------------------------------------- /tools/list_syntax_node_hierarchy.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/tools/list_syntax_node_hierarchy.ps1 -------------------------------------------------------------------------------- /tools/nuget_push.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/tools/nuget_push.ps1 -------------------------------------------------------------------------------- /tools/reinstall_cli.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/tools/reinstall_cli.ps1 -------------------------------------------------------------------------------- /tools/reinstall_cli_debug.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/tools/reinstall_cli_debug.ps1 -------------------------------------------------------------------------------- /tools/remove_unused_symbols.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/tools/remove_unused_symbols.ps1 -------------------------------------------------------------------------------- /tools/report_analyzers_execution_time.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/tools/report_analyzers_execution_time.ps1 -------------------------------------------------------------------------------- /tools/sn.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/tools/sn.exe -------------------------------------------------------------------------------- /tools/sn.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/tools/sn.ps1 -------------------------------------------------------------------------------- /tools/vsix_publish.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/tools/vsix_publish.ps1 -------------------------------------------------------------------------------- /tools/vsix_uninstall_debug.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslynator/HEAD/tools/vsix_uninstall_debug.ps1 --------------------------------------------------------------------------------