├── .gitattributes ├── .gitignore ├── CONTRIBUTING.md ├── Images ├── Icon.png ├── MulitpleConsumption.png └── RedundantAssertion.png ├── LICENSE ├── README.md └── Sources ├── .editorconfig ├── .nuget ├── NuGet.Config ├── NuGet.exe ├── NuGet.targets └── packages.config ├── Directory.Build.props ├── ExternalAnnotations └── .NETFramework │ └── mscorlib │ └── 4.0.0.0.xml ├── ReCommendedExtension.Deployment ├── Debug.cs ├── DoesNotReturnIfAttribute.cs ├── Program.cs ├── Properties │ ├── Settings.Designer.cs │ └── Settings.settings ├── ReCommendedExtension.Deployment.csproj ├── ReCommendedExtension.nuspec └── Rider │ ├── build.gradle.kts │ ├── dependencies.json │ ├── gradle.properties │ ├── gradle │ ├── libs.versions.toml │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties │ ├── gradlew.bat │ ├── settings.gradle.kts │ └── src │ └── rider │ └── main │ └── resources │ └── META-INF │ ├── plugin.xml │ └── pluginIcon.svg ├── ReCommendedExtension.Tests ├── Analyzers │ ├── Annotation │ │ ├── AnnotationAnalyzerArgumentTests.cs │ │ ├── AnnotationAnalyzerTests.cs │ │ ├── AnnotationAnalyzerTestsConditional.cs │ │ ├── AnnotationAnalyzerTestsForMsTestProjects.cs │ │ ├── AnnotationAnalyzerTestsForNUnitTestProjects.cs │ │ ├── AnnotationAnalyzerTestsForTestProjectsWithFlavor.cs │ │ ├── AnnotationAnalyzerTestsForXUnitTestProjects.cs │ │ ├── AnnotationAnalyzerTestsWithoutAnnotations.cs │ │ ├── AnnotationAnalyzerValueRangeTests.cs │ │ ├── AnnotationArgumentQuickFixAvailabilityTests.cs │ │ ├── AnnotationArgumentQuickFixTests.cs │ │ ├── AnnotationQuickFixAvailabilityTests.cs │ │ ├── AnnotationQuickFixTests.cs │ │ ├── CoerceValueRangeBoundaryQuickFixTests.cs │ │ └── NullableAnnotationQuickFixTests.cs │ ├── Argument │ │ ├── ArgumentAnalyzerTests.cs │ │ ├── QuickFixAvailabilityTests.cs │ │ ├── RemoveArgumentFixTests.cs │ │ ├── RemoveArgumentRangeFixTests.cs │ │ ├── RemoveElementQuickFixTests.cs │ │ ├── UseOtherArgumentFixTests.cs │ │ └── UseOtherArgumentRangeFixTests.cs │ ├── ArgumentExceptionConstructorArgument │ │ └── ArgumentExceptionConstructorArgumentAnalyzerTests.cs │ ├── AsyncVoid │ │ ├── AsyncVoidAnalyzerTests.cs │ │ ├── AsyncVoidQuickFixAvailabilityTests.cs │ │ ├── AsyncVoidQuickFixChangeTypeTests.cs │ │ └── AsyncVoidQuickFixRemoveTests.cs │ ├── Await │ │ └── AwaitAnalyzerTestsRedundantCapturedContext.cs │ ├── BaseType │ │ ├── BaseTypeAnalyzerTests.cs │ │ ├── BaseTypeQuickFixAvailabilityTests.cs │ │ └── BaseTypeQuickFixRemoveTests.cs │ ├── CSharpAnalyzerTests.cs │ ├── CatchClauseWithoutVariable │ │ ├── CatchClauseWithoutVariableAnalyzerTests.cs │ │ ├── CatchClauseWithoutVariableQuickFixAvailabilityTests.cs │ │ └── CatchClauseWithoutVariableQuickFixTests.cs │ ├── Collection │ │ ├── ArrayWithDefaultValuesInitializationQuickFixAvailabilityTests.cs │ │ ├── ArrayWithDefaultValuesInitializationQuickFixTests.cs │ │ ├── CollectionAnalyzerTests.cs │ │ ├── ReplaceWithArrayEmptyQuickFixAvailabilityTests.cs │ │ ├── ReplaceWithArrayEmptyQuickFixTests.cs │ │ ├── ReplaceWithCollectionExpressionQuickFixAvailabilityTests.cs │ │ └── ReplaceWithCollectionExpressionQuickFixTests.cs │ ├── ConditionalInvocation │ │ └── ConditionalInvocationAnalyzerTests.cs │ ├── ControlFlow │ │ ├── ControlFlowAnalyzerTests.cs │ │ ├── ControlFlowQuickFixAvailabilityTests.cs │ │ └── ControlFlowQuickFixTestsForAssertionStatement.cs │ ├── DelegateInvoke │ │ ├── DelegateInvokeAnalyzerTests.cs │ │ ├── DelegateInvokeQuickFixAvailabilityTests.cs │ │ └── DelegateInvokeQuickFixTests.cs │ ├── ExpressionResult │ │ ├── ExpressionResultAnalyzerTests.cs │ │ ├── QuickFixAvailabilityTests.cs │ │ ├── UseExpressionResultAlternativeQuickFixTests.cs │ │ └── UseExpressionResultQuickFixTests.cs │ ├── Formatter │ │ ├── FormatterAnalyzerTests.cs │ │ ├── PassOtherFormatSpecifierFixTests.cs │ │ ├── QuickFixAvailabilityTests.cs │ │ ├── RemoveFormatPrecisionSpecifierFixTests.cs │ │ ├── RemoveFormatProviderFixTests.cs │ │ ├── RemoveFormatSpecifierFixTests.cs │ │ └── ReplaceTypeCastWithFormatSpecifierFixTests.cs │ ├── InterfaceImplementation │ │ └── InterfaceImplementationAnalyzerTests.cs │ ├── InternalConstructor │ │ ├── InternalConstructorAnalyzerTests.cs │ │ ├── InternalConstructorQuickFixAvailabilityTests.cs │ │ └── InternalConstructorQuickFixTests.cs │ ├── Linq │ │ ├── LinqQueryAnalyzerTests.cs │ │ ├── QuickFixAvailabilityTests.cs │ │ └── RemoveLinqQueryQuickFixTests.cs │ ├── LocalSuppression │ │ └── LocalSuppressionAnalyzerTests.cs │ ├── LockOnObjectWithWeakIdentity │ │ └── LockOnObjectWithWeakIdentityAnalyzerTests.cs │ ├── MemberInvocation │ │ ├── MemberInvocationAnalyzerTests.cs │ │ ├── QuickFixAvailabilityTests.cs │ │ ├── RemoveMethodInvocationFixTests.cs │ │ ├── ReplaceNullableValueWithTypeCastFixTests.cs │ │ ├── UseBinaryOperatorFixTests.cs │ │ ├── UseNullableHasValueNotNullFixTests.cs │ │ ├── UseNullableHasValueNotNullPatternFixTests.cs │ │ ├── UseNullableHasValueObjectPatternFixTests.cs │ │ ├── UseNullableHasValueTuplePatternFixTests.cs │ │ ├── UseOtherMethodFixTests.cs │ │ ├── UsePatternFixTests.cs │ │ ├── UsePropertyQuickFixTests.cs │ │ ├── UseRangeIndexerFixTests.cs │ │ ├── UseStaticPropertyQuickFixTests.cs │ │ └── UseUnaryOperatorFixTests.cs │ ├── NotifyPropertyChangedInvocatorFromConstructor │ │ ├── NotifyPropertyChangedInvocatorFromConstructorAnalyzerTests.cs │ │ ├── NotifyPropertyChangedInvocatorFromConstructorQuickFixAvailabilityTests.cs │ │ └── NotifyPropertyChangedInvocatorFromConstructorQuickFixTests.cs │ ├── QuickFixAvailabilityTests.cs │ ├── Region │ │ └── RegionAnalyzerTests.cs │ ├── ThrowExceptionInUnexpectedLocation │ │ └── ThrowExceptionInUnexpectedLocationAnalyzerTests.cs │ ├── UncatchableException │ │ └── UncatchableExceptionAnalyzerTests.cs │ ├── UnthrowableException │ │ └── UnthrowableExceptionAnalyzerTests.cs │ ├── ValueTask │ │ ├── ValueTaskAnalyzerTests.cs │ │ ├── ValueTaskQuickFixAvailabilityTests.cs │ │ └── ValueTaskQuickFixTests.cs │ ├── XamlAnalyzerTests.cs │ ├── XamlBindingWithoutMode │ │ └── XamlBindingWithoutMode.cs │ └── YieldReturnWithinLock │ │ └── YieldReturnWithinLockAnalyzerTests.cs ├── App.config ├── AssemblyTests.cs ├── ContextActions │ ├── Annotations │ │ ├── AnnotateWithAttributeUsageAvailabilityTests.cs │ │ ├── AnnotateWithAttributeUsageExecuteTests.cs │ │ ├── AnnotateWithDefaultEqualityUsageAvailabilityTests.cs │ │ ├── AnnotateWithDefaultEqualityUsageExecuteTests.cs │ │ ├── AnnotateWithEditorBrowsableNeverAvailabilityTests.cs │ │ ├── AnnotateWithEditorBrowsableNeverExecuteTests.cs │ │ ├── AnnotateWithHandlesResourceDisposalAvailabilityTests.cs │ │ ├── AnnotateWithHandlesResourceDisposalExecuteTests.cs │ │ ├── AnnotateWithIgnoreSpellingAndGrammarErrorsAvailabilityTests.cs │ │ ├── AnnotateWithIgnoreSpellingAndGrammarErrorsExecuteTests.cs │ │ ├── AnnotateWithInstantHandleAvailabilityTests.cs │ │ ├── AnnotateWithInstantHandleExecuteTests.cs │ │ ├── AnnotateWithItemNotNullAvailabilityTests.cs │ │ ├── AnnotateWithItemNotNullExecuteTests.cs │ │ ├── AnnotateWithLinqTunnelAvailabilityTests.cs │ │ ├── AnnotateWithLinqTunnelExecuteTests.cs │ │ ├── AnnotateWithMustDisposeResourceAvailabilityTests.cs │ │ ├── AnnotateWithMustDisposeResourceExecuteTests.cs │ │ ├── AnnotateWithMustDisposeResourceFalseAvailabilityTests.cs │ │ ├── AnnotateWithMustDisposeResourceFalseExecuteTests.cs │ │ ├── AnnotateWithMustUseReturnValueAvailabilityTests.cs │ │ ├── AnnotateWithMustUseReturnValueExecuteTests.cs │ │ ├── AnnotateWithNonNegativeValueAvailabilityTests.cs │ │ ├── AnnotateWithNonNegativeValueExecuteTests.cs │ │ ├── AnnotateWithPureAvailabilityTests.cs │ │ ├── AnnotateWithPureExecuteTests.cs │ │ ├── AnnotateWithValueRangeAvailabilityTests.cs │ │ └── AnnotateWithValueRangeExecuteTests.cs │ ├── CodeContracts │ │ ├── Elements │ │ │ ├── FieldAvailabilityTests.cs │ │ │ ├── FieldExecuteTests.cs │ │ │ ├── MethodAvailabilityTests.cs │ │ │ ├── MethodExecuteTests.cs │ │ │ ├── OperatorAvailabilityTests.cs │ │ │ ├── OperatorExecuteTests.cs │ │ │ ├── ParameterAvailabilityTests.cs │ │ │ ├── ParameterExecuteTests.cs │ │ │ ├── PropertyAvailabilityTests.cs │ │ │ └── PropertyExecuteTests.cs │ │ └── Types │ │ │ ├── CollectionAllItemsNotNullAvailabilityTests.cs │ │ │ ├── CollectionAllItemsNotNullExecuteTests.cs │ │ │ ├── CollectionCountPositiveAvailabilityTests.cs │ │ │ ├── CollectionCountPositiveExecuteTests.cs │ │ │ ├── DateTimeTimeOfDayZeroAvailabilityTests.cs │ │ │ ├── DateTimeTimeOfDayZeroExecuteTests.cs │ │ │ ├── EnumBetweenFirstAndLastAvailabilityTests.cs │ │ │ ├── EnumBetweenFirstAndLastExecuteTests.cs │ │ │ ├── EnumFlagsAvailabilityTests.cs │ │ │ ├── EnumFlagsExecuteTests.cs │ │ │ ├── EnumKnownValuesAvailabilityTests.cs │ │ │ ├── EnumKnownValuesExecuteTests.cs │ │ │ ├── GuidNonEmptyAvailabilityTests.cs │ │ │ ├── GuidNonEmptyExecuteTests.cs │ │ │ ├── IntPtrUIntPtrNonZeroAvailabilityTests.cs │ │ │ ├── IntPtrUIntPtrNonZeroExecuteTests.cs │ │ │ ├── IntPtrUIntPtrZeroAvailabilityTests.cs │ │ │ ├── IntPtrUIntPtrZeroExecuteTests.cs │ │ │ ├── NotNullAvailabilityTests.cs │ │ │ ├── NotNullExecuteTests.cs │ │ │ ├── NumericPositiveAvailabilityTests.cs │ │ │ ├── NumericPositiveExecuteTests.cs │ │ │ ├── NumericZeroAvailabilityTests.cs │ │ │ ├── NumericZeroExecuteTests.cs │ │ │ ├── SignedNumericNegativeAvailabilityTests.cs │ │ │ ├── SignedNumericNegativeExecuteTests.cs │ │ │ ├── SignedNumericNonZeroAvailabilityTests.cs │ │ │ ├── SignedNumericNonZeroExecuteTests.cs │ │ │ ├── SignedNumericZeroOrNegativeAvailabilityTests.cs │ │ │ ├── SignedNumericZeroOrNegativeExecuteTests.cs │ │ │ ├── SignedNumericZeroOrPositiveAvailabilityTests.cs │ │ │ ├── SignedNumericZeroOrPositiveExecuteTests.cs │ │ │ ├── StringNotNullAndNotEmptyAvailabilityTests.cs │ │ │ ├── StringNotNullAndNotEmptyExecuteTests.cs │ │ │ ├── TimeSpanNegativeAvailabilityTests.cs │ │ │ ├── TimeSpanNegativeExecuteTests.cs │ │ │ ├── TimeSpanNonZeroAvailabilityTests.cs │ │ │ ├── TimeSpanNonZeroExecuteTests.cs │ │ │ ├── TimeSpanPositiveAvailabilityTests.cs │ │ │ ├── TimeSpanPositiveExecuteTests.cs │ │ │ ├── TimeSpanZeroAvailabilityTests.cs │ │ │ ├── TimeSpanZeroExecuteTests.cs │ │ │ ├── TimeSpanZeroOrNegativeAvailabilityTests.cs │ │ │ ├── TimeSpanZeroOrNegativeExecuteTests.cs │ │ │ ├── TimeSpanZeroOrPositiveAvailabilityTests.cs │ │ │ └── TimeSpanZeroOrPositiveExecuteTests.cs │ ├── ConvertToLinqQueryAvailabilityTests.cs │ ├── ConvertToLinqQueryExecuteTests.cs │ ├── DocComments │ │ ├── DocCommentsExecuteTests[A].cs │ │ ├── EmbedIntoParamrefNameAvailabilityTests.cs │ │ ├── EmbedIntoParamrefNameExecuteTests.cs │ │ ├── EmbedIntoSeeCRefAvailabilityTests.cs │ │ ├── EmbedIntoSeeCRefExecuteTests.cs │ │ ├── EmbedIntoTypeparamrefNameAvailabilityTests.cs │ │ ├── EmbedIntoTypeparamrefNameExecuteTests.cs │ │ ├── EmbraceWithCTagsAvailabilityTests.cs │ │ ├── EmbraceWithCTagsExecuteTests.cs │ │ ├── ReflowDocCommentsAvailabilityTests.cs │ │ └── ReflowDocCommentsExecuteTests.cs │ ├── InterfaceImplementationDeclarations │ │ ├── DeclareComparisonOperatorsAvailabilityTests.cs │ │ ├── DeclareComparisonOperatorsExecuteTests.cs │ │ ├── DeclareEqualityOperatorsAvailabilityTests.cs │ │ └── DeclareEqualityOperatorsExecuteTests.cs │ ├── RemoveAssertNotNullAvailabilityTests.cs │ ├── RemoveAssertNotNullExecuteTests.cs │ ├── SetLanguageInjectionAvailabilityTests.cs │ ├── SetLanguageInjectionExecuteTests.cs │ ├── Strings │ │ ├── ReplaceIsNullOrEmptyWithNegatedListPatternAvailabilityTests.cs │ │ ├── ReplaceIsNullOrEmptyWithNegatedListPatternExecuteTests.cs │ │ ├── ReplaceIsNullOrEmptyWithNegatedObjectAvailabilityTests.cs │ │ ├── ReplaceIsNullOrEmptyWithNegatedObjectExecuteTests.cs │ │ ├── ReplaceIsNullOrEmptyWithNegatedObjectOrEmptyAvailabilityTests.cs │ │ ├── ReplaceIsNullOrEmptyWithNegatedObjectOrEmptyExecuteTests.cs │ │ ├── ReplaceIsNullOrEmptyWithNegatedObjectOrEmptyListAvailabilityTests.cs │ │ ├── ReplaceIsNullOrEmptyWithNegatedObjectOrEmptyListExecuteTests.cs │ │ ├── ReplaceIsNullOrEmptyWithNullOrEmptyAvailabilityTests.cs │ │ ├── ReplaceIsNullOrEmptyWithNullOrEmptyExecuteTests.cs │ │ ├── ReplaceIsNullOrEmptyWithNullOrEmptyListAvailabilityTests.cs │ │ └── ReplaceIsNullOrEmptyWithNullOrEmptyListExecuteTests.cs │ ├── ToggleReturnTypeOfAsyncMethodsAvailabilityTests.cs │ └── ToggleReturnTypeOfAsyncMethodsExecuteTests.cs ├── HighlightingExtensions.cs ├── Missing │ ├── DateOnly.cs │ ├── Extensions.cs │ ├── MathF.cs │ ├── MissingByteMethods.cs │ ├── MissingCharMethods.cs │ ├── MissingDateTimeMembers.cs │ ├── MissingDateTimeOffsetMembers.cs │ ├── MissingDecimalMethods.cs │ ├── MissingDoubleMethods.cs │ ├── MissingEnumMethods.cs │ ├── MissingEnumerableMethods.cs │ ├── MissingGuidMethods.cs │ ├── MissingHalfMethods.cs │ ├── MissingInt128Methods.cs │ ├── MissingInt16Methods.cs │ ├── MissingInt32Methods.cs │ ├── MissingInt64Methods.cs │ ├── MissingIntPtrMethods.cs │ ├── MissingMathMethods.cs │ ├── MissingRandomMethods.cs │ ├── MissingSByteMethods.cs │ ├── MissingSingleMethods.cs │ ├── MissingStringBuilderMethods.cs │ ├── MissingStringMethods.cs │ ├── MissingStringSplitOptions.cs │ ├── MissingTimeSpanMembers.cs │ ├── MissingUInt128Methods.cs │ ├── MissingUInt16Methods.cs │ ├── MissingUInt32Methods.cs │ ├── MissingUInt64Methods.cs │ ├── MissingUIntPtrMethods.cs │ └── TimeOnly.cs ├── ReCommendedExtension.Tests.csproj ├── TestEnvironmentAssembly.cs ├── Zone.cs └── test │ ├── data │ ├── Analyzers │ │ ├── Annotation │ │ │ ├── AsyncIteratorMethod.cs │ │ │ ├── AsyncIteratorMethod.cs.gold │ │ │ ├── AsyncMethod.cs │ │ │ ├── AsyncMethod.cs.gold │ │ │ ├── AttributeUsage.cs │ │ │ ├── AttributeUsage.cs.gold │ │ │ ├── Conditional.cs │ │ │ ├── Conditional.cs.gold │ │ │ ├── DisposalHandling_Fields.cs │ │ │ ├── DisposalHandling_Fields.cs.gold │ │ │ ├── DisposalHandling_Methods.cs │ │ │ ├── DisposalHandling_Methods.cs.gold │ │ │ ├── DisposalHandling_Parameters.cs │ │ │ ├── DisposalHandling_Parameters.cs.gold │ │ │ ├── DisposalHandling_Properties.cs │ │ │ ├── DisposalHandling_Properties.cs.gold │ │ │ ├── EditorBrowsable.cs │ │ │ ├── EditorBrowsable.cs.gold │ │ │ ├── ItemNotNull.cs │ │ │ ├── ItemNotNull.cs.gold │ │ │ ├── IteratorMethod.cs │ │ │ ├── IteratorMethod.cs.gold │ │ │ ├── NonNegativeValue.cs │ │ │ ├── NonNegativeValue.cs.gold │ │ │ ├── NullableAnnotationContext.cs │ │ │ ├── NullableAnnotationContext.cs.gold │ │ │ ├── Other_Optimistic.cs │ │ │ ├── Other_Optimistic.cs.gold │ │ │ ├── Other_Pessimistic.cs │ │ │ ├── Other_Pessimistic.cs.gold │ │ │ ├── Override.cs │ │ │ ├── Override.cs.gold │ │ │ ├── PurityAndDisposability_Constructors.cs │ │ │ ├── PurityAndDisposability_Constructors.cs.gold │ │ │ ├── PurityAndDisposability_Constructors_Legacy.cs │ │ │ ├── PurityAndDisposability_Constructors_Legacy.cs.gold │ │ │ ├── PurityAndDisposability_DisposableOverride.cs │ │ │ ├── PurityAndDisposability_DisposableOverride.cs.gold │ │ │ ├── PurityAndDisposability_LocalFunctions.cs │ │ │ ├── PurityAndDisposability_LocalFunctions.cs.gold │ │ │ ├── PurityAndDisposability_Methods.cs │ │ │ ├── PurityAndDisposability_Methods.cs.gold │ │ │ ├── PurityAndDisposability_Parameters.cs │ │ │ ├── PurityAndDisposability_Parameters.cs.gold │ │ │ ├── PurityAndDisposability_PrimaryConstructors.cs │ │ │ ├── PurityAndDisposability_PrimaryConstructors.cs.gold │ │ │ ├── PurityAndDisposability_PrimaryConstructors_Legacy.cs │ │ │ ├── PurityAndDisposability_PrimaryConstructors_Legacy.cs.gold │ │ │ ├── PurityAndDisposability_Types.cs │ │ │ ├── PurityAndDisposability_Types.cs.gold │ │ │ ├── PurityAndDisposability_Types_Legacy.cs │ │ │ ├── PurityAndDisposability_Types_Legacy.cs.gold │ │ │ ├── QuickFixes │ │ │ │ ├── AnnotationAvailability.cs │ │ │ │ ├── AnnotationAvailability.cs.gold │ │ │ │ ├── CoerceHigherBoundary.cs │ │ │ │ ├── CoerceHigherBoundary.cs.gold │ │ │ │ ├── CoerceLowerBoundaryForSignedType.cs │ │ │ │ ├── CoerceLowerBoundaryForSignedType.cs.gold │ │ │ │ ├── CoerceLowerBoundaryForUnsignedType.cs │ │ │ │ ├── CoerceLowerBoundaryForUnsignedType.cs.gold │ │ │ │ ├── CoerceValueRangeBoundaryAvailability.cs │ │ │ │ ├── CoerceValueRangeBoundaryAvailability.cs.gold │ │ │ │ ├── Conflicting.cs │ │ │ │ ├── Conflicting.cs.gold │ │ │ │ ├── NotAllowed.cs │ │ │ │ ├── NotAllowed.cs.gold │ │ │ │ ├── Redundant.cs │ │ │ │ ├── Redundant.cs.gold │ │ │ │ ├── RedundantAnnotationArgument.cs │ │ │ │ ├── RedundantAnnotationArgument.cs.gold │ │ │ │ ├── RedundantAnnotationArgumentAvailability.cs │ │ │ │ ├── RedundantAnnotationArgumentAvailability.cs.gold │ │ │ │ ├── RedundantNullableAnnotation.cs │ │ │ │ ├── RedundantNullableAnnotation.cs.gold │ │ │ │ ├── RedundantNullableAnnotationAvailability.cs │ │ │ │ └── RedundantNullableAnnotationAvailability.cs.gold │ │ │ ├── RedundantAnnotationArgument.cs │ │ │ ├── RedundantAnnotationArgument.cs.gold │ │ │ ├── RedundantAnnotationArgument_Legacy.cs │ │ │ ├── RedundantAnnotationArgument_Legacy.cs.gold │ │ │ ├── RedundantNullableAnnotations.cs │ │ │ ├── RedundantNullableAnnotations.cs.gold │ │ │ ├── SuppressMessage.cs │ │ │ ├── SuppressMessage.cs.gold │ │ │ ├── SuppressMessage_NET_5.cs │ │ │ ├── SuppressMessage_NET_5.cs.gold │ │ │ ├── SuppressMessage_TestProject.cs │ │ │ ├── SuppressMessage_TestProject.cs.gold │ │ │ ├── SuppressMessage_TestProject_NET_5.cs │ │ │ ├── SuppressMessage_TestProject_NET_5.cs.gold │ │ │ ├── ValueRange.cs │ │ │ ├── ValueRange.cs.gold │ │ │ ├── WithoutAnnotations_Optimistic.cs │ │ │ ├── WithoutAnnotations_Optimistic.cs.gold │ │ │ ├── WithoutAnnotations_Pessimistic.cs │ │ │ └── WithoutAnnotations_Pessimistic.cs.gold │ │ ├── Argument │ │ │ ├── Byte.cs │ │ │ ├── Byte.cs.gold │ │ │ ├── DateOnly.cs │ │ │ ├── DateOnly.cs.gold │ │ │ ├── DateTime.cs │ │ │ ├── DateTime.cs.gold │ │ │ ├── DateTimeOffset.cs │ │ │ ├── DateTimeOffset.cs.gold │ │ │ ├── Decimal.cs │ │ │ ├── Decimal.cs.gold │ │ │ ├── Double.cs │ │ │ ├── Double.cs.gold │ │ │ ├── Enum.cs │ │ │ ├── Enum.cs.gold │ │ │ ├── Guid.cs │ │ │ ├── Guid.cs.gold │ │ │ ├── Half.cs │ │ │ ├── Half.cs.gold │ │ │ ├── Int128.cs │ │ │ ├── Int128.cs.gold │ │ │ ├── Int16.cs │ │ │ ├── Int16.cs.gold │ │ │ ├── Int32.cs │ │ │ ├── Int32.cs.gold │ │ │ ├── Int64.cs │ │ │ ├── Int64.cs.gold │ │ │ ├── IntPtr.cs │ │ │ ├── IntPtr.cs.gold │ │ │ ├── Math.cs │ │ │ ├── Math.cs.gold │ │ │ ├── MathF.cs │ │ │ ├── MathF.cs.gold │ │ │ ├── QuickFixes │ │ │ │ ├── RemoveArgumentFixAvailability.cs │ │ │ │ ├── RemoveArgumentFixAvailability.cs.gold │ │ │ │ ├── RemoveArgumentRangeFixAvailability.cs │ │ │ │ ├── RemoveArgumentRangeFixAvailability.cs.gold │ │ │ │ ├── RemoveArgumentRange_Last.cs │ │ │ │ ├── RemoveArgumentRange_Last.cs.gold │ │ │ │ ├── RemoveArgumentRange_Last_Named.cs │ │ │ │ ├── RemoveArgumentRange_Last_Named.cs.gold │ │ │ │ ├── RemoveArgumentRange_Middle.cs │ │ │ │ ├── RemoveArgumentRange_Middle.cs.gold │ │ │ │ ├── RemoveArgumentRange_OutOfOrder.cs │ │ │ │ ├── RemoveArgumentRange_OutOfOrder.cs.gold │ │ │ │ ├── RemoveArgument_First.cs │ │ │ │ ├── RemoveArgument_First.cs.gold │ │ │ │ ├── RemoveArgument_Last.cs │ │ │ │ ├── RemoveArgument_Last.cs.gold │ │ │ │ ├── RemoveArgument_Middle.cs │ │ │ │ ├── RemoveArgument_Middle.cs.gold │ │ │ │ ├── RemoveArgument_OutOfOrder.cs │ │ │ │ ├── RemoveArgument_OutOfOrder.cs.gold │ │ │ │ ├── RemoveArgument_Single.cs │ │ │ │ ├── RemoveArgument_Single.cs.gold │ │ │ │ ├── RemoveElementFixAvailability.cs │ │ │ │ ├── RemoveElementFixAvailability.cs.gold │ │ │ │ ├── RemoveElement_Last.cs │ │ │ │ ├── RemoveElement_Last.cs.gold │ │ │ │ ├── RemoveElement_Middle.cs │ │ │ │ ├── RemoveElement_Middle.cs.gold │ │ │ │ ├── UseOtherArgument.cs │ │ │ │ ├── UseOtherArgument.cs.gold │ │ │ │ ├── UseOtherArgumentFixAvailability.cs │ │ │ │ ├── UseOtherArgumentFixAvailability.cs.gold │ │ │ │ ├── UseOtherArgumentRange.cs │ │ │ │ ├── UseOtherArgumentRange.cs.gold │ │ │ │ ├── UseOtherArgumentRangeFixAvailability.cs │ │ │ │ ├── UseOtherArgumentRangeFixAvailability.cs.gold │ │ │ │ ├── UseOtherArgumentRange_Named.cs │ │ │ │ ├── UseOtherArgumentRange_Named.cs.gold │ │ │ │ ├── UseOtherArgumentRange_OutOfOrder.cs │ │ │ │ ├── UseOtherArgumentRange_OutOfOrder.cs.gold │ │ │ │ ├── UseOtherArgumentRange_RedundantArgument.cs │ │ │ │ ├── UseOtherArgumentRange_RedundantArgument.cs.gold │ │ │ │ ├── UseOtherArgumentRange_RedundantArgument_Named.cs │ │ │ │ ├── UseOtherArgumentRange_RedundantArgument_Named.cs.gold │ │ │ │ ├── UseOtherArgumentRange_RedundantArgument_OutOfOrder.cs │ │ │ │ ├── UseOtherArgumentRange_RedundantArgument_OutOfOrder.cs.gold │ │ │ │ ├── UseOtherArgument_AdditionalArgument.cs │ │ │ │ ├── UseOtherArgument_AdditionalArgument.cs.gold │ │ │ │ ├── UseOtherArgument_AdditionalArgument_Named.cs │ │ │ │ ├── UseOtherArgument_AdditionalArgument_Named.cs.gold │ │ │ │ ├── UseOtherArgument_Named.cs │ │ │ │ ├── UseOtherArgument_Named.cs.gold │ │ │ │ ├── UseOtherArgument_RedundantArgument.cs │ │ │ │ ├── UseOtherArgument_RedundantArgument.cs.gold │ │ │ │ ├── UseOtherArgument_RedundantArgument_Named.cs │ │ │ │ ├── UseOtherArgument_RedundantArgument_Named.cs.gold │ │ │ │ ├── UseOtherArgument_RedundantArgument_OutOfOrder.cs │ │ │ │ └── UseOtherArgument_RedundantArgument_OutOfOrder.cs.gold │ │ │ ├── Random.cs │ │ │ ├── Random.cs.gold │ │ │ ├── SByte.cs │ │ │ ├── SByte.cs.gold │ │ │ ├── Single.cs │ │ │ ├── Single.cs.gold │ │ │ ├── String.cs │ │ │ ├── String.cs.gold │ │ │ ├── StringBuilder.cs │ │ │ ├── StringBuilder.cs.gold │ │ │ ├── TimeOnly.cs │ │ │ ├── TimeOnly.cs.gold │ │ │ ├── TimeSpan.cs │ │ │ ├── TimeSpan.cs.gold │ │ │ ├── UInt128.cs │ │ │ ├── UInt128.cs.gold │ │ │ ├── UInt16.cs │ │ │ ├── UInt16.cs.gold │ │ │ ├── UInt32.cs │ │ │ ├── UInt32.cs.gold │ │ │ ├── UInt64.cs │ │ │ ├── UInt64.cs.gold │ │ │ ├── UIntPtr.cs │ │ │ └── UIntPtr.cs.gold │ │ ├── ArgumentExceptionConstructorArgument │ │ │ ├── ArgumentExceptionConstructorArgument.cs │ │ │ └── ArgumentExceptionConstructorArgument.cs.gold │ │ ├── AsyncVoid │ │ │ ├── AnonymousMethod.cs │ │ │ ├── AnonymousMethod.cs.gold │ │ │ ├── AsyncVoidMethod.cs │ │ │ ├── AsyncVoidMethod.cs.gold │ │ │ ├── AsyncVoidMethodXBind.cs │ │ │ ├── AsyncVoidMethodXBind.cs.gold │ │ │ ├── LambdaExpression.cs │ │ │ ├── LambdaExpression.cs.gold │ │ │ └── QuickFixes │ │ │ │ ├── AnonymousMethod.cs │ │ │ │ ├── AnonymousMethod.cs.gold │ │ │ │ ├── AnonymousMethodAvailability.cs │ │ │ │ ├── AnonymousMethodAvailability.cs.gold │ │ │ │ ├── AsyncVoidLocalFunction.cs │ │ │ │ ├── AsyncVoidLocalFunction.cs.gold │ │ │ │ ├── AsyncVoidLocalFunctionAvailability.cs │ │ │ │ ├── AsyncVoidLocalFunctionAvailability.cs.gold │ │ │ │ ├── AsyncVoidMethod.cs │ │ │ │ ├── AsyncVoidMethod.cs.gold │ │ │ │ ├── AsyncVoidMethodAvailability.cs │ │ │ │ ├── AsyncVoidMethodAvailability.cs.gold │ │ │ │ ├── LambdaExpression.cs │ │ │ │ ├── LambdaExpression.cs.gold │ │ │ │ ├── LambdaExpressionAvailability.cs │ │ │ │ └── LambdaExpressionAvailability.cs.gold │ │ ├── Await │ │ │ ├── RedundantCapturedContext.cs │ │ │ ├── RedundantCapturedContext.cs.gold │ │ │ ├── RedundantCapturedContext_IAsyncTypes.cs │ │ │ ├── RedundantCapturedContext_IAsyncTypes.cs.gold │ │ │ ├── RedundantCapturedContext_LibraryMode.cs │ │ │ ├── RedundantCapturedContext_LibraryMode.cs.gold │ │ │ ├── RedundantCapturedContext_NET_8.cs │ │ │ ├── RedundantCapturedContext_NET_8.cs.gold │ │ │ ├── RedundantCapturedContext_ReturnValueTask.cs │ │ │ ├── RedundantCapturedContext_ReturnValueTask.cs.gold │ │ │ ├── RedundantCapturedContext_ValueTask.cs │ │ │ ├── RedundantCapturedContext_ValueTask.cs.gold │ │ │ ├── RedundantCapturedContext_ValueTask_NET_8.cs │ │ │ ├── RedundantCapturedContext_ValueTask_NET_8.cs.gold │ │ │ ├── RedundantCapturedContext_ValueTask_ReturnTask.cs │ │ │ └── RedundantCapturedContext_ValueTask_ReturnTask.cs.gold │ │ ├── BaseType │ │ │ ├── BaseTypes.cs │ │ │ ├── BaseTypes.cs.gold │ │ │ └── QuickFixes │ │ │ │ ├── Availability.cs │ │ │ │ ├── Availability.cs.gold │ │ │ │ ├── Class.cs │ │ │ │ ├── Class.cs.gold │ │ │ │ ├── Class_Empty.cs │ │ │ │ ├── Class_Empty.cs.gold │ │ │ │ ├── Class_Interface.cs │ │ │ │ ├── Class_Interface.cs.gold │ │ │ │ ├── Class_NonEmpty.cs │ │ │ │ ├── Class_NonEmpty.cs.gold │ │ │ │ ├── Class_PrimaryConstructor.cs │ │ │ │ ├── Class_PrimaryConstructor.cs.gold │ │ │ │ ├── Record_Interface.cs │ │ │ │ └── Record_Interface.cs.gold │ │ ├── CatchClauseWithoutVariable │ │ │ ├── CatchClauseWithoutVariable.cs │ │ │ ├── CatchClauseWithoutVariable.cs.gold │ │ │ └── QuickFixes │ │ │ │ ├── CatchClauseWithoutVariable.cs │ │ │ │ ├── CatchClauseWithoutVariable.cs.gold │ │ │ │ ├── CatchClauseWithoutVariable2.cs │ │ │ │ ├── CatchClauseWithoutVariable2.cs.gold │ │ │ │ ├── CatchClauseWithoutVariableAvailability.cs │ │ │ │ └── CatchClauseWithoutVariableAvailability.cs.gold │ │ ├── Collection │ │ │ ├── ArrayWithDefaultValuesInitialization.cs │ │ │ ├── ArrayWithDefaultValuesInitialization.cs.gold │ │ │ ├── ArrayWithDefaultValuesInitializationWithNullableAnnotations.cs │ │ │ ├── ArrayWithDefaultValuesInitializationWithNullableAnnotations.cs.gold │ │ │ ├── ArrayWithDefaultValuesInitialization_CS12.cs │ │ │ ├── ArrayWithDefaultValuesInitialization_CS12.cs.gold │ │ │ ├── ArrayWithDefaultValuesInitialization_ParameterlessCtor.cs │ │ │ ├── ArrayWithDefaultValuesInitialization_ParameterlessCtor.cs.gold │ │ │ ├── ArrayWithDefaultValuesInitialization_TargetTyped.cs │ │ │ ├── ArrayWithDefaultValuesInitialization_TargetTyped.cs.gold │ │ │ ├── CausingExpression.cs │ │ │ ├── CausingExpression.cs.gold │ │ │ ├── CollectionExpressionWithDefaultValuesInitialization.cs │ │ │ ├── CollectionExpressionWithDefaultValuesInitialization.cs.gold │ │ │ ├── CollectionInitialization_Array_NonTargetTyped.cs │ │ │ ├── CollectionInitialization_Array_NonTargetTyped.cs.gold │ │ │ ├── CollectionInitialization_Array_Target_Array.cs │ │ │ ├── CollectionInitialization_Array_Target_Array.cs.gold │ │ │ ├── CollectionInitialization_Array_Target_ICollection.cs │ │ │ ├── CollectionInitialization_Array_Target_ICollection.cs.gold │ │ │ ├── CollectionInitialization_Array_Target_IEnumerable.cs │ │ │ ├── CollectionInitialization_Array_Target_IEnumerable.cs.gold │ │ │ ├── CollectionInitialization_Array_Target_IList.cs │ │ │ ├── CollectionInitialization_Array_Target_IList.cs.gold │ │ │ ├── CollectionInitialization_Array_Target_IReadOnlyCollection.cs │ │ │ ├── CollectionInitialization_Array_Target_IReadOnlyCollection.cs.gold │ │ │ ├── CollectionInitialization_Array_Target_IReadOnlyList.cs │ │ │ ├── CollectionInitialization_Array_Target_IReadOnlyList.cs.gold │ │ │ ├── CollectionInitialization_Dictionary_NonTargetTyped.cs │ │ │ ├── CollectionInitialization_Dictionary_NonTargetTyped.cs.gold │ │ │ ├── CollectionInitialization_Dictionary_Target_Dictionary.cs │ │ │ ├── CollectionInitialization_Dictionary_Target_Dictionary.cs.gold │ │ │ ├── CollectionInitialization_HashSet_NonTargetTyped.cs │ │ │ ├── CollectionInitialization_HashSet_NonTargetTyped.cs.gold │ │ │ ├── CollectionInitialization_HashSet_Target_HashSet.cs │ │ │ ├── CollectionInitialization_HashSet_Target_HashSet.cs.gold │ │ │ ├── CollectionInitialization_HashSet_Target_IEnumerable.cs │ │ │ ├── CollectionInitialization_HashSet_Target_IEnumerable.cs.gold │ │ │ ├── CollectionInitialization_HashSet_Target_IReadOnlyCollection.cs │ │ │ ├── CollectionInitialization_HashSet_Target_IReadOnlyCollection.cs.gold │ │ │ ├── CollectionInitialization_ItemTypes.cs │ │ │ ├── CollectionInitialization_ItemTypes.cs.gold │ │ │ ├── CollectionInitialization_List_NonTargetTyped.cs │ │ │ ├── CollectionInitialization_List_NonTargetTyped.cs.gold │ │ │ ├── CollectionInitialization_List_Target_ICollection.cs │ │ │ ├── CollectionInitialization_List_Target_ICollection.cs.gold │ │ │ ├── CollectionInitialization_List_Target_IEnumerable.cs │ │ │ ├── CollectionInitialization_List_Target_IEnumerable.cs.gold │ │ │ ├── CollectionInitialization_List_Target_IList.cs │ │ │ ├── CollectionInitialization_List_Target_IList.cs.gold │ │ │ ├── CollectionInitialization_List_Target_IReadOnlyCollection.cs │ │ │ ├── CollectionInitialization_List_Target_IReadOnlyCollection.cs.gold │ │ │ ├── CollectionInitialization_List_Target_IReadOnlyList.cs │ │ │ ├── CollectionInitialization_List_Target_IReadOnlyList.cs.gold │ │ │ ├── CollectionInitialization_List_Target_List.cs │ │ │ ├── CollectionInitialization_List_Target_List.cs.gold │ │ │ ├── CollectionInitialization_Other_NonTargetTyped.cs │ │ │ ├── CollectionInitialization_Other_NonTargetTyped.cs.gold │ │ │ ├── CollectionInitialization_Other_Target_Other.cs │ │ │ ├── CollectionInitialization_Other_Target_Other.cs.gold │ │ │ ├── EmptyArrayInitialization.cs │ │ │ ├── EmptyArrayInitialization.cs.gold │ │ │ ├── EmptyArrayInitialization_CS12.cs │ │ │ ├── EmptyArrayInitialization_CS12.cs.gold │ │ │ ├── ParameterizedCollectionCreationWithInferredTypeArgument.cs │ │ │ ├── ParameterizedCollectionCreationWithInferredTypeArgument.cs.gold │ │ │ └── QuickFixes │ │ │ │ ├── ArrayWithDefaultValuesInitialization.cs │ │ │ │ ├── ArrayWithDefaultValuesInitialization.cs.gold │ │ │ │ ├── ArrayWithDefaultValuesInitialization2.cs │ │ │ │ ├── ArrayWithDefaultValuesInitialization2.cs.gold │ │ │ │ ├── ArrayWithDefaultValuesInitialization3.cs │ │ │ │ ├── ArrayWithDefaultValuesInitialization3.cs.gold │ │ │ │ ├── ArrayWithDefaultValuesInitialization4.cs │ │ │ │ ├── ArrayWithDefaultValuesInitialization4.cs.gold │ │ │ │ ├── ArrayWithDefaultValuesInitialization5.cs │ │ │ │ ├── ArrayWithDefaultValuesInitialization5.cs.gold │ │ │ │ ├── ArrayWithDefaultValuesInitialization6.cs │ │ │ │ ├── ArrayWithDefaultValuesInitialization6.cs.gold │ │ │ │ ├── ArrayWithDefaultValuesInitialization7.cs │ │ │ │ ├── ArrayWithDefaultValuesInitialization7.cs.gold │ │ │ │ ├── ArrayWithDefaultValuesInitializationAvailability.cs │ │ │ │ ├── ArrayWithDefaultValuesInitializationAvailability.cs.gold │ │ │ │ ├── ArrayWithDefaultValuesInitializationAvailabilityWithNullableAnnotations.cs │ │ │ │ ├── ArrayWithDefaultValuesInitializationAvailabilityWithNullableAnnotations.cs.gold │ │ │ │ ├── ArrayWithDefaultValuesInitializationAvailabilityWithNullableAnnotations_CS12.cs │ │ │ │ ├── ArrayWithDefaultValuesInitializationAvailabilityWithNullableAnnotations_CS12.cs.gold │ │ │ │ ├── ArrayWithDefaultValuesInitializationAvailability_CS12.cs │ │ │ │ ├── ArrayWithDefaultValuesInitializationAvailability_CS12.cs.gold │ │ │ │ ├── CollectionInitialization_Array_Target_Array_Availability.cs │ │ │ │ ├── CollectionInitialization_Array_Target_Array_Availability.cs.gold │ │ │ │ ├── CollectionInitialization_Array_Target_Array_Field.cs │ │ │ │ ├── CollectionInitialization_Array_Target_Array_Field.cs.gold │ │ │ │ ├── CollectionInitialization_Array_Target_Array_GenericMethodArgument_InferredTypeArguments_1.cs │ │ │ │ ├── CollectionInitialization_Array_Target_Array_GenericMethodArgument_InferredTypeArguments_1.cs.gold │ │ │ │ ├── CollectionInitialization_Array_Target_Array_GenericMethodArgument_InferredTypeArguments_2.cs │ │ │ │ ├── CollectionInitialization_Array_Target_Array_GenericMethodArgument_InferredTypeArguments_2.cs.gold │ │ │ │ ├── CollectionInitialization_Array_Target_Array_GenericMethodArgument_InferredTypeArguments_3.cs │ │ │ │ ├── CollectionInitialization_Array_Target_Array_GenericMethodArgument_InferredTypeArguments_3.cs.gold │ │ │ │ ├── CollectionInitialization_Array_Target_Array_MethodArgument.cs │ │ │ │ ├── CollectionInitialization_Array_Target_Array_MethodArgument.cs.gold │ │ │ │ ├── CollectionInitialization_Array_Target_IEnumerable_Availability.cs │ │ │ │ ├── CollectionInitialization_Array_Target_IEnumerable_Availability.cs.gold │ │ │ │ ├── CollectionInitialization_Array_Target_IEnumerable_Field.cs │ │ │ │ ├── CollectionInitialization_Array_Target_IEnumerable_Field.cs.gold │ │ │ │ ├── CollectionInitialization_Array_Target_IEnumerable_GenericMethodArgument.cs │ │ │ │ ├── CollectionInitialization_Array_Target_IEnumerable_GenericMethodArgument.cs.gold │ │ │ │ ├── CollectionInitialization_Dictionary_Target_Dictionary_Field.cs │ │ │ │ ├── CollectionInitialization_Dictionary_Target_Dictionary_Field.cs.gold │ │ │ │ ├── CollectionInitialization_Dictionary_Target_Dictionary_GenericMethodArgument_InferredTypeArguments.cs │ │ │ │ ├── CollectionInitialization_Dictionary_Target_Dictionary_GenericMethodArgument_InferredTypeArguments.cs.gold │ │ │ │ ├── CollectionInitialization_Dictionary_Target_Dictionary_MethodArgument.cs │ │ │ │ ├── CollectionInitialization_Dictionary_Target_Dictionary_MethodArgument.cs.gold │ │ │ │ ├── CollectionInitialization_Dictionary_Target_Dictionary_Property.cs │ │ │ │ ├── CollectionInitialization_Dictionary_Target_Dictionary_Property.cs.gold │ │ │ │ ├── CollectionInitialization_List_Target_IEnumerable_Field.cs │ │ │ │ ├── CollectionInitialization_List_Target_IEnumerable_Field.cs.gold │ │ │ │ ├── CollectionInitialization_List_Target_IEnumerable_Field_Empty_1.cs │ │ │ │ ├── CollectionInitialization_List_Target_IEnumerable_Field_Empty_1.cs.gold │ │ │ │ ├── CollectionInitialization_List_Target_IEnumerable_Field_Empty_2.cs │ │ │ │ ├── CollectionInitialization_List_Target_IEnumerable_Field_Empty_2.cs.gold │ │ │ │ ├── CollectionInitialization_List_Target_IEnumerable_GenericMethodArgument.cs │ │ │ │ ├── CollectionInitialization_List_Target_IEnumerable_GenericMethodArgument.cs.gold │ │ │ │ ├── CollectionInitialization_List_Target_IEnumerable_GenericMethodArgument_InferredTypeArguments.cs │ │ │ │ ├── CollectionInitialization_List_Target_IEnumerable_GenericMethodArgument_InferredTypeArguments.cs.gold │ │ │ │ ├── CollectionInitialization_List_Target_IEnumerable_GenericMethodArgument_NoInferredTypeArguments.cs │ │ │ │ ├── CollectionInitialization_List_Target_IEnumerable_GenericMethodArgument_NoInferredTypeArguments.cs.gold │ │ │ │ ├── CollectionInitialization_List_Target_IEnumerable_Variable_1.cs │ │ │ │ ├── CollectionInitialization_List_Target_IEnumerable_Variable_1.cs.gold │ │ │ │ ├── CollectionInitialization_List_Target_IEnumerable_Variable_2.cs │ │ │ │ ├── CollectionInitialization_List_Target_IEnumerable_Variable_2.cs.gold │ │ │ │ ├── EmptyArrayInitialization.cs │ │ │ │ ├── EmptyArrayInitialization.cs.gold │ │ │ │ ├── EmptyArrayInitialization2.cs │ │ │ │ ├── EmptyArrayInitialization2.cs.gold │ │ │ │ ├── EmptyArrayInitialization3.cs │ │ │ │ ├── EmptyArrayInitialization3.cs.gold │ │ │ │ ├── EmptyArrayInitialization4.cs │ │ │ │ ├── EmptyArrayInitialization4.cs.gold │ │ │ │ ├── EmptyArrayInitializationAvailability.cs │ │ │ │ └── EmptyArrayInitializationAvailability.cs.gold │ │ ├── ConditionalInvocation │ │ │ ├── Conditional.cs │ │ │ └── Conditional.cs.gold │ │ ├── ControlFlow │ │ │ ├── ControlFlow.cs │ │ │ ├── ControlFlow.cs.gold │ │ │ ├── ControlFlow_NullableContext.cs │ │ │ ├── ControlFlow_NullableContext.cs.gold │ │ │ └── QuickFixes │ │ │ │ ├── ControlFlowAvailability.cs │ │ │ │ ├── ControlFlowAvailability.cs.gold │ │ │ │ ├── RemoveAssertionStatement.cs │ │ │ │ └── RemoveAssertionStatement.cs.gold │ │ ├── DelegateInvoke │ │ │ ├── DelegateInvoke.cs │ │ │ ├── DelegateInvoke.cs.gold │ │ │ └── QuickFixes │ │ │ │ ├── DelegateInvoke.cs │ │ │ │ ├── DelegateInvoke.cs.gold │ │ │ │ ├── DelegateInvoke2.cs │ │ │ │ ├── DelegateInvoke2.cs.gold │ │ │ │ ├── DelegateInvokeAvailability.cs │ │ │ │ └── DelegateInvokeAvailability.cs.gold │ │ ├── ExpressionResult │ │ │ ├── Boolean.cs │ │ │ ├── Boolean.cs.gold │ │ │ ├── Byte.cs │ │ │ ├── Byte.cs.gold │ │ │ ├── Char.cs │ │ │ ├── Char.cs.gold │ │ │ ├── DateOnly.cs │ │ │ ├── DateOnly.cs.gold │ │ │ ├── DateTime.cs │ │ │ ├── DateTime.cs.gold │ │ │ ├── DateTimeOffset.cs │ │ │ ├── DateTimeOffset.cs.gold │ │ │ ├── Decimal.cs │ │ │ ├── Decimal.cs.gold │ │ │ ├── Double.cs │ │ │ ├── Double.cs.gold │ │ │ ├── Guid.cs │ │ │ ├── Guid.cs.gold │ │ │ ├── Half.cs │ │ │ ├── Half.cs.gold │ │ │ ├── Int128.cs │ │ │ ├── Int128.cs.gold │ │ │ ├── Int16.cs │ │ │ ├── Int16.cs.gold │ │ │ ├── Int32.cs │ │ │ ├── Int32.cs.gold │ │ │ ├── Int64.cs │ │ │ ├── Int64.cs.gold │ │ │ ├── IntPtr.cs │ │ │ ├── IntPtr.cs.gold │ │ │ ├── Math.cs │ │ │ ├── Math.cs.gold │ │ │ ├── QuickFixes │ │ │ │ ├── UseExpressionResultAlternativeFix.cs │ │ │ │ ├── UseExpressionResultAlternativeFix.cs.gold │ │ │ │ ├── UseExpressionResultAlternativeFix_Parenthesized.cs │ │ │ │ ├── UseExpressionResultAlternativeFix_Parenthesized.cs.gold │ │ │ │ ├── UseExpressionResultFix.cs │ │ │ │ ├── UseExpressionResultFix.cs.gold │ │ │ │ ├── UseExpressionResultFixAvailability.cs │ │ │ │ ├── UseExpressionResultFixAvailability.cs.gold │ │ │ │ ├── UseExpressionResultFixAvailability_CS11.cs │ │ │ │ ├── UseExpressionResultFixAvailability_CS11.cs.gold │ │ │ │ ├── UseExpressionResultFixAvailability_CS12.cs │ │ │ │ ├── UseExpressionResultFixAvailability_CS12.cs.gold │ │ │ │ ├── UseExpressionResultFix_NonParenthesized.cs │ │ │ │ ├── UseExpressionResultFix_NonParenthesized.cs.gold │ │ │ │ ├── UseExpressionResultFix_NonParenthesized_Unary.cs │ │ │ │ ├── UseExpressionResultFix_NonParenthesized_Unary.cs.gold │ │ │ │ ├── UseExpressionResultFix_Parenthesized.cs │ │ │ │ ├── UseExpressionResultFix_Parenthesized.cs.gold │ │ │ │ ├── UseExpressionResultFix_Parenthesized_Unary.cs │ │ │ │ └── UseExpressionResultFix_Parenthesized_Unary.cs.gold │ │ │ ├── Random.cs │ │ │ ├── Random.cs.gold │ │ │ ├── SByte.cs │ │ │ ├── SByte.cs.gold │ │ │ ├── Single.cs │ │ │ ├── Single.cs.gold │ │ │ ├── String.cs │ │ │ ├── String.cs.gold │ │ │ ├── TimeOnly.cs │ │ │ ├── TimeOnly.cs.gold │ │ │ ├── TimeSpan.cs │ │ │ ├── TimeSpan.cs.gold │ │ │ ├── TimeSpan_Net9.cs │ │ │ ├── TimeSpan_Net9.cs.gold │ │ │ ├── UInt128.cs │ │ │ ├── UInt128.cs.gold │ │ │ ├── UInt16.cs │ │ │ ├── UInt16.cs.gold │ │ │ ├── UInt32.cs │ │ │ ├── UInt32.cs.gold │ │ │ ├── UInt64.cs │ │ │ ├── UInt64.cs.gold │ │ │ ├── UIntPtr.cs │ │ │ └── UIntPtr.cs.gold │ │ ├── Formatter │ │ │ ├── Boolean.cs │ │ │ ├── Boolean.cs.gold │ │ │ ├── Byte.cs │ │ │ ├── Byte.cs.gold │ │ │ ├── CastEnum.cs │ │ │ ├── CastEnum.cs.gold │ │ │ ├── Char.cs │ │ │ ├── Char.cs.gold │ │ │ ├── DateOnly.cs │ │ │ ├── DateOnly.cs.gold │ │ │ ├── DateTime.cs │ │ │ ├── DateTime.cs.gold │ │ │ ├── DateTimeOffset.cs │ │ │ ├── DateTimeOffset.cs.gold │ │ │ ├── Decimal.cs │ │ │ ├── Decimal.cs.gold │ │ │ ├── Double.cs │ │ │ ├── Double.cs.gold │ │ │ ├── Enum.cs │ │ │ ├── Enum.cs.gold │ │ │ ├── Guid.cs │ │ │ ├── Guid.cs.gold │ │ │ ├── Half.cs │ │ │ ├── Half.cs.gold │ │ │ ├── Int128.cs │ │ │ ├── Int128.cs.gold │ │ │ ├── Int16.cs │ │ │ ├── Int16.cs.gold │ │ │ ├── Int32.cs │ │ │ ├── Int32.cs.gold │ │ │ ├── Int64.cs │ │ │ ├── Int64.cs.gold │ │ │ ├── IntPtr.cs │ │ │ ├── IntPtr.cs.gold │ │ │ ├── InterpolatedStringHandler.cs │ │ │ ├── InterpolatedStringHandler.cs.gold │ │ │ ├── QuickFixes │ │ │ │ ├── PassOtherFormatSpecifierAvailability.cs │ │ │ │ ├── PassOtherFormatSpecifierAvailability.cs.gold │ │ │ │ ├── PassOtherFormatSpecifier_StringFormat.cs │ │ │ │ ├── PassOtherFormatSpecifier_StringFormat.cs.gold │ │ │ │ ├── PassOtherFormatSpecifier_StringInterpolation.cs │ │ │ │ ├── PassOtherFormatSpecifier_StringInterpolation.cs.gold │ │ │ │ ├── PassOtherFormatSpecifier_ToString.cs │ │ │ │ ├── PassOtherFormatSpecifier_ToString.cs.gold │ │ │ │ ├── RemoveFormatPrecisionSpecifierAvailability.cs │ │ │ │ ├── RemoveFormatPrecisionSpecifierAvailability.cs.gold │ │ │ │ ├── RemoveFormatPrecisionSpecifier_StringFormat.cs │ │ │ │ ├── RemoveFormatPrecisionSpecifier_StringFormat.cs.gold │ │ │ │ ├── RemoveFormatPrecisionSpecifier_StringInterpolation.cs │ │ │ │ ├── RemoveFormatPrecisionSpecifier_StringInterpolation.cs.gold │ │ │ │ ├── RemoveFormatPrecisionSpecifier_ToString.cs │ │ │ │ ├── RemoveFormatPrecisionSpecifier_ToString.cs.gold │ │ │ │ ├── RemoveFormatProvider.cs │ │ │ │ ├── RemoveFormatProvider.cs.gold │ │ │ │ ├── RemoveFormatProviderFixAvailability.cs │ │ │ │ ├── RemoveFormatProviderFixAvailability.cs.gold │ │ │ │ ├── RemoveFormatSpecifierAvailability.cs │ │ │ │ ├── RemoveFormatSpecifierAvailability.cs.gold │ │ │ │ ├── RemoveFormatSpecifier_StringFormat.cs │ │ │ │ ├── RemoveFormatSpecifier_StringFormat.cs.gold │ │ │ │ ├── RemoveFormatSpecifier_StringInterpolation.cs │ │ │ │ ├── RemoveFormatSpecifier_StringInterpolation.cs.gold │ │ │ │ ├── RemoveFormatSpecifier_ToString.cs │ │ │ │ ├── RemoveFormatSpecifier_ToString.cs.gold │ │ │ │ ├── ReplaceTypeCastWithFormatSpecifier.cs │ │ │ │ ├── ReplaceTypeCastWithFormatSpecifier.cs.gold │ │ │ │ ├── ReplaceTypeCastWithFormatSpecifierAvailability.cs │ │ │ │ └── ReplaceTypeCastWithFormatSpecifierAvailability.cs.gold │ │ │ ├── SByte.cs │ │ │ ├── SByte.cs.gold │ │ │ ├── Single.cs │ │ │ ├── Single.cs.gold │ │ │ ├── String.cs │ │ │ ├── String.cs.gold │ │ │ ├── StringFormatters.cs │ │ │ ├── StringFormatters.cs.gold │ │ │ ├── TimeOnly.cs │ │ │ ├── TimeOnly.cs.gold │ │ │ ├── TimeSpan.cs │ │ │ ├── TimeSpan.cs.gold │ │ │ ├── UInt128.cs │ │ │ ├── UInt128.cs.gold │ │ │ ├── UInt16.cs │ │ │ ├── UInt16.cs.gold │ │ │ ├── UInt32.cs │ │ │ ├── UInt32.cs.gold │ │ │ ├── UInt64.cs │ │ │ ├── UInt64.cs.gold │ │ │ ├── UIntPtr.cs │ │ │ └── UIntPtr.cs.gold │ │ ├── InterfaceImplementation │ │ │ ├── ComparableTypes.cs │ │ │ ├── ComparableTypes.cs.gold │ │ │ ├── ComparableTypes_CS10.cs │ │ │ ├── ComparableTypes_CS10.cs.gold │ │ │ ├── ComparableTypes_NET_6.cs │ │ │ ├── ComparableTypes_NET_6.cs.gold │ │ │ ├── EquatableTypes.cs │ │ │ ├── EquatableTypes.cs.gold │ │ │ ├── EquatableTypes_CS10.cs │ │ │ ├── EquatableTypes_CS10.cs.gold │ │ │ ├── EquatableTypes_NET_6.cs │ │ │ ├── EquatableTypes_NET_6.cs.gold │ │ │ ├── ImplementedEquals.cs │ │ │ ├── ImplementedEquals.cs.gold │ │ │ ├── OverriddenEquals.cs │ │ │ ├── OverriddenEquals.cs.gold │ │ │ ├── PartialTypes.cs │ │ │ └── PartialTypes.cs.gold │ │ ├── InternalConstructor │ │ │ ├── InternalConstructor.cs │ │ │ ├── InternalConstructor.cs.gold │ │ │ └── QuickFixes │ │ │ │ ├── InternalConstructorAvailability.cs │ │ │ │ ├── InternalConstructorAvailability.cs.gold │ │ │ │ ├── InternalConstructorToPrivateProtected.cs │ │ │ │ ├── InternalConstructorToPrivateProtected.cs.gold │ │ │ │ ├── InternalConstructorToProtected.cs │ │ │ │ └── InternalConstructorToProtected.cs.gold │ │ ├── Linq │ │ │ ├── NoOpAsyncQuery.cs │ │ │ ├── NoOpAsyncQuery.cs.gold │ │ │ ├── NoOpQuery.cs │ │ │ ├── NoOpQuery.cs.gold │ │ │ └── QuickFixes │ │ │ │ ├── NoOpQuery.cs │ │ │ │ ├── NoOpQuery.cs.gold │ │ │ │ ├── NoOpQuery_Parenthesized.cs │ │ │ │ ├── NoOpQuery_Parenthesized.cs.gold │ │ │ │ ├── RemoveLinqQueryFixAvailability.cs │ │ │ │ └── RemoveLinqQueryFixAvailability.cs.gold │ │ ├── LocalSuppression │ │ │ ├── LocalSuppression.cs │ │ │ └── LocalSuppression.cs.gold │ │ ├── LockOnObjectWithWeakIdentity │ │ │ ├── LockOnObjectWithWeakIdentity.cs │ │ │ └── LockOnObjectWithWeakIdentity.cs.gold │ │ ├── MemberInvocation │ │ │ ├── Boolean.cs │ │ │ ├── Boolean.cs.gold │ │ │ ├── Byte.cs │ │ │ ├── Byte.cs.gold │ │ │ ├── Char.cs │ │ │ ├── Char.cs.gold │ │ │ ├── DateOnly.cs │ │ │ ├── DateOnly.cs.gold │ │ │ ├── DateTime.cs │ │ │ ├── DateTime.cs.gold │ │ │ ├── DateTimeOffset.cs │ │ │ ├── DateTimeOffset.cs.gold │ │ │ ├── Decimal.cs │ │ │ ├── Decimal.cs.gold │ │ │ ├── Double.cs │ │ │ ├── Double.cs.gold │ │ │ ├── Enumerable.cs │ │ │ ├── Enumerable.cs.gold │ │ │ ├── Guid.cs │ │ │ ├── Guid.cs.gold │ │ │ ├── Int128.cs │ │ │ ├── Int128.cs.gold │ │ │ ├── Int16.cs │ │ │ ├── Int16.cs.gold │ │ │ ├── Int32.cs │ │ │ ├── Int32.cs.gold │ │ │ ├── Int64.cs │ │ │ ├── Int64.cs.gold │ │ │ ├── IntPtr.cs │ │ │ ├── IntPtr.cs.gold │ │ │ ├── Nullable.cs │ │ │ ├── Nullable.cs.gold │ │ │ ├── QuickFixes │ │ │ │ ├── RemoveMethodInvocationFixAvailability.cs │ │ │ │ ├── RemoveMethodInvocationFixAvailability.cs.gold │ │ │ │ ├── RemoveMethodInvocation_Expression.cs │ │ │ │ ├── RemoveMethodInvocation_Expression.cs.gold │ │ │ │ ├── RemoveMethodInvocation_Expression_Chained.cs │ │ │ │ ├── RemoveMethodInvocation_Expression_Chained.cs.gold │ │ │ │ ├── RemoveMethodInvocation_Statement.cs │ │ │ │ ├── RemoveMethodInvocation_Statement.cs.gold │ │ │ │ ├── RemoveMethodInvocation_Statement_Chained.cs │ │ │ │ ├── RemoveMethodInvocation_Statement_Chained.cs.gold │ │ │ │ ├── ReplaceNullableValueWithTypeCastFix.cs │ │ │ │ ├── ReplaceNullableValueWithTypeCastFix.cs.gold │ │ │ │ ├── ReplaceNullableValueWithTypeCastFixAvailability.cs │ │ │ │ ├── ReplaceNullableValueWithTypeCastFixAvailability.cs.gold │ │ │ │ ├── ReplaceNullableValueWithTypeCastFix_Parenthesized.cs │ │ │ │ ├── ReplaceNullableValueWithTypeCastFix_Parenthesized.cs.gold │ │ │ │ ├── UseBinaryOperatorFix.cs │ │ │ │ ├── UseBinaryOperatorFix.cs.gold │ │ │ │ ├── UseBinaryOperatorFixAvailability.cs │ │ │ │ ├── UseBinaryOperatorFixAvailability.cs.gold │ │ │ │ ├── UseBinaryOperatorFix_OperandParenthesized.cs │ │ │ │ ├── UseBinaryOperatorFix_OperandParenthesized.cs.gold │ │ │ │ ├── UseBinaryOperatorFix_Parenthesized.cs │ │ │ │ ├── UseBinaryOperatorFix_Parenthesized.cs.gold │ │ │ │ ├── UseNullableHasValueAlternativeFixAvailability.cs │ │ │ │ ├── UseNullableHasValueAlternativeFixAvailability.cs.gold │ │ │ │ ├── UseNullableHasValueNotNullFix.cs │ │ │ │ ├── UseNullableHasValueNotNullFix.cs.gold │ │ │ │ ├── UseNullableHasValueNotNullFix_Parenthesized.cs │ │ │ │ ├── UseNullableHasValueNotNullFix_Parenthesized.cs.gold │ │ │ │ ├── UseNullableHasValueNotNullPatternFix.cs │ │ │ │ ├── UseNullableHasValueNotNullPatternFix.cs.gold │ │ │ │ ├── UseNullableHasValueNotNullPatternFix_Parenthesized.cs │ │ │ │ ├── UseNullableHasValueNotNullPatternFix_Parenthesized.cs.gold │ │ │ │ ├── UseNullableHasValueObjectPatternFix.cs │ │ │ │ ├── UseNullableHasValueObjectPatternFix.cs.gold │ │ │ │ ├── UseNullableHasValueObjectPatternFix_Parenthesized.cs │ │ │ │ ├── UseNullableHasValueObjectPatternFix_Parenthesized.cs.gold │ │ │ │ ├── UseNullableHasValueTuplePatternFix.cs │ │ │ │ ├── UseNullableHasValueTuplePatternFix.cs.gold │ │ │ │ ├── UseNullableHasValueTuplePatternFix_Parenthesized.cs │ │ │ │ ├── UseNullableHasValueTuplePatternFix_Parenthesized.cs.gold │ │ │ │ ├── UseOtherMethodFixAvailability.cs │ │ │ │ ├── UseOtherMethodFixAvailability.cs.gold │ │ │ │ ├── UseOtherMethodFix_LeftOperand.cs │ │ │ │ ├── UseOtherMethodFix_LeftOperand.cs.gold │ │ │ │ ├── UseOtherMethodFix_LeftOperand_Negated.cs │ │ │ │ ├── UseOtherMethodFix_LeftOperand_Negated.cs.gold │ │ │ │ ├── UseOtherMethodFix_RightOperand.cs │ │ │ │ ├── UseOtherMethodFix_RightOperand.cs.gold │ │ │ │ ├── UseOtherMethodFix_RightOperand_Negated.cs │ │ │ │ ├── UseOtherMethodFix_RightOperand_Negated.cs.gold │ │ │ │ ├── UseOtherMethodFix_Standalone.cs │ │ │ │ ├── UseOtherMethodFix_Standalone.cs.gold │ │ │ │ ├── UsePatternFix.cs │ │ │ │ ├── UsePatternFix.cs.gold │ │ │ │ ├── UsePatternFixAvailability.cs │ │ │ │ ├── UsePatternFixAvailability.cs.gold │ │ │ │ ├── UsePatternFix_Linq.cs │ │ │ │ ├── UsePatternFix_Linq.cs.gold │ │ │ │ ├── UsePatternFix_Linq_Exception.cs │ │ │ │ ├── UsePatternFix_Linq_Exception.cs.gold │ │ │ │ ├── UsePatternFix_Linq_Parenthesized_Inner.cs │ │ │ │ ├── UsePatternFix_Linq_Parenthesized_Inner.cs.gold │ │ │ │ ├── UsePatternFix_Linq_Parenthesized_Outer.cs │ │ │ │ ├── UsePatternFix_Linq_Parenthesized_Outer.cs.gold │ │ │ │ ├── UsePatternFix_Linq_SwitchExpression_List.cs │ │ │ │ ├── UsePatternFix_Linq_SwitchExpression_List.cs.gold │ │ │ │ ├── UsePatternFix_Linq_SwitchExpression_Parenthesized_Inner.cs │ │ │ │ ├── UsePatternFix_Linq_SwitchExpression_Parenthesized_Inner.cs.gold │ │ │ │ ├── UsePatternFix_Linq_SwitchExpression_Parenthesized_Outer.cs │ │ │ │ ├── UsePatternFix_Linq_SwitchExpression_Parenthesized_Outer.cs.gold │ │ │ │ ├── UsePatternFix_Linq_SwitchExpression_String.cs │ │ │ │ ├── UsePatternFix_Linq_SwitchExpression_String.cs.gold │ │ │ │ ├── UsePatternFix_Parenthesized_Inner.cs │ │ │ │ ├── UsePatternFix_Parenthesized_Inner.cs.gold │ │ │ │ ├── UsePatternFix_Parenthesized_Inner_RightMost.cs │ │ │ │ ├── UsePatternFix_Parenthesized_Inner_RightMost.cs.gold │ │ │ │ ├── UsePatternFix_Parenthesized_Inner_RightMost_Negated.cs │ │ │ │ ├── UsePatternFix_Parenthesized_Inner_RightMost_Negated.cs.gold │ │ │ │ ├── UsePatternFix_Parenthesized_Outer.cs │ │ │ │ ├── UsePatternFix_Parenthesized_Outer.cs.gold │ │ │ │ ├── UsePropertyAvailability.cs │ │ │ │ ├── UsePropertyAvailability.cs.gold │ │ │ │ ├── UsePropertyFix.cs │ │ │ │ ├── UsePropertyFix.cs.gold │ │ │ │ ├── UsePropertyFix_Extension_Cast.cs │ │ │ │ ├── UsePropertyFix_Extension_Cast.cs.gold │ │ │ │ ├── UsePropertyFix_Extension_Cast_Nullable.cs │ │ │ │ ├── UsePropertyFix_Extension_Cast_Nullable.cs.gold │ │ │ │ ├── UsePropertyFix_Extension_NoCast.cs │ │ │ │ ├── UsePropertyFix_Extension_NoCast.cs.gold │ │ │ │ ├── UsePropertyFix_Extension_NoCast_NonNullable.cs │ │ │ │ ├── UsePropertyFix_Extension_NoCast_NonNullable.cs.gold │ │ │ │ ├── UsePropertyFix_Extension_NoCast_Nullable.cs │ │ │ │ ├── UsePropertyFix_Extension_NoCast_Nullable.cs.gold │ │ │ │ ├── UsePropertyFix_Nullable.cs │ │ │ │ ├── UsePropertyFix_Nullable.cs.gold │ │ │ │ ├── UseRangeIndexerAvailability.cs │ │ │ │ ├── UseRangeIndexerAvailability.cs.gold │ │ │ │ ├── UseRangeIndexerFix.cs │ │ │ │ ├── UseRangeIndexerFix.cs.gold │ │ │ │ ├── UseRangeIndexerFix_Linq.cs │ │ │ │ ├── UseRangeIndexerFix_Linq.cs.gold │ │ │ │ ├── UseRangeIndexerFix_Linq_Nullable.cs │ │ │ │ ├── UseRangeIndexerFix_Linq_Nullable.cs.gold │ │ │ │ ├── UseRangeIndexerFix_Nullable.cs │ │ │ │ ├── UseRangeIndexerFix_Nullable.cs.gold │ │ │ │ ├── UseRangeIndexerFix_Parenthesized_LeftOperand.cs │ │ │ │ ├── UseRangeIndexerFix_Parenthesized_LeftOperand.cs.gold │ │ │ │ ├── UseRangeIndexerFix_Parenthesized_LeftOperand_Nullable.cs │ │ │ │ ├── UseRangeIndexerFix_Parenthesized_LeftOperand_Nullable.cs.gold │ │ │ │ ├── UseRangeIndexerFix_Parenthesized_RightOperand.cs │ │ │ │ ├── UseRangeIndexerFix_Parenthesized_RightOperand.cs.gold │ │ │ │ ├── UseRangeIndexerFix_Parenthesized_RightOperand_Nullable.cs │ │ │ │ ├── UseRangeIndexerFix_Parenthesized_RightOperand_Nullable.cs.gold │ │ │ │ ├── UseStaticPropertyAvailability.cs │ │ │ │ ├── UseStaticPropertyAvailability.cs.gold │ │ │ │ ├── UseStaticPropertyFix.cs │ │ │ │ ├── UseStaticPropertyFix.cs.gold │ │ │ │ ├── UseStaticPropertyFix_StaticImport.cs │ │ │ │ ├── UseStaticPropertyFix_StaticImport.cs.gold │ │ │ │ ├── UseUnaryOperatorFix.cs │ │ │ │ ├── UseUnaryOperatorFix.cs.gold │ │ │ │ ├── UseUnaryOperatorFixAvailability.cs │ │ │ │ ├── UseUnaryOperatorFixAvailability.cs.gold │ │ │ │ ├── UseUnaryOperatorFix_OperandParenthesized.cs │ │ │ │ ├── UseUnaryOperatorFix_OperandParenthesized.cs.gold │ │ │ │ ├── UseUnaryOperatorFix_Parenthesized.cs │ │ │ │ └── UseUnaryOperatorFix_Parenthesized.cs.gold │ │ │ ├── SByte.cs │ │ │ ├── SByte.cs.gold │ │ │ ├── Single.cs │ │ │ ├── Single.cs.gold │ │ │ ├── String.cs │ │ │ ├── String.cs.gold │ │ │ ├── StringBuilder.cs │ │ │ ├── StringBuilder.cs.gold │ │ │ ├── TimeOnly.cs │ │ │ ├── TimeOnly.cs.gold │ │ │ ├── TimeSpan.cs │ │ │ ├── TimeSpan.cs.gold │ │ │ ├── UInt128.cs │ │ │ ├── UInt128.cs.gold │ │ │ ├── UInt16.cs │ │ │ ├── UInt16.cs.gold │ │ │ ├── UInt32.cs │ │ │ ├── UInt32.cs.gold │ │ │ ├── UInt64.cs │ │ │ ├── UInt64.cs.gold │ │ │ ├── UIntPtr.cs │ │ │ └── UIntPtr.cs.gold │ │ ├── NotifyPropertyChangedInvocatorFromConstructor │ │ │ ├── NotifyPropertyChangedInvocatorFromConstructor.cs │ │ │ ├── NotifyPropertyChangedInvocatorFromConstructor.cs.gold │ │ │ └── QuickFixes │ │ │ │ ├── NotifyPropertyChangedInvocatorFromConstructor.cs │ │ │ │ ├── NotifyPropertyChangedInvocatorFromConstructor.cs.gold │ │ │ │ ├── NotifyPropertyChangedInvocatorFromConstructorAvailability.cs │ │ │ │ └── NotifyPropertyChangedInvocatorFromConstructorAvailability.cs.gold │ │ ├── Region │ │ │ ├── RegionWithSingleElement.cs │ │ │ ├── RegionWithSingleElement.cs.gold │ │ │ ├── RegionWithSingleElement_FileScopedNamespace.cs │ │ │ ├── RegionWithSingleElement_FileScopedNamespace.cs.gold │ │ │ ├── RegionWithinTypeMemberBody.cs │ │ │ └── RegionWithinTypeMemberBody.cs.gold │ │ ├── ThrowExceptionInUnexpectedLocation │ │ │ ├── ThrowExceptionInUnexpectedLocation.cs │ │ │ ├── ThrowExceptionInUnexpectedLocation.cs.gold │ │ │ ├── ThrowExceptionInUnexpectedLocation_ExceptionHandling.cs │ │ │ ├── ThrowExceptionInUnexpectedLocation_ExceptionHandling.cs.gold │ │ │ ├── ThrowExceptionInUnexpectedLocation_NullableAnnotationContext.cs │ │ │ ├── ThrowExceptionInUnexpectedLocation_NullableAnnotationContext.cs.gold │ │ │ ├── ThrowExceptionInUnexpectedLocation_UnreachableException.cs │ │ │ └── ThrowExceptionInUnexpectedLocation_UnreachableException.cs.gold │ │ ├── UncatchableException │ │ │ ├── UncatchableException.cs │ │ │ └── UncatchableException.cs.gold │ │ ├── UnthrowableException │ │ │ ├── UnthrowableException.cs │ │ │ └── UnthrowableException.cs.gold │ │ ├── ValueTask │ │ │ ├── CodePaths.cs │ │ │ ├── CodePaths.cs.gold │ │ │ ├── IntentionalBlockingAttempts.cs │ │ │ ├── IntentionalBlockingAttempts.cs.gold │ │ │ ├── MultipleConsumption.cs │ │ │ ├── MultipleConsumption.cs.gold │ │ │ ├── QuickFixes │ │ │ │ ├── InsertAsTask.cs │ │ │ │ ├── InsertAsTask.cs.gold │ │ │ │ ├── IntentionalBlockingAttemptsAvailability.cs │ │ │ │ └── IntentionalBlockingAttemptsAvailability.cs.gold │ │ │ ├── SingleConsumption.cs │ │ │ └── SingleConsumption.cs.gold │ │ ├── XamlBindingWithoutMode │ │ │ ├── XamlBindingWithoutMode.xaml │ │ │ └── XamlBindingWithoutMode.xaml.gold │ │ └── YieldReturnWithinLock │ │ │ ├── YieldReturnWithinLock.cs │ │ │ ├── YieldReturnWithinLock.cs.gold │ │ │ ├── YieldReturnWithinLockAroundLockObject.cs │ │ │ └── YieldReturnWithinLockAroundLockObject.cs.gold │ └── ContextActions │ │ ├── AnnotateWithAttributeUsage │ │ ├── Availability.cs │ │ ├── Execute.cs │ │ └── Execute.cs.gold │ │ ├── AnnotateWithDefaultEqualityUsage │ │ ├── Availability.cs │ │ ├── ExecuteClassTypeParameter.cs │ │ ├── ExecuteClassTypeParameter.cs.gold │ │ ├── ExecuteMethodParameter.cs │ │ ├── ExecuteMethodParameter.cs.gold │ │ ├── ExecuteMethodReturnValue.cs │ │ ├── ExecuteMethodReturnValue.cs.gold │ │ ├── ExecuteMethodTypeParameter.cs │ │ ├── ExecuteMethodTypeParameter.cs.gold │ │ ├── ExecutePositionalRecordParameter.cs │ │ ├── ExecutePositionalRecordParameter.cs.gold │ │ ├── ExecutePrimaryConstructorParameter.cs │ │ └── ExecutePrimaryConstructorParameter.cs.gold │ │ ├── AnnotateWithEditorBrowsableNever │ │ ├── Availability.cs │ │ ├── Execute.cs │ │ └── Execute.cs.gold │ │ ├── AnnotateWithHandlesResourceDisposal │ │ ├── AvailabilityFields.cs │ │ ├── AvailabilityMethods.cs │ │ ├── AvailabilityParameters.cs │ │ ├── AvailabilityProperties.cs │ │ ├── ExecuteField.cs │ │ ├── ExecuteField.cs.gold │ │ ├── ExecuteMethod.cs │ │ ├── ExecuteMethod.cs.gold │ │ ├── ExecuteParameter.cs │ │ ├── ExecuteParameter.cs.gold │ │ ├── ExecuteProperty.cs │ │ └── ExecuteProperty.cs.gold │ │ ├── AnnotateWithIgnoreSpellingAndGrammarErrors │ │ ├── Availability.cs │ │ ├── Execute.cs │ │ └── Execute.cs.gold │ │ ├── AnnotateWithInstantHandle │ │ ├── AvailabilityAsyncEnumerableCS80.cs │ │ ├── AvailabilityAsyncEnumerableCS90.cs │ │ ├── AvailabilityCS80.cs │ │ ├── AvailabilityCS90.cs │ │ ├── AvailabilityLambdaCS100.cs │ │ ├── AvailabilityLambdaCS90.cs │ │ ├── ExecuteAsyncEnumerable.cs │ │ ├── ExecuteAsyncEnumerable.cs.gold │ │ ├── ExecuteDelegate.cs │ │ ├── ExecuteDelegate.cs.gold │ │ ├── ExecuteGenericEnumerable.cs │ │ ├── ExecuteGenericEnumerable.cs.gold │ │ ├── ExecuteLambda.cs │ │ ├── ExecuteLambda.cs.gold │ │ ├── ExecuteLambda2.cs │ │ └── ExecuteLambda2.cs.gold │ │ ├── AnnotateWithItemNotNull │ │ ├── Availability.cs │ │ ├── AvailabilityNullableAnnotationContext.cs │ │ ├── ExecuteArrayOnMethod.cs │ │ ├── ExecuteArrayOnMethod.cs.gold │ │ ├── ExecuteGenericCollectionOnParameter.cs │ │ ├── ExecuteGenericCollectionOnParameter.cs.gold │ │ ├── ExecuteGenericListOnIndexer.cs │ │ ├── ExecuteGenericListOnIndexer.cs.gold │ │ ├── ExecuteGenericListOnParameter.cs │ │ ├── ExecuteGenericListOnParameter.cs.gold │ │ ├── ExecuteGenericListOnProperty.cs │ │ ├── ExecuteGenericListOnProperty.cs.gold │ │ ├── ExecuteGenericTaskOnMethod.cs │ │ ├── ExecuteGenericTaskOnMethod.cs.gold │ │ ├── ExecuteGenericValueTaskOnMethod.cs │ │ ├── ExecuteGenericValueTaskOnMethod.cs.gold │ │ ├── ExecuteJaggedArrayOnField.cs │ │ ├── ExecuteJaggedArrayOnField.cs.gold │ │ ├── ExecuteLazyOnDelegate.cs │ │ ├── ExecuteLazyOnDelegate.cs.gold │ │ ├── ExecuteMultiDimensionalArrayOnField.cs │ │ └── ExecuteMultiDimensionalArrayOnField.cs.gold │ │ ├── AnnotateWithLinqTunnel │ │ ├── Availability.cs │ │ ├── AvailabilityAsyncEnumerable.cs │ │ ├── Execute.cs │ │ ├── Execute.cs.gold │ │ ├── ExecuteAsyncEnumerable.cs │ │ └── ExecuteAsyncEnumerable.cs.gold │ │ ├── AnnotateWithMustDisposeResource │ │ ├── AvailabilityConstructors.cs │ │ ├── AvailabilityConstructors_Legacy.cs │ │ ├── AvailabilityLocalFunctions.cs │ │ ├── AvailabilityMethods.cs │ │ ├── AvailabilityParameters.cs │ │ ├── AvailabilityPrimaryConstructors.cs │ │ ├── AvailabilityPrimaryConstructors_Legacy.cs │ │ ├── AvailabilityTypes.cs │ │ ├── AvailabilityTypes_Legacy.cs │ │ ├── ExecuteConstructor.cs │ │ ├── ExecuteConstructor.cs.gold │ │ ├── ExecuteMethod.cs │ │ ├── ExecuteMethod.cs.gold │ │ ├── ExecuteMethod_Multiple.cs │ │ ├── ExecuteMethod_Multiple.cs.gold │ │ ├── ExecuteMethod_MustDisposeResourceFalse.cs │ │ ├── ExecuteMethod_MustDisposeResourceFalse.cs.gold │ │ ├── ExecuteMethod_MustUseReturnValue.cs │ │ ├── ExecuteMethod_MustUseReturnValue.cs.gold │ │ ├── ExecuteMethod_Pure.cs │ │ ├── ExecuteMethod_Pure.cs.gold │ │ ├── ExecuteParameter.cs │ │ ├── ExecuteParameter.cs.gold │ │ ├── ExecutePrimaryConstructor.cs │ │ ├── ExecutePrimaryConstructor.cs.gold │ │ ├── ExecuteType.cs │ │ ├── ExecuteType.cs.gold │ │ ├── ExecuteType_AnnotatedPrimaryConstructor.cs │ │ └── ExecuteType_AnnotatedPrimaryConstructor.cs.gold │ │ ├── AnnotateWithMustDisposeResourceFalse │ │ ├── AvailabilityConstructors.cs │ │ ├── AvailabilityConstructors_Legacy.cs │ │ ├── AvailabilityLocalFunctions.cs │ │ ├── AvailabilityMethods.cs │ │ ├── AvailabilityParameters.cs │ │ ├── AvailabilityPrimaryConstructors.cs │ │ ├── AvailabilityPrimaryConstructors_Legacy.cs │ │ ├── AvailabilityTypes.cs │ │ ├── AvailabilityTypes_Legacy.cs │ │ ├── ExecuteConstructor.cs │ │ ├── ExecuteConstructor.cs.gold │ │ ├── ExecuteMethod.cs │ │ ├── ExecuteMethod.cs.gold │ │ ├── ExecuteMethod_Multiple.cs │ │ ├── ExecuteMethod_Multiple.cs.gold │ │ ├── ExecuteMethod_MustDisposeResource.cs │ │ ├── ExecuteMethod_MustDisposeResource.cs.gold │ │ ├── ExecuteMethod_MustUseReturnValue.cs │ │ ├── ExecuteMethod_MustUseReturnValue.cs.gold │ │ ├── ExecuteMethod_Pure.cs │ │ ├── ExecuteMethod_Pure.cs.gold │ │ ├── ExecuteParameter.cs │ │ ├── ExecuteParameter.cs.gold │ │ ├── ExecutePrimaryConstructor.cs │ │ ├── ExecutePrimaryConstructor.cs.gold │ │ ├── ExecuteType.cs │ │ └── ExecuteType.cs.gold │ │ ├── AnnotateWithMustUseReturnValue │ │ ├── AvailabilityLocalFunctions.cs │ │ ├── AvailabilityMethods.cs │ │ ├── ExecuteMethod.cs │ │ ├── ExecuteMethod.cs.gold │ │ ├── ExecuteMethod_MustDisposeResource.cs │ │ ├── ExecuteMethod_MustDisposeResource.cs.gold │ │ ├── ExecuteMethod_Pure.cs │ │ └── ExecuteMethod_Pure.cs.gold │ │ ├── AnnotateWithNonNegativeValue │ │ ├── Availability.cs │ │ ├── AvailabilityLambda.cs │ │ ├── Execute.cs │ │ ├── Execute.cs.gold │ │ ├── ExecuteLambda.cs │ │ ├── ExecuteLambda.cs.gold │ │ ├── ExecuteLambda2.cs │ │ └── ExecuteLambda2.cs.gold │ │ ├── AnnotateWithPure │ │ ├── AvailabilityLocalFunctions.cs │ │ ├── AvailabilityMethods.cs │ │ ├── ExecuteMethod.cs │ │ ├── ExecuteMethod.cs.gold │ │ ├── ExecuteMethod_MustDisposeResource.cs │ │ ├── ExecuteMethod_MustDisposeResource.cs.gold │ │ ├── ExecuteMethod_MustUseReturnValue.cs │ │ └── ExecuteMethod_MustUseReturnValue.cs.gold │ │ ├── AnnotateWithValueRange │ │ ├── Availability.cs │ │ ├── AvailabilityLambda.cs │ │ ├── Execute.cs │ │ ├── Execute.cs.gold │ │ ├── ExecuteLambda.cs │ │ ├── ExecuteLambda.cs.gold │ │ ├── ExecuteLambda2.cs │ │ └── ExecuteLambda2.cs.gold │ │ ├── CodeContracts │ │ ├── Elements │ │ │ ├── Field │ │ │ │ ├── Availability.cs │ │ │ │ ├── ExecuteWithContractInvariantMethod.cs │ │ │ │ ├── ExecuteWithContractInvariantMethod.cs.gold │ │ │ │ ├── ExecuteWithoutContractInvariantMethod.cs │ │ │ │ └── ExecuteWithoutContractInvariantMethod.cs.gold │ │ │ ├── Method │ │ │ │ ├── Availability.cs │ │ │ │ ├── ExecuteWithAbstractMethod.cs │ │ │ │ ├── ExecuteWithAbstractMethod.cs.gold │ │ │ │ ├── ExecuteWithAbstractMethod2.cs │ │ │ │ ├── ExecuteWithAbstractMethod2.cs.gold │ │ │ │ ├── ExecuteWithAbstractMethod3.cs │ │ │ │ ├── ExecuteWithAbstractMethod3.cs.gold │ │ │ │ ├── ExecuteWithEmptyMethod.cs │ │ │ │ ├── ExecuteWithEmptyMethod.cs.gold │ │ │ │ ├── ExecuteWithInterfaceMethod.cs │ │ │ │ ├── ExecuteWithInterfaceMethod.cs.gold │ │ │ │ ├── ExecuteWithNonEmptyMethod.cs │ │ │ │ ├── ExecuteWithNonEmptyMethod.cs.gold │ │ │ │ ├── ExecuteWithNonEmptyMethod2.cs │ │ │ │ ├── ExecuteWithNonEmptyMethod2.cs.gold │ │ │ │ ├── ExecuteWithNonEmptyMethod3.cs │ │ │ │ └── ExecuteWithNonEmptyMethod3.cs.gold │ │ │ ├── Operator │ │ │ │ ├── Availability.cs │ │ │ │ ├── ExecuteConversion.cs │ │ │ │ ├── ExecuteConversion.cs.gold │ │ │ │ ├── ExecuteOverload.cs │ │ │ │ ├── ExecuteOverload.cs.gold │ │ │ │ ├── ExecuteOverloadNonEmpty.cs │ │ │ │ └── ExecuteOverloadNonEmpty.cs.gold │ │ │ ├── Parameter │ │ │ │ ├── Availability.cs │ │ │ │ ├── ExecuteWithAbstractIndexer.cs │ │ │ │ ├── ExecuteWithAbstractIndexer.cs.gold │ │ │ │ ├── ExecuteWithAbstractMethod.cs │ │ │ │ ├── ExecuteWithAbstractMethod.cs.gold │ │ │ │ ├── ExecuteWithEmptyMethod.cs │ │ │ │ ├── ExecuteWithEmptyMethod.cs.gold │ │ │ │ ├── ExecuteWithIndexer.cs │ │ │ │ ├── ExecuteWithIndexer.cs.gold │ │ │ │ ├── ExecuteWithInterfaceIndexer.cs │ │ │ │ ├── ExecuteWithInterfaceIndexer.cs.gold │ │ │ │ ├── ExecuteWithInterfaceMethod.cs │ │ │ │ ├── ExecuteWithInterfaceMethod.cs.gold │ │ │ │ ├── ExecuteWithNonEmptyMethod.cs │ │ │ │ ├── ExecuteWithNonEmptyMethod.cs.gold │ │ │ │ ├── ExecuteWithNonEmptyMethod2.cs │ │ │ │ ├── ExecuteWithNonEmptyMethod2.cs.gold │ │ │ │ ├── ExecuteWithNonEmptyMethod3.cs │ │ │ │ ├── ExecuteWithNonEmptyMethod3.cs.gold │ │ │ │ ├── ExecuteWithOutParameter.cs │ │ │ │ ├── ExecuteWithOutParameter.cs.gold │ │ │ │ ├── ExecuteWithRefParameter.cs │ │ │ │ └── ExecuteWithRefParameter.cs.gold │ │ │ └── Property │ │ │ │ ├── Availability.cs │ │ │ │ ├── Execute.cs │ │ │ │ ├── Execute.cs.gold │ │ │ │ ├── ExecuteAutoProperty.cs │ │ │ │ ├── ExecuteAutoProperty.cs.gold │ │ │ │ ├── ExecuteReadOnlyProperty.cs │ │ │ │ ├── ExecuteReadOnlyProperty.cs.gold │ │ │ │ ├── ExecuteWithAbstractIndexer.cs │ │ │ │ ├── ExecuteWithAbstractIndexer.cs.gold │ │ │ │ ├── ExecuteWithAbstractIndexer2.cs │ │ │ │ ├── ExecuteWithAbstractIndexer2.cs.gold │ │ │ │ ├── ExecuteWithAbstractIndexer3.cs │ │ │ │ ├── ExecuteWithAbstractIndexer3.cs.gold │ │ │ │ ├── ExecuteWithAbstractIndexer4.cs │ │ │ │ ├── ExecuteWithAbstractIndexer4.cs.gold │ │ │ │ ├── ExecuteWithAbstractProperty.cs │ │ │ │ ├── ExecuteWithAbstractProperty.cs.gold │ │ │ │ ├── ExecuteWithAbstractProperty2.cs │ │ │ │ ├── ExecuteWithAbstractProperty2.cs.gold │ │ │ │ ├── ExecuteWithAbstractProperty3.cs │ │ │ │ ├── ExecuteWithAbstractProperty3.cs.gold │ │ │ │ ├── ExecuteWithAbstractProperty4.cs │ │ │ │ ├── ExecuteWithAbstractProperty4.cs.gold │ │ │ │ ├── ExecuteWithIndexer.cs │ │ │ │ ├── ExecuteWithIndexer.cs.gold │ │ │ │ ├── ExecuteWithInterfaceIndexer.cs │ │ │ │ ├── ExecuteWithInterfaceIndexer.cs.gold │ │ │ │ ├── ExecuteWithInterfaceProperty.cs │ │ │ │ ├── ExecuteWithInterfaceProperty.cs.gold │ │ │ │ ├── ExecuteWithReadOnlyIndexer.cs │ │ │ │ ├── ExecuteWithReadOnlyIndexer.cs.gold │ │ │ │ ├── ExecuteWithWriteOnlyIndexer.cs │ │ │ │ ├── ExecuteWithWriteOnlyIndexer.cs.gold │ │ │ │ ├── ExecuteWriteOnlyProperty.cs │ │ │ │ └── ExecuteWriteOnlyProperty.cs.gold │ │ └── Types │ │ │ ├── CollectionAllItemsNotNull │ │ │ ├── Availability.cs │ │ │ ├── ExecuteArray.cs │ │ │ ├── ExecuteArray.cs.gold │ │ │ ├── ExecuteCollection.cs │ │ │ ├── ExecuteCollection.cs.gold │ │ │ ├── ExecuteDictionary.cs │ │ │ ├── ExecuteDictionary.cs.gold │ │ │ ├── ExecuteGenericCollection.cs │ │ │ └── ExecuteGenericCollection.cs.gold │ │ │ ├── CollectionCountPositive │ │ │ ├── Availability.cs │ │ │ ├── ExecuteArray.cs │ │ │ ├── ExecuteArray.cs.gold │ │ │ ├── ExecuteArrayType.cs │ │ │ ├── ExecuteArrayType.cs.gold │ │ │ ├── ExecuteCollection.cs │ │ │ ├── ExecuteCollection.cs.gold │ │ │ ├── ExecuteDictionary.cs │ │ │ ├── ExecuteDictionary.cs.gold │ │ │ ├── ExecuteGenericCollection.cs │ │ │ └── ExecuteGenericCollection.cs.gold │ │ │ ├── DateTimeTimeOfDayZero │ │ │ ├── Availability.cs │ │ │ ├── Execute.cs │ │ │ └── Execute.cs.gold │ │ │ ├── EnumBetweenFirstAndLast │ │ │ ├── Availability.cs │ │ │ ├── Execute.cs │ │ │ └── Execute.cs.gold │ │ │ ├── EnumFlags │ │ │ ├── Availability.cs │ │ │ ├── ExecuteWithZero.cs │ │ │ ├── ExecuteWithZero.cs.gold │ │ │ ├── ExecuteWithZeroSingleMember.cs │ │ │ ├── ExecuteWithZeroSingleMember.cs.gold │ │ │ ├── ExecuteWithoutZero.cs │ │ │ └── ExecuteWithoutZero.cs.gold │ │ │ ├── EnumKnownValues │ │ │ ├── Availability.cs │ │ │ ├── ExecuteFourMembers.cs │ │ │ ├── ExecuteFourMembers.cs.gold │ │ │ ├── ExecuteTwoMembers.cs │ │ │ └── ExecuteTwoMembers.cs.gold │ │ │ ├── GuidNonEmpty │ │ │ ├── Availability.cs │ │ │ ├── Execute.cs │ │ │ └── Execute.cs.gold │ │ │ ├── IntPtrUIntPtrNonZero │ │ │ ├── Availability.cs │ │ │ ├── ExecuteIntPtr.cs │ │ │ ├── ExecuteIntPtr.cs.gold │ │ │ ├── ExecuteUIntPtr.cs │ │ │ └── ExecuteUIntPtr.cs.gold │ │ │ ├── IntPtrUIntPtrZero │ │ │ ├── Availability.cs │ │ │ ├── ExecuteIntPtr.cs │ │ │ ├── ExecuteIntPtr.cs.gold │ │ │ ├── ExecuteUIntPtr.cs │ │ │ └── ExecuteUIntPtr.cs.gold │ │ │ ├── NotNull │ │ │ ├── Availability.cs │ │ │ ├── Execute.cs │ │ │ └── Execute.cs.gold │ │ │ ├── NumericPositive │ │ │ ├── Availability.cs │ │ │ ├── ExecuteByte.cs │ │ │ ├── ExecuteByte.cs.gold │ │ │ ├── ExecuteDecimal.cs │ │ │ ├── ExecuteDecimal.cs.gold │ │ │ ├── ExecuteDouble.cs │ │ │ ├── ExecuteDouble.cs.gold │ │ │ ├── ExecuteFloat.cs │ │ │ ├── ExecuteFloat.cs.gold │ │ │ ├── ExecuteInt.cs │ │ │ ├── ExecuteInt.cs.gold │ │ │ ├── ExecuteLong.cs │ │ │ ├── ExecuteLong.cs.gold │ │ │ ├── ExecuteSbyte.cs │ │ │ ├── ExecuteSbyte.cs.gold │ │ │ ├── ExecuteShort.cs │ │ │ ├── ExecuteShort.cs.gold │ │ │ ├── ExecuteUInt.cs │ │ │ ├── ExecuteUInt.cs.gold │ │ │ ├── ExecuteUlong.cs │ │ │ ├── ExecuteUlong.cs.gold │ │ │ ├── ExecuteUshort.cs │ │ │ └── ExecuteUshort.cs.gold │ │ │ ├── NumericZero │ │ │ ├── Availability.cs │ │ │ ├── ExecuteByte.cs │ │ │ ├── ExecuteByte.cs.gold │ │ │ ├── ExecuteDecimal.cs │ │ │ ├── ExecuteDecimal.cs.gold │ │ │ ├── ExecuteDouble.cs │ │ │ ├── ExecuteDouble.cs.gold │ │ │ ├── ExecuteFloat.cs │ │ │ ├── ExecuteFloat.cs.gold │ │ │ ├── ExecuteInt.cs │ │ │ ├── ExecuteInt.cs.gold │ │ │ ├── ExecuteLong.cs │ │ │ ├── ExecuteLong.cs.gold │ │ │ ├── ExecuteSbyte.cs │ │ │ ├── ExecuteSbyte.cs.gold │ │ │ ├── ExecuteShort.cs │ │ │ ├── ExecuteShort.cs.gold │ │ │ ├── ExecuteUInt.cs │ │ │ ├── ExecuteUInt.cs.gold │ │ │ ├── ExecuteUlong.cs │ │ │ ├── ExecuteUlong.cs.gold │ │ │ ├── ExecuteUshort.cs │ │ │ └── ExecuteUshort.cs.gold │ │ │ ├── SignedNumericNegative │ │ │ ├── Availability.cs │ │ │ ├── ExecuteDecimal.cs │ │ │ ├── ExecuteDecimal.cs.gold │ │ │ ├── ExecuteDouble.cs │ │ │ ├── ExecuteDouble.cs.gold │ │ │ ├── ExecuteFloat.cs │ │ │ ├── ExecuteFloat.cs.gold │ │ │ ├── ExecuteInt.cs │ │ │ ├── ExecuteInt.cs.gold │ │ │ ├── ExecuteLong.cs │ │ │ ├── ExecuteLong.cs.gold │ │ │ ├── ExecuteSbyte.cs │ │ │ ├── ExecuteSbyte.cs.gold │ │ │ ├── ExecuteShort.cs │ │ │ └── ExecuteShort.cs.gold │ │ │ ├── SignedNumericNonZero │ │ │ ├── Availability.cs │ │ │ ├── ExecuteDecimal.cs │ │ │ ├── ExecuteDecimal.cs.gold │ │ │ ├── ExecuteDouble.cs │ │ │ ├── ExecuteDouble.cs.gold │ │ │ ├── ExecuteFloat.cs │ │ │ ├── ExecuteFloat.cs.gold │ │ │ ├── ExecuteInt.cs │ │ │ ├── ExecuteInt.cs.gold │ │ │ ├── ExecuteLong.cs │ │ │ ├── ExecuteLong.cs.gold │ │ │ ├── ExecuteSbyte.cs │ │ │ ├── ExecuteSbyte.cs.gold │ │ │ ├── ExecuteShort.cs │ │ │ └── ExecuteShort.cs.gold │ │ │ ├── SignedNumericZeroOrNegative │ │ │ ├── Availability.cs │ │ │ ├── ExecuteDecimal.cs │ │ │ ├── ExecuteDecimal.cs.gold │ │ │ ├── ExecuteDouble.cs │ │ │ ├── ExecuteDouble.cs.gold │ │ │ ├── ExecuteFloat.cs │ │ │ ├── ExecuteFloat.cs.gold │ │ │ ├── ExecuteInt.cs │ │ │ ├── ExecuteInt.cs.gold │ │ │ ├── ExecuteLong.cs │ │ │ ├── ExecuteLong.cs.gold │ │ │ ├── ExecuteSbyte.cs │ │ │ ├── ExecuteSbyte.cs.gold │ │ │ ├── ExecuteShort.cs │ │ │ └── ExecuteShort.cs.gold │ │ │ ├── SignedNumericZeroOrPositive │ │ │ ├── Availability.cs │ │ │ ├── ExecuteDecimal.cs │ │ │ ├── ExecuteDecimal.cs.gold │ │ │ ├── ExecuteDouble.cs │ │ │ ├── ExecuteDouble.cs.gold │ │ │ ├── ExecuteFloat.cs │ │ │ ├── ExecuteFloat.cs.gold │ │ │ ├── ExecuteInt.cs │ │ │ ├── ExecuteInt.cs.gold │ │ │ ├── ExecuteLong.cs │ │ │ ├── ExecuteLong.cs.gold │ │ │ ├── ExecuteSbyte.cs │ │ │ ├── ExecuteSbyte.cs.gold │ │ │ ├── ExecuteShort.cs │ │ │ └── ExecuteShort.cs.gold │ │ │ ├── StringNotNullAndNotEmpty │ │ │ ├── Availability.cs │ │ │ ├── Execute.cs │ │ │ └── Execute.cs.gold │ │ │ ├── TimeSpanNegative │ │ │ ├── Availability.cs │ │ │ ├── Execute.cs │ │ │ └── Execute.cs.gold │ │ │ ├── TimeSpanNonZero │ │ │ ├── Availability.cs │ │ │ ├── Execute.cs │ │ │ └── Execute.cs.gold │ │ │ ├── TimeSpanPositive │ │ │ ├── Availability.cs │ │ │ ├── Execute.cs │ │ │ └── Execute.cs.gold │ │ │ ├── TimeSpanZero │ │ │ ├── Availability.cs │ │ │ ├── Execute.cs │ │ │ └── Execute.cs.gold │ │ │ ├── TimeSpanZeroOrNegative │ │ │ ├── Availability.cs │ │ │ ├── Execute.cs │ │ │ └── Execute.cs.gold │ │ │ └── TimeSpanZeroOrPositive │ │ │ ├── Availability.cs │ │ │ ├── Execute.cs │ │ │ └── Execute.cs.gold │ │ ├── ConvertToLinqQuery │ │ ├── Availability_Array.cs │ │ ├── Availability_Array_NoCollectionExpressions.cs │ │ ├── Availability_HashSet.cs │ │ ├── Availability_HashSet_NoCollectionExpressions.cs │ │ ├── Availability_IAsyncEnumerable.cs │ │ ├── Availability_ICollection.cs │ │ ├── Availability_ICollection_NoCollectionExpressions.cs │ │ ├── Availability_IEnumerable.cs │ │ ├── Availability_IEnumerable_NoCollectionExpressions.cs │ │ ├── Availability_IList.cs │ │ ├── Availability_IList_NoCollectionExpressions.cs │ │ ├── Availability_IReadOnlyCollection.cs │ │ ├── Availability_IReadOnlyCollection_NoCollectionExpressions.cs │ │ ├── Availability_IReadOnlyList.cs │ │ ├── Availability_IReadOnlyList_NoCollectionExpressions.cs │ │ ├── Availability_List.cs │ │ ├── Availability_List_NoCollectionExpressions.cs │ │ ├── Execute_Array.cs │ │ ├── Execute_Array.cs.gold │ │ ├── Execute_Array_Target_Array_CollectionExpression.cs │ │ ├── Execute_Array_Target_Array_CollectionExpression.cs.gold │ │ ├── Execute_Array_Target_IEnumerable.cs │ │ ├── Execute_Array_Target_IEnumerable.cs.gold │ │ ├── Execute_Array_Target_IList_CollectionExpression.cs │ │ ├── Execute_Array_Target_IList_CollectionExpression.cs.gold │ │ ├── Execute_HashSet.cs │ │ ├── Execute_HashSet.cs.gold │ │ ├── Execute_HashSet_Target_ICollection_CollectionExpression.cs │ │ ├── Execute_HashSet_Target_ICollection_CollectionExpression.cs.gold │ │ ├── Execute_IAsyncEnumerable.cs │ │ ├── Execute_IAsyncEnumerable.cs.gold │ │ ├── Execute_IAsyncEnumerable_Fluent.cs │ │ ├── Execute_IAsyncEnumerable_Fluent.cs.gold │ │ ├── Execute_IAsyncEnumerable_Generic.cs │ │ ├── Execute_IAsyncEnumerable_Generic.cs.gold │ │ ├── Execute_ICollection_Spread.cs │ │ ├── Execute_ICollection_Spread.cs.gold │ │ ├── Execute_ICollection_Target_IEnumerable.cs │ │ ├── Execute_ICollection_Target_IEnumerable.cs.gold │ │ ├── Execute_IEnumerable.cs │ │ ├── Execute_IEnumerable.cs.gold │ │ ├── Execute_IEnumerable_Fluent.cs │ │ ├── Execute_IEnumerable_Fluent.cs.gold │ │ ├── Execute_IEnumerable_Generic.cs │ │ ├── Execute_IEnumerable_Generic.cs.gold │ │ ├── Execute_List.cs │ │ ├── Execute_List.cs.gold │ │ ├── Execute_List_Target_IReadOnlyCollection_CollectionExpression.cs │ │ ├── Execute_List_Target_IReadOnlyCollection_CollectionExpression.cs.gold │ │ ├── Execute_List_Target_IReadOnlyList_CollectionExpression.cs │ │ ├── Execute_List_Target_IReadOnlyList_CollectionExpression.cs.gold │ │ ├── Execute_List_Target_List_CollectionExpression.cs │ │ ├── Execute_List_Target_List_CollectionExpression.cs.gold │ │ ├── Execute_List_ToArray.cs │ │ └── Execute_List_ToArray.cs.gold │ │ ├── DeclareComparisonOperators │ │ ├── Availability.cs │ │ ├── Availability_CS10.cs │ │ ├── Availability_NET_6.cs │ │ ├── Execute_Class.cs │ │ ├── Execute_Class.cs.gold │ │ ├── Execute_Record.cs │ │ ├── Execute_Record.cs.gold │ │ ├── Execute_Struct.cs │ │ └── Execute_Struct.cs.gold │ │ ├── DeclareEqualityOperators │ │ ├── Availability.cs │ │ ├── Availability_CS10.cs │ │ ├── Availability_NET_6.cs │ │ ├── Execute_Class.cs │ │ ├── Execute_Class.cs.gold │ │ ├── Execute_Record.cs │ │ ├── Execute_Record.cs.gold │ │ ├── Execute_Record2.cs │ │ ├── Execute_Record2.cs.gold │ │ ├── Execute_Record3.cs │ │ ├── Execute_Record3.cs.gold │ │ ├── Execute_Record4.cs │ │ ├── Execute_Record4.cs.gold │ │ ├── Execute_Record5.cs │ │ ├── Execute_Record5.cs.gold │ │ ├── Execute_RecordStruct.cs │ │ ├── Execute_RecordStruct.cs.gold │ │ ├── Execute_Struct.cs │ │ └── Execute_Struct.cs.gold │ │ ├── EmbedIntoParamrefName │ │ ├── Availability.cs │ │ ├── ExecuteSelection.cs │ │ ├── ExecuteSelection.cs.gold │ │ ├── ExecuteWord.cs │ │ └── ExecuteWord.cs.gold │ │ ├── EmbedIntoSeeCRef │ │ ├── Availability.cs │ │ ├── ExecuteSelection.cs │ │ ├── ExecuteSelection.cs.gold │ │ ├── ExecuteWord.cs │ │ └── ExecuteWord.cs.gold │ │ ├── EmbedIntoTypeparamrefName │ │ ├── Availability.cs │ │ ├── ExecuteSelection.cs │ │ ├── ExecuteSelection.cs.gold │ │ ├── ExecuteWord.cs │ │ └── ExecuteWord.cs.gold │ │ ├── EmbraceWithCTags │ │ ├── Availability.cs │ │ ├── ExecuteSelection.cs │ │ ├── ExecuteSelection.cs.gold │ │ ├── ExecuteWord.cs │ │ └── ExecuteWord.cs.gold │ │ ├── ReflowDocComments │ │ ├── Availability_NestedTags.cs │ │ ├── Availability_TopLevelTags.cs │ │ ├── Execute_Case_1.cs │ │ ├── Execute_Case_1.cs.gold │ │ ├── Execute_Case_2.cs │ │ ├── Execute_Case_2.cs.gold │ │ ├── Execute_Case_3.cs │ │ ├── Execute_Case_3.cs.gold │ │ ├── Execute_Case_4.cs │ │ ├── Execute_Case_4.cs.gold │ │ ├── Execute_ReorderTopLevelTags.cs │ │ ├── Execute_ReorderTopLevelTags.cs.gold │ │ ├── Execute_WrapNestedTags.cs │ │ ├── Execute_WrapNestedTags.cs.gold │ │ ├── Execute_WrapNestedTags_Para.cs │ │ ├── Execute_WrapNestedTags_Para.cs.gold │ │ ├── Execute_WrapTopLevelTags.cs │ │ └── Execute_WrapTopLevelTags.cs.gold │ │ ├── RemoveAssertNotNull │ │ ├── Availability.cs │ │ ├── Execute.cs │ │ └── Execute.cs.gold │ │ ├── ReplaceIsNullOrEmpty │ │ ├── Availability.cs │ │ ├── ReplaceWithNegatedListPattern.cs │ │ ├── ReplaceWithNegatedListPattern.cs.gold │ │ ├── ReplaceWithNegatedObject.cs │ │ ├── ReplaceWithNegatedObject.cs.gold │ │ ├── ReplaceWithNegatedObjectOrEmpty.cs │ │ ├── ReplaceWithNegatedObjectOrEmpty.cs.gold │ │ ├── ReplaceWithNegatedObjectOrEmptyList.cs │ │ ├── ReplaceWithNegatedObjectOrEmptyList.cs.gold │ │ ├── ReplaceWithNullOrEmpty.cs │ │ ├── ReplaceWithNullOrEmpty.cs.gold │ │ ├── ReplaceWithNullOrEmptyList.cs │ │ └── ReplaceWithNullOrEmptyList.cs.gold │ │ ├── SetLanguageInjection │ │ ├── Availability.cs │ │ ├── ExecuteAssignmentAdd.cs │ │ ├── ExecuteAssignmentAdd.cs.gold │ │ ├── ExecuteAssignmentUpdate.cs │ │ ├── ExecuteAssignmentUpdate.cs.gold │ │ ├── ExecuteConstantAdd.cs │ │ ├── ExecuteConstantAdd.cs.gold │ │ ├── ExecuteConstantUpdate.cs │ │ ├── ExecuteConstantUpdate.cs.gold │ │ ├── ExecuteFieldAdd.cs │ │ ├── ExecuteFieldAdd.cs.gold │ │ ├── ExecuteFieldUpdate.cs │ │ ├── ExecuteFieldUpdate.cs.gold │ │ ├── ExecuteLocalConstantAdd.cs │ │ ├── ExecuteLocalConstantAdd.cs.gold │ │ ├── ExecuteLocalConstantUpdate.cs │ │ ├── ExecuteLocalConstantUpdate.cs.gold │ │ ├── ExecuteObjectInitializationAdd.cs │ │ ├── ExecuteObjectInitializationAdd.cs.gold │ │ ├── ExecuteObjectInitializationUpdate.cs │ │ ├── ExecuteObjectInitializationUpdate.cs.gold │ │ ├── ExecuteVariableAdd.cs │ │ ├── ExecuteVariableAdd.cs.gold │ │ ├── ExecuteVariableUpdate.cs │ │ └── ExecuteVariableUpdate.cs.gold │ │ └── ToggleReturnTypeOfAsyncMethods │ │ ├── Availability.cs │ │ ├── GenericTaskToGenericValueTask_Int32.cs │ │ ├── GenericTaskToGenericValueTask_Int32.cs.gold │ │ ├── GenericTaskToGenericValueTask_T.cs │ │ ├── GenericTaskToGenericValueTask_T.cs.gold │ │ ├── GenericValueTaskToGenericTask_Int32.cs │ │ ├── GenericValueTaskToGenericTask_Int32.cs.gold │ │ ├── GenericValueTaskToGenericTask_T.cs │ │ ├── GenericValueTaskToGenericTask_T.cs.gold │ │ ├── TaskToValueTask.cs │ │ ├── TaskToValueTask.cs.gold │ │ ├── Unavailability.cs │ │ ├── ValueTaskToTask.cs │ │ └── ValueTaskToTask.cs.gold │ └── nuget.config ├── ReCommendedExtension.sln.DotSettings ├── ReCommendedExtension.slnx └── ReCommendedExtension ├── Analyzers ├── Annotation │ ├── AnnotationAnalyzer.cs │ ├── AttributeHighlighting.cs │ ├── ConditionalAnnotationHint.cs │ ├── ConflictingAnnotationWarning.cs │ ├── InvalidValueRangeBoundaryWarning.cs │ ├── MissingAnnotationWarning.cs │ ├── MissingSuppressionJustificationWarning.cs │ ├── NotAllowedAnnotationWarning.cs │ ├── RedundantAnnotationArgumentSuggestion.cs │ ├── RedundantAnnotationSuggestion.cs │ ├── RedundantNullableAnnotationHint.cs │ ├── RemoveAttributeFix.cs │ └── ValueRangeBoundary.cs ├── Argument │ ├── ArgumentAnalyzer.cs │ ├── ArgumentReplacement.cs │ ├── Inspections │ │ ├── ArgumentCondition.cs │ │ ├── DuplicateArgument.cs │ │ ├── DuplicateCollectionElement.cs │ │ ├── DuplicateEquivalentCollectionElement.cs │ │ ├── Inspection.cs │ │ ├── OtherArgument.cs │ │ ├── OtherArgumentRange.cs │ │ ├── RedundantArgument.cs │ │ ├── RedundantArgumentByPosition.cs │ │ ├── RedundantArgumentRange.cs │ │ ├── RedundantCollectionElement.cs │ │ ├── ReplacementSignature.cs │ │ └── ReplacementSignatureRange.cs │ ├── RedundantArgumentHint.cs │ ├── RedundantArgumentRangeHint.cs │ ├── RedundantElementHint.cs │ ├── Rules │ │ ├── ConstructorSignature.cs │ │ ├── Member.cs │ │ ├── MemberSignature.cs │ │ ├── MethodSignature.cs │ │ └── RuleDefinitions.cs │ ├── UpcomingArgument.cs │ ├── UseOtherArgumentRangeSuggestion.cs │ └── UseOtherArgumentSuggestion.cs ├── ArgumentExceptionConstructorArgument │ ├── ArgumentExceptionConstructorArgumentAnalyzer.cs │ └── ArgumentExceptionConstructorArgumentWarning.cs ├── AsyncVoid │ ├── AsyncVoidAnalyzer.cs │ ├── AsyncVoidFunctionExpressionWarning.cs │ └── AvoidAsyncVoidWarning.cs ├── Await │ ├── AwaitAnalyzer.cs │ └── RedundantCapturedContextSuggestion.cs ├── BaseType │ ├── BaseTypeAnalyzer.cs │ └── RemoveRedundantBaseTypeDeclarationHint.cs ├── CatchClauseWithoutVariable │ ├── CatchClauseWithoutVariableAnalyzer.cs │ └── CatchClauseWithoutVariableHint.cs ├── Collection │ ├── ArrayWithDefaultValuesInitializationSuggestion.cs │ ├── CollectionAnalyzer.cs │ ├── UseEmptyForArrayInitializationWarning.cs │ └── UseTargetTypedCollectionExpressionSuggestion.cs ├── ConditionalInvocation │ ├── ConditionalInvocationAnalyzer.cs │ └── ConditionalInvocationHint.cs ├── ControlFlow │ ├── Assertion.cs │ ├── AssertionStatement.cs │ ├── ControlFlowAnalyzer.cs │ ├── InlineAssertion.cs │ ├── RedundantAssertionStatementSuggestion.cs │ └── RedundantInlineAssertionSuggestion.cs ├── DelegateInvoke │ ├── DelegateInvokeAnalyzer.cs │ └── RedundantDelegateInvokeHint.cs ├── ExpressionResult │ ├── ExpressionResultAnalyzer.cs │ ├── ExpressionResultReplacements.cs │ ├── Inspections │ │ ├── Inspection.cs │ │ └── InspectionContext.cs │ ├── Rules │ │ ├── ConstructorSignature.cs │ │ ├── Member.cs │ │ ├── MemberSignature.cs │ │ ├── MethodSignature.cs │ │ └── RuleDefinitions.cs │ └── UseExpressionResultSuggestion.cs ├── Formatter │ ├── FormatElement.cs │ ├── FormatterAnalyzer.cs │ ├── PassOtherFormatSpecifierSuggestion.cs │ ├── RedundantFormatPrecisionSpecifierHint.cs │ ├── RedundantFormatProviderHint.cs │ ├── RedundantFormatSpecifierHint.cs │ ├── ReplaceTypeCastWithFormatSpecifierSuggestion.cs │ └── SuspiciousFormatSpecifierWarning.cs ├── Highlighting.cs ├── InterfaceImplementation │ ├── ImplementComparisonOperatorsForClassesSuggestion.cs │ ├── ImplementComparisonOperatorsForRecordsSuggestion.cs │ ├── ImplementComparisonOperatorsForStructsSuggestion.cs │ ├── ImplementEqualityOperatorsForClassesSuggestion.cs │ ├── ImplementEqualityOperatorsForRecordsSuggestion.cs │ ├── ImplementEqualityOperatorsForStructsSuggestion.cs │ ├── ImplementEquatableWarning.cs │ ├── ImplementOperatorsHighlighting.cs │ ├── InterfaceImplementationAnalyzer.cs │ └── OverrideEqualsWarning.cs ├── InternalConstructor │ ├── InternalConstructorVisibilityAnalyzer.cs │ └── InternalConstructorVisibilitySuggestion.cs ├── Linq │ ├── LinqQueryAnalyzer.cs │ └── RedundantLinqQueryHint.cs ├── LocalSuppression │ ├── LocalSuppressionAnalyzer.cs │ └── LocalSuppressionWarning.cs ├── LockOnObjectWithWeakIdentity │ ├── LockOnObjectWithWeakIdentityAnalyzer.cs │ └── LockOnObjectWithWeakIdentityWarning.cs ├── MemberInvocation │ ├── Inspections │ │ ├── BinaryOperator.cs │ │ ├── Inspection.cs │ │ ├── OtherMethodInvocation.cs │ │ ├── Pattern.cs │ │ ├── PatternByArgument.cs │ │ ├── PatternByArguments.cs │ │ ├── PatternByBinaryExpression.cs │ │ ├── PatternByQualifierArguments.cs │ │ ├── PropertyOfArray.cs │ │ ├── PropertyOfCollection.cs │ │ ├── PropertyOfDateTime.cs │ │ ├── PropertyOfNullable.cs │ │ ├── PropertyOfString.cs │ │ ├── RangeIndexer.cs │ │ ├── RedundantMethodInvocation.cs │ │ ├── SuspiciousElementAccess.cs │ │ ├── TargetType.cs │ │ └── UnaryOperator.cs │ ├── MemberInvocationAnalyzer.cs │ ├── RedundantMethodInvocationHint.cs │ ├── ReplaceNullableValueWithTypeCastSuggestion.cs │ ├── ReplacedMethodInvocation.cs │ ├── Rules │ │ ├── BinaryOperatorOperands.cs │ │ ├── InvocationReplacement.cs │ │ ├── Member.cs │ │ ├── MemberSignature.cs │ │ ├── MethodInvocationContext.cs │ │ ├── MethodSignature.cs │ │ ├── PatternReplacement.cs │ │ ├── PropertyNameOfNullable.cs │ │ ├── PropertySignature.cs │ │ ├── RangeIndexerReplacement.cs │ │ ├── ReplacementMethod.cs │ │ └── RuleDefinitions.cs │ ├── SuspiciousElementAccessWarning.cs │ ├── UseBinaryOperatorSuggestion.cs │ ├── UseNullableHasValueAlternativeSuggestion.cs │ ├── UseOtherMethodSuggestion.cs │ ├── UsePatternSuggestion.cs │ ├── UsePropertySuggestion.cs │ ├── UseRangeIndexerSuggestion.cs │ ├── UseStaticPropertySuggestion.cs │ └── UseUnaryOperatorSuggestion.cs ├── MultipleHighlightings.cs ├── NotifyPropertyChangedInvocatorFromConstructor │ ├── NotifyPropertyChangedInvocatorFromConstructorAnalyzer.cs │ └── NotifyPropertyChangedInvocatorFromConstructorWarning.cs ├── Region │ ├── RegionAnalyzer.cs │ ├── RegionHighlighting.cs │ ├── RegionWithSingleElementSuggestion.cs │ └── RegionWithinTypeMemberBodyWarning.cs ├── ThrowExceptionInUnexpectedLocation │ ├── ThrowExceptionInUnexpectedLocationAnalyzer.cs │ └── ThrowExceptionInUnexpectedLocationWarning.cs ├── UncatchableException │ ├── UncatchableExceptionAnalyzer.cs │ └── UncatchableExceptionWarning.cs ├── UnthrowableException │ ├── UnthrowableExceptionAnalyzer.cs │ └── UnthrowableExceptionWarning.cs ├── ValueTask │ ├── IntentionalBlockingAttemptWarning.cs │ ├── PossibleMultipleConsumptionWarning.cs │ └── ValueTaskAnalyzer.cs ├── XamlBindingWithoutMode │ ├── XamlBindingWithoutModeAnalyzer.cs │ └── XamlBindingWithoutModeWarning.cs └── YieldReturnWithinLock │ ├── YieldReturnWithinLockAnalyzer.cs │ └── YieldReturnWithinLockWarning.cs ├── ClrTypeNameEqualityComparer.cs ├── ClrTypeNames.cs ├── ContextActions ├── Annotations │ ├── AnnotateWith.cs │ ├── AnnotateWithAttributeUsage.cs │ ├── AnnotateWithCodeAnnotation.cs │ ├── AnnotateWithDefaultEqualityUsage.cs │ ├── AnnotateWithEditorBrowsableNever.cs │ ├── AnnotateWithHandlesResourceDisposal.cs │ ├── AnnotateWithIgnoreSpellingAndGrammarErrors.cs │ ├── AnnotateWithInstantHandle.cs │ ├── AnnotateWithItemNotNull.cs │ ├── AnnotateWithLinqTunnel.cs │ ├── AnnotateWithMustDisposeResource.cs │ ├── AnnotateWithMustDisposeResourceBase.cs │ ├── AnnotateWithMustDisposeResourceFalse.cs │ ├── AnnotateWithMustUseReturnValue.cs │ ├── AnnotateWithNonNegativeValue.cs │ ├── AnnotateWithPure.cs │ ├── AnnotateWithValueRange.cs │ └── AnnotateWith[A].cs ├── CodeContracts │ ├── AddContractContextAction.cs │ ├── CollectionAllItemsNotNull.cs │ ├── CollectionCountPositive.cs │ ├── DateTimeTimeOfDayZero.cs │ ├── EnumBetweenFirstAndLast.cs │ ├── EnumFlags.cs │ ├── EnumKnownValues.cs │ ├── GuidNonEmpty.cs │ ├── IntPtrUIntPtr.cs │ ├── IntPtrUIntPtrNonZero.cs │ ├── IntPtrUIntPtrZero.cs │ ├── Internal │ │ ├── CSharpNumericTypeInfo.cs │ │ ├── CSharpNumericTypeInfo[N].cs │ │ ├── ContractInfo.cs │ │ ├── ContractKind.cs │ │ ├── FieldContractInfo.cs │ │ ├── MethodContractInfo.cs │ │ ├── OperatorContractInfo.cs │ │ ├── ParameterContractInfo.cs │ │ └── PropertyContractInfo.cs │ ├── NotNull.cs │ ├── Numeric.cs │ ├── NumericPositive.cs │ ├── NumericZero.cs │ ├── SignedNumeric.cs │ ├── SignedNumericNegative.cs │ ├── SignedNumericNonZero.cs │ ├── SignedNumericZeroOrNegative.cs │ ├── SignedNumericZeroOrPositive.cs │ ├── StringNotNullAndNotEmpty.cs │ ├── TimeSpan.cs │ ├── TimeSpanNegative.cs │ ├── TimeSpanNonZero.cs │ ├── TimeSpanPositive.cs │ ├── TimeSpanZero.cs │ ├── TimeSpanZeroOrNegative.cs │ └── TimeSpanZeroOrPositive.cs ├── ContextAction[N].cs ├── ConvertToLinqQuery.cs ├── DocComments │ ├── EmbedIntoParamrefName.cs │ ├── EmbedIntoSeeCRef.cs │ ├── EmbedIntoTypeparamrefName.cs │ ├── EmbraceWithCTags.cs │ ├── EncompassInDocComment.cs │ ├── ReflowDocComments.cs │ └── XmlDocCommentContextAction[N].cs ├── InterfaceImplementationDeclarations │ ├── DeclareComparisonOperators.cs │ └── DeclareEqualityOperators.cs ├── RemoveAssertNotNull.cs ├── SetLanguageInjection.cs ├── Strings │ ├── ReplaceIsNullOrEmpty.cs │ ├── ReplaceIsNullOrEmptyWithNegatedListPattern.cs │ ├── ReplaceIsNullOrEmptyWithNegatedObject.cs │ ├── ReplaceIsNullOrEmptyWithNegatedObjectOrEmpty.cs │ ├── ReplaceIsNullOrEmptyWithNegatedObjectOrEmptyList.cs │ ├── ReplaceIsNullOrEmptyWithNullOrEmpty.cs │ └── ReplaceIsNullOrEmptyWithNullOrEmptyList.cs └── ToggleReturnTypeOfAsyncMethods.cs ├── Debug.cs ├── Extensions ├── AttributesOwnerDeclarationExtensions.cs ├── AttributesOwnerExtensions.cs ├── CSharpArgumentExtensions.cs ├── CSharpArgumentsOwnerExtensions.cs ├── CSharpExpressionExtensions.cs ├── CSharpInvocationInfoExtensions.cs ├── CSharpTreeNodeExtensions.cs ├── CharExtensions.cs ├── Collections │ ├── ArrayCreationExpressionCollectionCreation.cs │ ├── CollectionCreation.cs │ ├── CollectionExpressionCollectionCreation.cs │ └── EmptyCollectionCreation.cs ├── DeclarationExtensions.cs ├── DeclaredTypeExtensions.cs ├── ElementProblemAnalyzerDataExtensions.cs ├── KeyValuePairExtensions.cs ├── LinqExtensions.cs ├── MemberFinding │ ├── ConstructorSignature.cs │ ├── MemberFinder.cs │ ├── MethodSignature.cs │ ├── Parameter.cs │ └── PropertySignature.cs ├── MethodExtensions.cs ├── NumberInfos │ ├── FormatSpecifiers.cs │ ├── Half.cs │ ├── Int128.cs │ ├── NumberInfo.cs │ ├── NumberInfo[N].cs │ ├── TryGetConstant[N].cs │ └── UInt128.cs ├── ReferenceExpressionExtensions.cs ├── StringExtensions.cs ├── StructExtensions.cs ├── TreeNodeCollectionExtensions.cs ├── TreeNodeExtensions.cs ├── TypeElementExtensions.cs └── TypeExtensions.cs ├── Properties ├── ReCommendedExtension.public.snk └── launchSettings.json ├── ReCommendedExtension.csproj ├── ReadMe.txt └── Zone.cs /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Images/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Images/Icon.png -------------------------------------------------------------------------------- /Images/MulitpleConsumption.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Images/MulitpleConsumption.png -------------------------------------------------------------------------------- /Images/RedundantAssertion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Images/RedundantAssertion.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/README.md -------------------------------------------------------------------------------- /Sources/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/.editorconfig -------------------------------------------------------------------------------- /Sources/.nuget/NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/.nuget/NuGet.Config -------------------------------------------------------------------------------- /Sources/.nuget/NuGet.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/.nuget/NuGet.exe -------------------------------------------------------------------------------- /Sources/.nuget/NuGet.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/.nuget/NuGet.targets -------------------------------------------------------------------------------- /Sources/.nuget/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/.nuget/packages.config -------------------------------------------------------------------------------- /Sources/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/Directory.Build.props -------------------------------------------------------------------------------- /Sources/ExternalAnnotations/.NETFramework/mscorlib/4.0.0.0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ExternalAnnotations/.NETFramework/mscorlib/4.0.0.0.xml -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Deployment/Debug.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Deployment/Debug.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Deployment/DoesNotReturnIfAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Deployment/DoesNotReturnIfAttribute.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Deployment/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Deployment/Program.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Deployment/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Deployment/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Deployment/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Deployment/Properties/Settings.settings -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Deployment/ReCommendedExtension.Deployment.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Deployment/ReCommendedExtension.Deployment.csproj -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Deployment/ReCommendedExtension.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Deployment/ReCommendedExtension.nuspec -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Deployment/Rider/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Deployment/Rider/build.gradle.kts -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Deployment/Rider/dependencies.json: -------------------------------------------------------------------------------- 1 | [ 2 | ] -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Deployment/Rider/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Deployment/Rider/gradle.properties -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Deployment/Rider/gradle/libs.versions.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Deployment/Rider/gradle/libs.versions.toml -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Deployment/Rider/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Deployment/Rider/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Deployment/Rider/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Deployment/Rider/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Deployment/Rider/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Deployment/Rider/gradlew.bat -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Deployment/Rider/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Deployment/Rider/settings.gradle.kts -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Deployment/Rider/src/rider/main/resources/META-INF/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Deployment/Rider/src/rider/main/resources/META-INF/plugin.xml -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/Analyzers/Annotation/AnnotationAnalyzerArgumentTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/Analyzers/Annotation/AnnotationAnalyzerArgumentTests.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/Analyzers/Annotation/AnnotationAnalyzerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/Analyzers/Annotation/AnnotationAnalyzerTests.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/Analyzers/Annotation/AnnotationAnalyzerValueRangeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/Analyzers/Annotation/AnnotationAnalyzerValueRangeTests.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/Analyzers/Annotation/AnnotationArgumentQuickFixTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/Analyzers/Annotation/AnnotationArgumentQuickFixTests.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/Analyzers/Annotation/AnnotationQuickFixTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/Analyzers/Annotation/AnnotationQuickFixTests.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/Analyzers/Annotation/NullableAnnotationQuickFixTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/Analyzers/Annotation/NullableAnnotationQuickFixTests.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/Analyzers/Argument/ArgumentAnalyzerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/Analyzers/Argument/ArgumentAnalyzerTests.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/Analyzers/Argument/QuickFixAvailabilityTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/Analyzers/Argument/QuickFixAvailabilityTests.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/Analyzers/Argument/RemoveArgumentFixTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/Analyzers/Argument/RemoveArgumentFixTests.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/Analyzers/Argument/RemoveArgumentRangeFixTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/Analyzers/Argument/RemoveArgumentRangeFixTests.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/Analyzers/Argument/RemoveElementQuickFixTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/Analyzers/Argument/RemoveElementQuickFixTests.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/Analyzers/Argument/UseOtherArgumentFixTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/Analyzers/Argument/UseOtherArgumentFixTests.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/Analyzers/Argument/UseOtherArgumentRangeFixTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/Analyzers/Argument/UseOtherArgumentRangeFixTests.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/Analyzers/AsyncVoid/AsyncVoidAnalyzerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/Analyzers/AsyncVoid/AsyncVoidAnalyzerTests.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/Analyzers/AsyncVoid/AsyncVoidQuickFixAvailabilityTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/Analyzers/AsyncVoid/AsyncVoidQuickFixAvailabilityTests.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/Analyzers/AsyncVoid/AsyncVoidQuickFixChangeTypeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/Analyzers/AsyncVoid/AsyncVoidQuickFixChangeTypeTests.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/Analyzers/AsyncVoid/AsyncVoidQuickFixRemoveTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/Analyzers/AsyncVoid/AsyncVoidQuickFixRemoveTests.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/Analyzers/BaseType/BaseTypeAnalyzerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/Analyzers/BaseType/BaseTypeAnalyzerTests.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/Analyzers/BaseType/BaseTypeQuickFixAvailabilityTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/Analyzers/BaseType/BaseTypeQuickFixAvailabilityTests.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/Analyzers/BaseType/BaseTypeQuickFixRemoveTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/Analyzers/BaseType/BaseTypeQuickFixRemoveTests.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/Analyzers/CSharpAnalyzerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/Analyzers/CSharpAnalyzerTests.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/Analyzers/Collection/CollectionAnalyzerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/Analyzers/Collection/CollectionAnalyzerTests.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/Analyzers/ControlFlow/ControlFlowAnalyzerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/Analyzers/ControlFlow/ControlFlowAnalyzerTests.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/Analyzers/DelegateInvoke/DelegateInvokeAnalyzerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/Analyzers/DelegateInvoke/DelegateInvokeAnalyzerTests.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/Analyzers/DelegateInvoke/DelegateInvokeQuickFixTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/Analyzers/DelegateInvoke/DelegateInvokeQuickFixTests.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/Analyzers/ExpressionResult/QuickFixAvailabilityTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/Analyzers/ExpressionResult/QuickFixAvailabilityTests.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/Analyzers/Formatter/FormatterAnalyzerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/Analyzers/Formatter/FormatterAnalyzerTests.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/Analyzers/Formatter/PassOtherFormatSpecifierFixTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/Analyzers/Formatter/PassOtherFormatSpecifierFixTests.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/Analyzers/Formatter/QuickFixAvailabilityTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/Analyzers/Formatter/QuickFixAvailabilityTests.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/Analyzers/Formatter/RemoveFormatProviderFixTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/Analyzers/Formatter/RemoveFormatProviderFixTests.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/Analyzers/Formatter/RemoveFormatSpecifierFixTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/Analyzers/Formatter/RemoveFormatSpecifierFixTests.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/Analyzers/Linq/LinqQueryAnalyzerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/Analyzers/Linq/LinqQueryAnalyzerTests.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/Analyzers/Linq/QuickFixAvailabilityTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/Analyzers/Linq/QuickFixAvailabilityTests.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/Analyzers/Linq/RemoveLinqQueryQuickFixTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/Analyzers/Linq/RemoveLinqQueryQuickFixTests.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/Analyzers/MemberInvocation/QuickFixAvailabilityTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/Analyzers/MemberInvocation/QuickFixAvailabilityTests.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/Analyzers/MemberInvocation/UseBinaryOperatorFixTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/Analyzers/MemberInvocation/UseBinaryOperatorFixTests.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/Analyzers/MemberInvocation/UseOtherMethodFixTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/Analyzers/MemberInvocation/UseOtherMethodFixTests.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/Analyzers/MemberInvocation/UsePatternFixTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/Analyzers/MemberInvocation/UsePatternFixTests.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/Analyzers/MemberInvocation/UsePropertyQuickFixTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/Analyzers/MemberInvocation/UsePropertyQuickFixTests.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/Analyzers/MemberInvocation/UseRangeIndexerFixTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/Analyzers/MemberInvocation/UseRangeIndexerFixTests.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/Analyzers/MemberInvocation/UseUnaryOperatorFixTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/Analyzers/MemberInvocation/UseUnaryOperatorFixTests.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/Analyzers/QuickFixAvailabilityTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/Analyzers/QuickFixAvailabilityTests.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/Analyzers/Region/RegionAnalyzerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/Analyzers/Region/RegionAnalyzerTests.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/Analyzers/ValueTask/ValueTaskAnalyzerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/Analyzers/ValueTask/ValueTaskAnalyzerTests.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/Analyzers/ValueTask/ValueTaskQuickFixAvailabilityTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/Analyzers/ValueTask/ValueTaskQuickFixAvailabilityTests.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/Analyzers/ValueTask/ValueTaskQuickFixTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/Analyzers/ValueTask/ValueTaskQuickFixTests.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/Analyzers/XamlAnalyzerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/Analyzers/XamlAnalyzerTests.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/App.config -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/AssemblyTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/AssemblyTests.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/ContextActions/CodeContracts/Types/NotNullExecuteTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/ContextActions/CodeContracts/Types/NotNullExecuteTests.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/ContextActions/ConvertToLinqQueryAvailabilityTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/ContextActions/ConvertToLinqQueryAvailabilityTests.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/ContextActions/ConvertToLinqQueryExecuteTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/ContextActions/ConvertToLinqQueryExecuteTests.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/ContextActions/DocComments/DocCommentsExecuteTests[A].cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/ContextActions/DocComments/DocCommentsExecuteTests[A].cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/ContextActions/RemoveAssertNotNullAvailabilityTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/ContextActions/RemoveAssertNotNullAvailabilityTests.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/ContextActions/RemoveAssertNotNullExecuteTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/ContextActions/RemoveAssertNotNullExecuteTests.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/ContextActions/SetLanguageInjectionAvailabilityTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/ContextActions/SetLanguageInjectionAvailabilityTests.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/ContextActions/SetLanguageInjectionExecuteTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/ContextActions/SetLanguageInjectionExecuteTests.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/HighlightingExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/HighlightingExtensions.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/Missing/DateOnly.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/Missing/DateOnly.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/Missing/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/Missing/Extensions.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/Missing/MathF.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/Missing/MathF.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/Missing/MissingByteMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/Missing/MissingByteMethods.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/Missing/MissingCharMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/Missing/MissingCharMethods.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/Missing/MissingDateTimeMembers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/Missing/MissingDateTimeMembers.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/Missing/MissingDateTimeOffsetMembers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/Missing/MissingDateTimeOffsetMembers.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/Missing/MissingDecimalMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/Missing/MissingDecimalMethods.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/Missing/MissingDoubleMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/Missing/MissingDoubleMethods.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/Missing/MissingEnumMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/Missing/MissingEnumMethods.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/Missing/MissingEnumerableMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/Missing/MissingEnumerableMethods.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/Missing/MissingGuidMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/Missing/MissingGuidMethods.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/Missing/MissingHalfMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/Missing/MissingHalfMethods.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/Missing/MissingInt128Methods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/Missing/MissingInt128Methods.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/Missing/MissingInt16Methods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/Missing/MissingInt16Methods.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/Missing/MissingInt32Methods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/Missing/MissingInt32Methods.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/Missing/MissingInt64Methods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/Missing/MissingInt64Methods.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/Missing/MissingIntPtrMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/Missing/MissingIntPtrMethods.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/Missing/MissingMathMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/Missing/MissingMathMethods.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/Missing/MissingRandomMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/Missing/MissingRandomMethods.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/Missing/MissingSByteMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/Missing/MissingSByteMethods.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/Missing/MissingSingleMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/Missing/MissingSingleMethods.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/Missing/MissingStringBuilderMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/Missing/MissingStringBuilderMethods.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/Missing/MissingStringMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/Missing/MissingStringMethods.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/Missing/MissingStringSplitOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/Missing/MissingStringSplitOptions.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/Missing/MissingTimeSpanMembers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/Missing/MissingTimeSpanMembers.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/Missing/MissingUInt128Methods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/Missing/MissingUInt128Methods.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/Missing/MissingUInt16Methods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/Missing/MissingUInt16Methods.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/Missing/MissingUInt32Methods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/Missing/MissingUInt32Methods.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/Missing/MissingUInt64Methods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/Missing/MissingUInt64Methods.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/Missing/MissingUIntPtrMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/Missing/MissingUIntPtrMethods.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/Missing/TimeOnly.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/Missing/TimeOnly.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/ReCommendedExtension.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/ReCommendedExtension.Tests.csproj -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/TestEnvironmentAssembly.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/TestEnvironmentAssembly.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/Zone.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/Zone.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/Annotation/AsyncIteratorMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/Annotation/AsyncIteratorMethod.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/Annotation/AsyncMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/Annotation/AsyncMethod.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/Annotation/AsyncMethod.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/Annotation/AsyncMethod.cs.gold -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/Annotation/AttributeUsage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/Annotation/AttributeUsage.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/Annotation/AttributeUsage.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/Annotation/AttributeUsage.cs.gold -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/Annotation/Conditional.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/Annotation/Conditional.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/Annotation/Conditional.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/Annotation/Conditional.cs.gold -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/Annotation/DisposalHandling_Fields.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/Annotation/DisposalHandling_Fields.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/Annotation/EditorBrowsable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/Annotation/EditorBrowsable.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/Annotation/EditorBrowsable.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/Annotation/EditorBrowsable.cs.gold -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/Annotation/ItemNotNull.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/Annotation/ItemNotNull.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/Annotation/ItemNotNull.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/Annotation/ItemNotNull.cs.gold -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/Annotation/IteratorMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/Annotation/IteratorMethod.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/Annotation/IteratorMethod.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/Annotation/IteratorMethod.cs.gold -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/Annotation/NonNegativeValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/Annotation/NonNegativeValue.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/Annotation/NonNegativeValue.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/Annotation/NonNegativeValue.cs.gold -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/Annotation/Other_Optimistic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/Annotation/Other_Optimistic.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/Annotation/Other_Optimistic.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/Annotation/Other_Optimistic.cs.gold -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/Annotation/Other_Pessimistic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/Annotation/Other_Pessimistic.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/Annotation/Other_Pessimistic.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/Annotation/Other_Pessimistic.cs.gold -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/Annotation/Override.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/Annotation/Override.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/Annotation/Override.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/Annotation/Override.cs.gold -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/Annotation/QuickFixes/Conflicting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/Annotation/QuickFixes/Conflicting.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/Annotation/QuickFixes/NotAllowed.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/Annotation/QuickFixes/NotAllowed.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/Annotation/QuickFixes/Redundant.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/Annotation/QuickFixes/Redundant.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/Annotation/SuppressMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/Annotation/SuppressMessage.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/Annotation/SuppressMessage.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/Annotation/SuppressMessage.cs.gold -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/Annotation/SuppressMessage_NET_5.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/Annotation/SuppressMessage_NET_5.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/Annotation/ValueRange.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/Annotation/ValueRange.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/Annotation/ValueRange.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/Annotation/ValueRange.cs.gold -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/Argument/Byte.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/Argument/Byte.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/Argument/Byte.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/Argument/Byte.cs.gold -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/Argument/DateOnly.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/Argument/DateOnly.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/Argument/DateOnly.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/Argument/DateOnly.cs.gold -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/Argument/DateTime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/Argument/DateTime.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/Argument/DateTime.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/Argument/DateTime.cs.gold -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/Argument/DateTimeOffset.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/Argument/DateTimeOffset.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/Argument/DateTimeOffset.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/Argument/DateTimeOffset.cs.gold -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/Argument/Decimal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/Argument/Decimal.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/Argument/Decimal.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/Argument/Decimal.cs.gold -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/Argument/Double.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/Argument/Double.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/Argument/Double.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/Argument/Double.cs.gold -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/Argument/Enum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/Argument/Enum.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/Argument/Enum.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/Argument/Enum.cs.gold -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/Argument/Guid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/Argument/Guid.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/Argument/Guid.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/Argument/Guid.cs.gold -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/Argument/Half.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/Argument/Half.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/Argument/Half.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/Argument/Half.cs.gold -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/Argument/Int128.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/Argument/Int128.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/Argument/Int128.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/Argument/Int128.cs.gold -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/Argument/Int16.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/Argument/Int16.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/Argument/Int16.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/Argument/Int16.cs.gold -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/Argument/Int32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/Argument/Int32.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/Argument/Int32.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/Argument/Int32.cs.gold -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/Argument/Int64.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/Argument/Int64.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/Argument/Int64.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/Argument/Int64.cs.gold -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/Argument/IntPtr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/Argument/IntPtr.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/Argument/IntPtr.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/Argument/IntPtr.cs.gold -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/Argument/Math.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/Argument/Math.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/Argument/Math.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/Argument/Math.cs.gold -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/Argument/MathF.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/Argument/MathF.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/Argument/MathF.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/Argument/MathF.cs.gold -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/Argument/Random.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/Argument/Random.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/Argument/Random.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/Argument/Random.cs.gold -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/Argument/SByte.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/Argument/SByte.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/Argument/SByte.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/Argument/SByte.cs.gold -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/Argument/Single.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/Argument/Single.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/Argument/Single.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/Argument/Single.cs.gold -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/Argument/String.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/Argument/String.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/Argument/String.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/Argument/String.cs.gold -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/Argument/StringBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/Argument/StringBuilder.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/Argument/StringBuilder.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/Argument/StringBuilder.cs.gold -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/Argument/TimeOnly.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/Argument/TimeOnly.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/Argument/TimeOnly.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/Argument/TimeOnly.cs.gold -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/Argument/TimeSpan.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/Argument/TimeSpan.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/Argument/TimeSpan.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/Argument/TimeSpan.cs.gold -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/Argument/UInt128.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/Argument/UInt128.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/Argument/UInt128.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/Argument/UInt128.cs.gold -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/Argument/UInt16.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/Argument/UInt16.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/Argument/UInt16.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/Argument/UInt16.cs.gold -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/Argument/UInt32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/Argument/UInt32.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/Argument/UInt32.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/Argument/UInt32.cs.gold -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/Argument/UInt64.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/Argument/UInt64.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/Argument/UInt64.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/Argument/UInt64.cs.gold -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/Argument/UIntPtr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/Argument/UIntPtr.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/Argument/UIntPtr.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/Argument/UIntPtr.cs.gold -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/AsyncVoid/AnonymousMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/AsyncVoid/AnonymousMethod.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/AsyncVoid/AnonymousMethod.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/AsyncVoid/AnonymousMethod.cs.gold -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/AsyncVoid/AsyncVoidMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/AsyncVoid/AsyncVoidMethod.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/AsyncVoid/AsyncVoidMethod.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/AsyncVoid/AsyncVoidMethod.cs.gold -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/AsyncVoid/AsyncVoidMethodXBind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/AsyncVoid/AsyncVoidMethodXBind.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/AsyncVoid/LambdaExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/AsyncVoid/LambdaExpression.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/AsyncVoid/LambdaExpression.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/AsyncVoid/LambdaExpression.cs.gold -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/Await/RedundantCapturedContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/Await/RedundantCapturedContext.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/BaseType/BaseTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/BaseType/BaseTypes.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/BaseType/BaseTypes.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/BaseType/BaseTypes.cs.gold -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/BaseType/QuickFixes/Availability.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/BaseType/QuickFixes/Availability.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/BaseType/QuickFixes/Class.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/BaseType/QuickFixes/Class.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/BaseType/QuickFixes/Class.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/BaseType/QuickFixes/Class.cs.gold -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/BaseType/QuickFixes/Class_Empty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/BaseType/QuickFixes/Class_Empty.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/BaseType/QuickFixes/Class_NonEmpty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/BaseType/QuickFixes/Class_NonEmpty.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/Collection/CausingExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/Collection/CausingExpression.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/Collection/CausingExpression.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/Collection/CausingExpression.cs.gold -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/ConditionalInvocation/Conditional.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/ConditionalInvocation/Conditional.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/ControlFlow/ControlFlow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/ControlFlow/ControlFlow.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/ControlFlow/ControlFlow.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/ControlFlow/ControlFlow.cs.gold -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/DelegateInvoke/DelegateInvoke.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/DelegateInvoke/DelegateInvoke.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/DelegateInvoke/DelegateInvoke.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/DelegateInvoke/DelegateInvoke.cs.gold -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/ExpressionResult/Boolean.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/ExpressionResult/Boolean.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/ExpressionResult/Boolean.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/ExpressionResult/Boolean.cs.gold -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/ExpressionResult/Byte.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/ExpressionResult/Byte.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/ExpressionResult/Byte.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/ExpressionResult/Byte.cs.gold -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/ExpressionResult/Char.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/ExpressionResult/Char.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/ExpressionResult/Char.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/ExpressionResult/Char.cs.gold -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/ExpressionResult/DateOnly.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/ExpressionResult/DateOnly.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/ExpressionResult/DateOnly.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/ExpressionResult/DateOnly.cs.gold -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/ExpressionResult/DateTime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/ExpressionResult/DateTime.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/ExpressionResult/DateTime.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/ExpressionResult/DateTime.cs.gold -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/ExpressionResult/DateTimeOffset.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/ExpressionResult/DateTimeOffset.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/ExpressionResult/Decimal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/ExpressionResult/Decimal.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/ExpressionResult/Decimal.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/ExpressionResult/Decimal.cs.gold -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/ExpressionResult/Double.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/ExpressionResult/Double.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/ExpressionResult/Double.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/ExpressionResult/Double.cs.gold -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/ExpressionResult/Guid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/ExpressionResult/Guid.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/ExpressionResult/Guid.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/ExpressionResult/Guid.cs.gold -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/ExpressionResult/Half.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/ExpressionResult/Half.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/ExpressionResult/Half.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/ExpressionResult/Half.cs.gold -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/ExpressionResult/Int128.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/ExpressionResult/Int128.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/ExpressionResult/Int128.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/ExpressionResult/Int128.cs.gold -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/ExpressionResult/Int16.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/ExpressionResult/Int16.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/ExpressionResult/Int16.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/ExpressionResult/Int16.cs.gold -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/ExpressionResult/Int32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/ExpressionResult/Int32.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/ExpressionResult/Int32.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/ExpressionResult/Int32.cs.gold -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/ExpressionResult/Int64.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/ExpressionResult/Int64.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/ExpressionResult/Int64.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/ExpressionResult/Int64.cs.gold -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/ExpressionResult/IntPtr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/ExpressionResult/IntPtr.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/ExpressionResult/IntPtr.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/ExpressionResult/IntPtr.cs.gold -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/ExpressionResult/Math.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/ExpressionResult/Math.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/ExpressionResult/Math.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/ExpressionResult/Math.cs.gold -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/ExpressionResult/Random.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/ExpressionResult/Random.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/ExpressionResult/Random.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/ExpressionResult/Random.cs.gold -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/ExpressionResult/SByte.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/ExpressionResult/SByte.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/ExpressionResult/SByte.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/ExpressionResult/SByte.cs.gold -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/ExpressionResult/Single.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/ExpressionResult/Single.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/ExpressionResult/Single.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/ExpressionResult/Single.cs.gold -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/ExpressionResult/String.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/ExpressionResult/String.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/ExpressionResult/String.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/ExpressionResult/String.cs.gold -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/ExpressionResult/TimeOnly.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/ExpressionResult/TimeOnly.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/ExpressionResult/TimeOnly.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/ExpressionResult/TimeOnly.cs.gold -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/ExpressionResult/TimeSpan.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/ExpressionResult/TimeSpan.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/ExpressionResult/TimeSpan.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/ExpressionResult/TimeSpan.cs.gold -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/ExpressionResult/TimeSpan_Net9.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/ExpressionResult/TimeSpan_Net9.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/ExpressionResult/UInt128.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/ExpressionResult/UInt128.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/ExpressionResult/UInt128.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/ExpressionResult/UInt128.cs.gold -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/ExpressionResult/UInt16.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/ExpressionResult/UInt16.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/ExpressionResult/UInt16.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/ExpressionResult/UInt16.cs.gold -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/ExpressionResult/UInt32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/ExpressionResult/UInt32.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/ExpressionResult/UInt32.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/ExpressionResult/UInt32.cs.gold -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/ExpressionResult/UInt64.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/ExpressionResult/UInt64.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/ExpressionResult/UInt64.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/ExpressionResult/UInt64.cs.gold -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/ExpressionResult/UIntPtr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/ExpressionResult/UIntPtr.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/ExpressionResult/UIntPtr.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/ExpressionResult/UIntPtr.cs.gold -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/Formatter/Boolean.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/Formatter/Boolean.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/Formatter/Boolean.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/Formatter/Boolean.cs.gold -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/Formatter/Byte.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/Formatter/Byte.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/Formatter/Byte.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/Formatter/Byte.cs.gold -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/Formatter/CastEnum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/Formatter/CastEnum.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/Formatter/CastEnum.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/Formatter/CastEnum.cs.gold -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/Formatter/Char.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/Formatter/Char.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/Formatter/Char.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/Formatter/Char.cs.gold -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/Formatter/DateOnly.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/Formatter/DateOnly.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/Formatter/DateOnly.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/Formatter/DateOnly.cs.gold -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/Formatter/DateTime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/Formatter/DateTime.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/Formatter/DateTime.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/Formatter/DateTime.cs.gold -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/Formatter/DateTimeOffset.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/Formatter/DateTimeOffset.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/Formatter/DateTimeOffset.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/Formatter/DateTimeOffset.cs.gold -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/Formatter/Decimal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/Formatter/Decimal.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/Formatter/Decimal.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/Formatter/Decimal.cs.gold -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/Formatter/Double.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/Formatter/Double.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/Formatter/Double.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/Formatter/Double.cs.gold -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/Formatter/Enum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/Formatter/Enum.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/Formatter/Enum.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/Formatter/Enum.cs.gold -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/Formatter/Guid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/Formatter/Guid.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/Formatter/Guid.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/Formatter/Guid.cs.gold -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/Formatter/Half.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/Formatter/Half.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/Formatter/Half.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/Formatter/Half.cs.gold -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/Formatter/Int128.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/Formatter/Int128.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/Formatter/Int128.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/Formatter/Int128.cs.gold -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/Formatter/Int16.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/Formatter/Int16.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/Formatter/Int16.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/Formatter/Int16.cs.gold -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/Formatter/Int32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/Formatter/Int32.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/Formatter/Int32.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/Formatter/Int32.cs.gold -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/Formatter/Int64.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/Formatter/Int64.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/Formatter/Int64.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/Formatter/Int64.cs.gold -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/Formatter/IntPtr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/Formatter/IntPtr.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/Formatter/IntPtr.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/Formatter/IntPtr.cs.gold -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/Formatter/SByte.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/Formatter/SByte.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/Formatter/SByte.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/Formatter/SByte.cs.gold -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/Formatter/Single.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/Formatter/Single.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/Formatter/Single.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/Formatter/Single.cs.gold -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/Formatter/String.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/Formatter/String.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/Formatter/String.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/Formatter/String.cs.gold -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/Formatter/StringFormatters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/Formatter/StringFormatters.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/Formatter/StringFormatters.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/Formatter/StringFormatters.cs.gold -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/Formatter/TimeOnly.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/Formatter/TimeOnly.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/Formatter/TimeOnly.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/Formatter/TimeOnly.cs.gold -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/Formatter/TimeSpan.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/Formatter/TimeSpan.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/Formatter/TimeSpan.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/Formatter/TimeSpan.cs.gold -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/Formatter/UInt128.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/Formatter/UInt128.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/Formatter/UInt128.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/Formatter/UInt128.cs.gold -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/Formatter/UInt16.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/Formatter/UInt16.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/Formatter/UInt16.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/Formatter/UInt16.cs.gold -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/Formatter/UInt32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/Formatter/UInt32.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/Formatter/UInt32.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/Formatter/UInt32.cs.gold -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/Formatter/UInt64.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/Formatter/UInt64.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/Formatter/UInt64.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/Formatter/UInt64.cs.gold -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/Formatter/UIntPtr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/Formatter/UIntPtr.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/Formatter/UIntPtr.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/Formatter/UIntPtr.cs.gold -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/Linq/NoOpAsyncQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/Linq/NoOpAsyncQuery.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/Linq/NoOpAsyncQuery.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/Linq/NoOpAsyncQuery.cs.gold -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/Linq/NoOpQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/Linq/NoOpQuery.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/Linq/NoOpQuery.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/Linq/NoOpQuery.cs.gold -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/Linq/QuickFixes/NoOpQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/Linq/QuickFixes/NoOpQuery.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/Linq/QuickFixes/NoOpQuery.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/Linq/QuickFixes/NoOpQuery.cs.gold -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/LocalSuppression/LocalSuppression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/LocalSuppression/LocalSuppression.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/MemberInvocation/Boolean.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/MemberInvocation/Boolean.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/MemberInvocation/Boolean.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/MemberInvocation/Boolean.cs.gold -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/MemberInvocation/Byte.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/MemberInvocation/Byte.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/MemberInvocation/Byte.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/MemberInvocation/Byte.cs.gold -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/MemberInvocation/Char.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/MemberInvocation/Char.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/MemberInvocation/Char.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/MemberInvocation/Char.cs.gold -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/MemberInvocation/DateOnly.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/MemberInvocation/DateOnly.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/MemberInvocation/DateOnly.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/MemberInvocation/DateOnly.cs.gold -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/MemberInvocation/DateTime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/MemberInvocation/DateTime.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/MemberInvocation/DateTime.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/MemberInvocation/DateTime.cs.gold -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/MemberInvocation/DateTimeOffset.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/MemberInvocation/DateTimeOffset.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/MemberInvocation/Decimal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/MemberInvocation/Decimal.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/MemberInvocation/Decimal.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/MemberInvocation/Decimal.cs.gold -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/MemberInvocation/Double.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/MemberInvocation/Double.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/MemberInvocation/Double.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/MemberInvocation/Double.cs.gold -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/MemberInvocation/Enumerable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/MemberInvocation/Enumerable.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/MemberInvocation/Enumerable.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/MemberInvocation/Enumerable.cs.gold -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/MemberInvocation/Guid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/MemberInvocation/Guid.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/MemberInvocation/Guid.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/MemberInvocation/Guid.cs.gold -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/MemberInvocation/Int128.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/MemberInvocation/Int128.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/MemberInvocation/Int128.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/MemberInvocation/Int128.cs.gold -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/MemberInvocation/Int16.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/MemberInvocation/Int16.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/MemberInvocation/Int16.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/MemberInvocation/Int16.cs.gold -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/MemberInvocation/Int32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/MemberInvocation/Int32.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/MemberInvocation/Int32.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/MemberInvocation/Int32.cs.gold -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/MemberInvocation/Int64.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/MemberInvocation/Int64.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/MemberInvocation/Int64.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/MemberInvocation/Int64.cs.gold -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/MemberInvocation/IntPtr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/MemberInvocation/IntPtr.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/MemberInvocation/IntPtr.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/MemberInvocation/IntPtr.cs.gold -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/MemberInvocation/Nullable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/MemberInvocation/Nullable.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/MemberInvocation/Nullable.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/MemberInvocation/Nullable.cs.gold -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/MemberInvocation/SByte.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/MemberInvocation/SByte.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/MemberInvocation/SByte.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/MemberInvocation/SByte.cs.gold -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/MemberInvocation/Single.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/MemberInvocation/Single.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/MemberInvocation/Single.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/MemberInvocation/Single.cs.gold -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/MemberInvocation/String.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/MemberInvocation/String.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/MemberInvocation/String.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/MemberInvocation/String.cs.gold -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/MemberInvocation/StringBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/MemberInvocation/StringBuilder.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/MemberInvocation/TimeOnly.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/MemberInvocation/TimeOnly.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/MemberInvocation/TimeOnly.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/MemberInvocation/TimeOnly.cs.gold -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/MemberInvocation/TimeSpan.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/MemberInvocation/TimeSpan.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/MemberInvocation/TimeSpan.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/MemberInvocation/TimeSpan.cs.gold -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/MemberInvocation/UInt128.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/MemberInvocation/UInt128.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/MemberInvocation/UInt128.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/MemberInvocation/UInt128.cs.gold -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/MemberInvocation/UInt16.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/MemberInvocation/UInt16.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/MemberInvocation/UInt16.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/MemberInvocation/UInt16.cs.gold -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/MemberInvocation/UInt32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/MemberInvocation/UInt32.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/MemberInvocation/UInt32.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/MemberInvocation/UInt32.cs.gold -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/MemberInvocation/UInt64.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/MemberInvocation/UInt64.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/MemberInvocation/UInt64.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/MemberInvocation/UInt64.cs.gold -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/MemberInvocation/UIntPtr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/MemberInvocation/UIntPtr.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/MemberInvocation/UIntPtr.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/MemberInvocation/UIntPtr.cs.gold -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/Region/RegionWithSingleElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/Region/RegionWithSingleElement.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/Region/RegionWithinTypeMemberBody.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/Region/RegionWithinTypeMemberBody.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/ValueTask/CodePaths.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/ValueTask/CodePaths.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/ValueTask/CodePaths.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/ValueTask/CodePaths.cs.gold -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/ValueTask/MultipleConsumption.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/ValueTask/MultipleConsumption.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/ValueTask/MultipleConsumption.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/ValueTask/MultipleConsumption.cs.gold -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/ValueTask/QuickFixes/InsertAsTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/ValueTask/QuickFixes/InsertAsTask.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/ValueTask/SingleConsumption.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/ValueTask/SingleConsumption.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/Analyzers/ValueTask/SingleConsumption.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/Analyzers/ValueTask/SingleConsumption.cs.gold -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/ContextActions/EmbedIntoSeeCRef/Availability.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/ContextActions/EmbedIntoSeeCRef/Availability.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/ContextActions/EmbedIntoSeeCRef/ExecuteWord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/ContextActions/EmbedIntoSeeCRef/ExecuteWord.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/ContextActions/EmbraceWithCTags/Availability.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/ContextActions/EmbraceWithCTags/Availability.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/ContextActions/EmbraceWithCTags/ExecuteWord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/ContextActions/EmbraceWithCTags/ExecuteWord.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/data/ContextActions/RemoveAssertNotNull/Execute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/data/ContextActions/RemoveAssertNotNull/Execute.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.Tests/test/nuget.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.Tests/test/nuget.config -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.sln.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.sln.DotSettings -------------------------------------------------------------------------------- /Sources/ReCommendedExtension.slnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension.slnx -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/Analyzers/Annotation/AnnotationAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/Analyzers/Annotation/AnnotationAnalyzer.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/Analyzers/Annotation/AttributeHighlighting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/Analyzers/Annotation/AttributeHighlighting.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/Analyzers/Annotation/ConditionalAnnotationHint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/Analyzers/Annotation/ConditionalAnnotationHint.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/Analyzers/Annotation/ConflictingAnnotationWarning.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/Analyzers/Annotation/ConflictingAnnotationWarning.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/Analyzers/Annotation/InvalidValueRangeBoundaryWarning.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/Analyzers/Annotation/InvalidValueRangeBoundaryWarning.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/Analyzers/Annotation/MissingAnnotationWarning.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/Analyzers/Annotation/MissingAnnotationWarning.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/Analyzers/Annotation/MissingSuppressionJustificationWarning.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/Analyzers/Annotation/MissingSuppressionJustificationWarning.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/Analyzers/Annotation/NotAllowedAnnotationWarning.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/Analyzers/Annotation/NotAllowedAnnotationWarning.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/Analyzers/Annotation/RedundantAnnotationArgumentSuggestion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/Analyzers/Annotation/RedundantAnnotationArgumentSuggestion.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/Analyzers/Annotation/RedundantAnnotationSuggestion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/Analyzers/Annotation/RedundantAnnotationSuggestion.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/Analyzers/Annotation/RedundantNullableAnnotationHint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/Analyzers/Annotation/RedundantNullableAnnotationHint.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/Analyzers/Annotation/RemoveAttributeFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/Analyzers/Annotation/RemoveAttributeFix.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/Analyzers/Annotation/ValueRangeBoundary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/Analyzers/Annotation/ValueRangeBoundary.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/Analyzers/Argument/ArgumentAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/Analyzers/Argument/ArgumentAnalyzer.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/Analyzers/Argument/ArgumentReplacement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/Analyzers/Argument/ArgumentReplacement.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/Analyzers/Argument/Inspections/ArgumentCondition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/Analyzers/Argument/Inspections/ArgumentCondition.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/Analyzers/Argument/Inspections/DuplicateArgument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/Analyzers/Argument/Inspections/DuplicateArgument.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/Analyzers/Argument/Inspections/DuplicateCollectionElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/Analyzers/Argument/Inspections/DuplicateCollectionElement.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/Analyzers/Argument/Inspections/Inspection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/Analyzers/Argument/Inspections/Inspection.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/Analyzers/Argument/Inspections/OtherArgument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/Analyzers/Argument/Inspections/OtherArgument.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/Analyzers/Argument/Inspections/OtherArgumentRange.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/Analyzers/Argument/Inspections/OtherArgumentRange.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/Analyzers/Argument/Inspections/RedundantArgument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/Analyzers/Argument/Inspections/RedundantArgument.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/Analyzers/Argument/Inspections/RedundantArgumentByPosition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/Analyzers/Argument/Inspections/RedundantArgumentByPosition.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/Analyzers/Argument/Inspections/RedundantArgumentRange.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/Analyzers/Argument/Inspections/RedundantArgumentRange.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/Analyzers/Argument/Inspections/RedundantCollectionElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/Analyzers/Argument/Inspections/RedundantCollectionElement.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/Analyzers/Argument/Inspections/ReplacementSignature.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/Analyzers/Argument/Inspections/ReplacementSignature.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/Analyzers/Argument/Inspections/ReplacementSignatureRange.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/Analyzers/Argument/Inspections/ReplacementSignatureRange.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/Analyzers/Argument/RedundantArgumentHint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/Analyzers/Argument/RedundantArgumentHint.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/Analyzers/Argument/RedundantArgumentRangeHint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/Analyzers/Argument/RedundantArgumentRangeHint.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/Analyzers/Argument/RedundantElementHint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/Analyzers/Argument/RedundantElementHint.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/Analyzers/Argument/Rules/ConstructorSignature.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/Analyzers/Argument/Rules/ConstructorSignature.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/Analyzers/Argument/Rules/Member.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/Analyzers/Argument/Rules/Member.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/Analyzers/Argument/Rules/MemberSignature.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/Analyzers/Argument/Rules/MemberSignature.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/Analyzers/Argument/Rules/MethodSignature.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/Analyzers/Argument/Rules/MethodSignature.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/Analyzers/Argument/Rules/RuleDefinitions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/Analyzers/Argument/Rules/RuleDefinitions.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/Analyzers/Argument/UpcomingArgument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/Analyzers/Argument/UpcomingArgument.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/Analyzers/Argument/UseOtherArgumentRangeSuggestion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/Analyzers/Argument/UseOtherArgumentRangeSuggestion.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/Analyzers/Argument/UseOtherArgumentSuggestion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/Analyzers/Argument/UseOtherArgumentSuggestion.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/Analyzers/AsyncVoid/AsyncVoidAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/Analyzers/AsyncVoid/AsyncVoidAnalyzer.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/Analyzers/AsyncVoid/AsyncVoidFunctionExpressionWarning.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/Analyzers/AsyncVoid/AsyncVoidFunctionExpressionWarning.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/Analyzers/AsyncVoid/AvoidAsyncVoidWarning.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/Analyzers/AsyncVoid/AvoidAsyncVoidWarning.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/Analyzers/Await/AwaitAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/Analyzers/Await/AwaitAnalyzer.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/Analyzers/Await/RedundantCapturedContextSuggestion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/Analyzers/Await/RedundantCapturedContextSuggestion.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/Analyzers/BaseType/BaseTypeAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/Analyzers/BaseType/BaseTypeAnalyzer.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/Analyzers/BaseType/RemoveRedundantBaseTypeDeclarationHint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/Analyzers/BaseType/RemoveRedundantBaseTypeDeclarationHint.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/Analyzers/Collection/CollectionAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/Analyzers/Collection/CollectionAnalyzer.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/Analyzers/Collection/UseEmptyForArrayInitializationWarning.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/Analyzers/Collection/UseEmptyForArrayInitializationWarning.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/Analyzers/ConditionalInvocation/ConditionalInvocationHint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/Analyzers/ConditionalInvocation/ConditionalInvocationHint.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/Analyzers/ControlFlow/Assertion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/Analyzers/ControlFlow/Assertion.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/Analyzers/ControlFlow/AssertionStatement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/Analyzers/ControlFlow/AssertionStatement.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/Analyzers/ControlFlow/ControlFlowAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/Analyzers/ControlFlow/ControlFlowAnalyzer.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/Analyzers/ControlFlow/InlineAssertion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/Analyzers/ControlFlow/InlineAssertion.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/Analyzers/ControlFlow/RedundantInlineAssertionSuggestion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/Analyzers/ControlFlow/RedundantInlineAssertionSuggestion.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/Analyzers/DelegateInvoke/DelegateInvokeAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/Analyzers/DelegateInvoke/DelegateInvokeAnalyzer.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/Analyzers/DelegateInvoke/RedundantDelegateInvokeHint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/Analyzers/DelegateInvoke/RedundantDelegateInvokeHint.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/Analyzers/ExpressionResult/ExpressionResultAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/Analyzers/ExpressionResult/ExpressionResultAnalyzer.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/Analyzers/ExpressionResult/ExpressionResultReplacements.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/Analyzers/ExpressionResult/ExpressionResultReplacements.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/Analyzers/ExpressionResult/Inspections/Inspection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/Analyzers/ExpressionResult/Inspections/Inspection.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/Analyzers/ExpressionResult/Inspections/InspectionContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/Analyzers/ExpressionResult/Inspections/InspectionContext.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/Analyzers/ExpressionResult/Rules/ConstructorSignature.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/Analyzers/ExpressionResult/Rules/ConstructorSignature.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/Analyzers/ExpressionResult/Rules/Member.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/Analyzers/ExpressionResult/Rules/Member.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/Analyzers/ExpressionResult/Rules/MemberSignature.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/Analyzers/ExpressionResult/Rules/MemberSignature.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/Analyzers/ExpressionResult/Rules/MethodSignature.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/Analyzers/ExpressionResult/Rules/MethodSignature.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/Analyzers/ExpressionResult/Rules/RuleDefinitions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/Analyzers/ExpressionResult/Rules/RuleDefinitions.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/Analyzers/ExpressionResult/UseExpressionResultSuggestion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/Analyzers/ExpressionResult/UseExpressionResultSuggestion.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/Analyzers/Formatter/FormatElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/Analyzers/Formatter/FormatElement.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/Analyzers/Formatter/FormatterAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/Analyzers/Formatter/FormatterAnalyzer.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/Analyzers/Formatter/PassOtherFormatSpecifierSuggestion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/Analyzers/Formatter/PassOtherFormatSpecifierSuggestion.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/Analyzers/Formatter/RedundantFormatPrecisionSpecifierHint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/Analyzers/Formatter/RedundantFormatPrecisionSpecifierHint.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/Analyzers/Formatter/RedundantFormatProviderHint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/Analyzers/Formatter/RedundantFormatProviderHint.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/Analyzers/Formatter/RedundantFormatSpecifierHint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/Analyzers/Formatter/RedundantFormatSpecifierHint.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/Analyzers/Formatter/SuspiciousFormatSpecifierWarning.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/Analyzers/Formatter/SuspiciousFormatSpecifierWarning.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/Analyzers/Highlighting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/Analyzers/Highlighting.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/Analyzers/InterfaceImplementation/OverrideEqualsWarning.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/Analyzers/InterfaceImplementation/OverrideEqualsWarning.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/Analyzers/Linq/LinqQueryAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/Analyzers/Linq/LinqQueryAnalyzer.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/Analyzers/Linq/RedundantLinqQueryHint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/Analyzers/Linq/RedundantLinqQueryHint.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/Analyzers/LocalSuppression/LocalSuppressionAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/Analyzers/LocalSuppression/LocalSuppressionAnalyzer.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/Analyzers/LocalSuppression/LocalSuppressionWarning.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/Analyzers/LocalSuppression/LocalSuppressionWarning.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/Analyzers/MemberInvocation/Inspections/BinaryOperator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/Analyzers/MemberInvocation/Inspections/BinaryOperator.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/Analyzers/MemberInvocation/Inspections/Inspection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/Analyzers/MemberInvocation/Inspections/Inspection.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/Analyzers/MemberInvocation/Inspections/Pattern.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/Analyzers/MemberInvocation/Inspections/Pattern.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/Analyzers/MemberInvocation/Inspections/PatternByArgument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/Analyzers/MemberInvocation/Inspections/PatternByArgument.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/Analyzers/MemberInvocation/Inspections/PatternByArguments.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/Analyzers/MemberInvocation/Inspections/PatternByArguments.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/Analyzers/MemberInvocation/Inspections/PropertyOfArray.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/Analyzers/MemberInvocation/Inspections/PropertyOfArray.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/Analyzers/MemberInvocation/Inspections/PropertyOfDateTime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/Analyzers/MemberInvocation/Inspections/PropertyOfDateTime.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/Analyzers/MemberInvocation/Inspections/PropertyOfNullable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/Analyzers/MemberInvocation/Inspections/PropertyOfNullable.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/Analyzers/MemberInvocation/Inspections/PropertyOfString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/Analyzers/MemberInvocation/Inspections/PropertyOfString.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/Analyzers/MemberInvocation/Inspections/RangeIndexer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/Analyzers/MemberInvocation/Inspections/RangeIndexer.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/Analyzers/MemberInvocation/Inspections/TargetType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/Analyzers/MemberInvocation/Inspections/TargetType.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/Analyzers/MemberInvocation/Inspections/UnaryOperator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/Analyzers/MemberInvocation/Inspections/UnaryOperator.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/Analyzers/MemberInvocation/MemberInvocationAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/Analyzers/MemberInvocation/MemberInvocationAnalyzer.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/Analyzers/MemberInvocation/RedundantMethodInvocationHint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/Analyzers/MemberInvocation/RedundantMethodInvocationHint.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/Analyzers/MemberInvocation/ReplacedMethodInvocation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/Analyzers/MemberInvocation/ReplacedMethodInvocation.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/Analyzers/MemberInvocation/Rules/BinaryOperatorOperands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/Analyzers/MemberInvocation/Rules/BinaryOperatorOperands.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/Analyzers/MemberInvocation/Rules/InvocationReplacement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/Analyzers/MemberInvocation/Rules/InvocationReplacement.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/Analyzers/MemberInvocation/Rules/Member.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/Analyzers/MemberInvocation/Rules/Member.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/Analyzers/MemberInvocation/Rules/MemberSignature.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/Analyzers/MemberInvocation/Rules/MemberSignature.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/Analyzers/MemberInvocation/Rules/MethodInvocationContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/Analyzers/MemberInvocation/Rules/MethodInvocationContext.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/Analyzers/MemberInvocation/Rules/MethodSignature.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/Analyzers/MemberInvocation/Rules/MethodSignature.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/Analyzers/MemberInvocation/Rules/PatternReplacement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/Analyzers/MemberInvocation/Rules/PatternReplacement.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/Analyzers/MemberInvocation/Rules/PropertyNameOfNullable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/Analyzers/MemberInvocation/Rules/PropertyNameOfNullable.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/Analyzers/MemberInvocation/Rules/PropertySignature.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/Analyzers/MemberInvocation/Rules/PropertySignature.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/Analyzers/MemberInvocation/Rules/RangeIndexerReplacement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/Analyzers/MemberInvocation/Rules/RangeIndexerReplacement.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/Analyzers/MemberInvocation/Rules/ReplacementMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/Analyzers/MemberInvocation/Rules/ReplacementMethod.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/Analyzers/MemberInvocation/Rules/RuleDefinitions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/Analyzers/MemberInvocation/Rules/RuleDefinitions.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/Analyzers/MemberInvocation/SuspiciousElementAccessWarning.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/Analyzers/MemberInvocation/SuspiciousElementAccessWarning.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/Analyzers/MemberInvocation/UseBinaryOperatorSuggestion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/Analyzers/MemberInvocation/UseBinaryOperatorSuggestion.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/Analyzers/MemberInvocation/UseOtherMethodSuggestion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/Analyzers/MemberInvocation/UseOtherMethodSuggestion.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/Analyzers/MemberInvocation/UsePatternSuggestion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/Analyzers/MemberInvocation/UsePatternSuggestion.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/Analyzers/MemberInvocation/UsePropertySuggestion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/Analyzers/MemberInvocation/UsePropertySuggestion.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/Analyzers/MemberInvocation/UseRangeIndexerSuggestion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/Analyzers/MemberInvocation/UseRangeIndexerSuggestion.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/Analyzers/MemberInvocation/UseStaticPropertySuggestion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/Analyzers/MemberInvocation/UseStaticPropertySuggestion.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/Analyzers/MemberInvocation/UseUnaryOperatorSuggestion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/Analyzers/MemberInvocation/UseUnaryOperatorSuggestion.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/Analyzers/MultipleHighlightings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/Analyzers/MultipleHighlightings.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/Analyzers/Region/RegionAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/Analyzers/Region/RegionAnalyzer.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/Analyzers/Region/RegionHighlighting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/Analyzers/Region/RegionHighlighting.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/Analyzers/Region/RegionWithSingleElementSuggestion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/Analyzers/Region/RegionWithSingleElementSuggestion.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/Analyzers/Region/RegionWithinTypeMemberBodyWarning.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/Analyzers/Region/RegionWithinTypeMemberBodyWarning.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/Analyzers/ValueTask/IntentionalBlockingAttemptWarning.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/Analyzers/ValueTask/IntentionalBlockingAttemptWarning.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/Analyzers/ValueTask/PossibleMultipleConsumptionWarning.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/Analyzers/ValueTask/PossibleMultipleConsumptionWarning.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/Analyzers/ValueTask/ValueTaskAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/Analyzers/ValueTask/ValueTaskAnalyzer.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/ClrTypeNameEqualityComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/ClrTypeNameEqualityComparer.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/ClrTypeNames.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/ClrTypeNames.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/ContextActions/Annotations/AnnotateWith.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/ContextActions/Annotations/AnnotateWith.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/ContextActions/Annotations/AnnotateWithAttributeUsage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/ContextActions/Annotations/AnnotateWithAttributeUsage.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/ContextActions/Annotations/AnnotateWithCodeAnnotation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/ContextActions/Annotations/AnnotateWithCodeAnnotation.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/ContextActions/Annotations/AnnotateWithInstantHandle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/ContextActions/Annotations/AnnotateWithInstantHandle.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/ContextActions/Annotations/AnnotateWithItemNotNull.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/ContextActions/Annotations/AnnotateWithItemNotNull.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/ContextActions/Annotations/AnnotateWithLinqTunnel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/ContextActions/Annotations/AnnotateWithLinqTunnel.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/ContextActions/Annotations/AnnotateWithMustUseReturnValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/ContextActions/Annotations/AnnotateWithMustUseReturnValue.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/ContextActions/Annotations/AnnotateWithNonNegativeValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/ContextActions/Annotations/AnnotateWithNonNegativeValue.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/ContextActions/Annotations/AnnotateWithPure.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/ContextActions/Annotations/AnnotateWithPure.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/ContextActions/Annotations/AnnotateWithValueRange.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/ContextActions/Annotations/AnnotateWithValueRange.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/ContextActions/Annotations/AnnotateWith[A].cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/ContextActions/Annotations/AnnotateWith[A].cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/ContextActions/CodeContracts/AddContractContextAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/ContextActions/CodeContracts/AddContractContextAction.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/ContextActions/CodeContracts/CollectionAllItemsNotNull.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/ContextActions/CodeContracts/CollectionAllItemsNotNull.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/ContextActions/CodeContracts/CollectionCountPositive.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/ContextActions/CodeContracts/CollectionCountPositive.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/ContextActions/CodeContracts/DateTimeTimeOfDayZero.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/ContextActions/CodeContracts/DateTimeTimeOfDayZero.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/ContextActions/CodeContracts/EnumBetweenFirstAndLast.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/ContextActions/CodeContracts/EnumBetweenFirstAndLast.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/ContextActions/CodeContracts/EnumFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/ContextActions/CodeContracts/EnumFlags.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/ContextActions/CodeContracts/EnumKnownValues.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/ContextActions/CodeContracts/EnumKnownValues.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/ContextActions/CodeContracts/GuidNonEmpty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/ContextActions/CodeContracts/GuidNonEmpty.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/ContextActions/CodeContracts/IntPtrUIntPtr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/ContextActions/CodeContracts/IntPtrUIntPtr.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/ContextActions/CodeContracts/IntPtrUIntPtrNonZero.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/ContextActions/CodeContracts/IntPtrUIntPtrNonZero.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/ContextActions/CodeContracts/IntPtrUIntPtrZero.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/ContextActions/CodeContracts/IntPtrUIntPtrZero.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/ContextActions/CodeContracts/Internal/ContractInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/ContextActions/CodeContracts/Internal/ContractInfo.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/ContextActions/CodeContracts/Internal/ContractKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/ContextActions/CodeContracts/Internal/ContractKind.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/ContextActions/CodeContracts/Internal/FieldContractInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/ContextActions/CodeContracts/Internal/FieldContractInfo.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/ContextActions/CodeContracts/Internal/MethodContractInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/ContextActions/CodeContracts/Internal/MethodContractInfo.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/ContextActions/CodeContracts/NotNull.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/ContextActions/CodeContracts/NotNull.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/ContextActions/CodeContracts/Numeric.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/ContextActions/CodeContracts/Numeric.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/ContextActions/CodeContracts/NumericPositive.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/ContextActions/CodeContracts/NumericPositive.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/ContextActions/CodeContracts/NumericZero.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/ContextActions/CodeContracts/NumericZero.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/ContextActions/CodeContracts/SignedNumeric.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/ContextActions/CodeContracts/SignedNumeric.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/ContextActions/CodeContracts/SignedNumericNegative.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/ContextActions/CodeContracts/SignedNumericNegative.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/ContextActions/CodeContracts/SignedNumericNonZero.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/ContextActions/CodeContracts/SignedNumericNonZero.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/ContextActions/CodeContracts/SignedNumericZeroOrNegative.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/ContextActions/CodeContracts/SignedNumericZeroOrNegative.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/ContextActions/CodeContracts/SignedNumericZeroOrPositive.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/ContextActions/CodeContracts/SignedNumericZeroOrPositive.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/ContextActions/CodeContracts/StringNotNullAndNotEmpty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/ContextActions/CodeContracts/StringNotNullAndNotEmpty.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/ContextActions/CodeContracts/TimeSpan.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/ContextActions/CodeContracts/TimeSpan.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/ContextActions/CodeContracts/TimeSpanNegative.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/ContextActions/CodeContracts/TimeSpanNegative.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/ContextActions/CodeContracts/TimeSpanNonZero.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/ContextActions/CodeContracts/TimeSpanNonZero.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/ContextActions/CodeContracts/TimeSpanPositive.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/ContextActions/CodeContracts/TimeSpanPositive.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/ContextActions/CodeContracts/TimeSpanZero.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/ContextActions/CodeContracts/TimeSpanZero.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/ContextActions/CodeContracts/TimeSpanZeroOrNegative.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/ContextActions/CodeContracts/TimeSpanZeroOrNegative.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/ContextActions/CodeContracts/TimeSpanZeroOrPositive.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/ContextActions/CodeContracts/TimeSpanZeroOrPositive.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/ContextActions/ContextAction[N].cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/ContextActions/ContextAction[N].cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/ContextActions/ConvertToLinqQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/ContextActions/ConvertToLinqQuery.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/ContextActions/DocComments/EmbedIntoParamrefName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/ContextActions/DocComments/EmbedIntoParamrefName.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/ContextActions/DocComments/EmbedIntoSeeCRef.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/ContextActions/DocComments/EmbedIntoSeeCRef.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/ContextActions/DocComments/EmbedIntoTypeparamrefName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/ContextActions/DocComments/EmbedIntoTypeparamrefName.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/ContextActions/DocComments/EmbraceWithCTags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/ContextActions/DocComments/EmbraceWithCTags.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/ContextActions/DocComments/EncompassInDocComment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/ContextActions/DocComments/EncompassInDocComment.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/ContextActions/DocComments/ReflowDocComments.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/ContextActions/DocComments/ReflowDocComments.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/ContextActions/DocComments/XmlDocCommentContextAction[N].cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/ContextActions/DocComments/XmlDocCommentContextAction[N].cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/ContextActions/RemoveAssertNotNull.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/ContextActions/RemoveAssertNotNull.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/ContextActions/SetLanguageInjection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/ContextActions/SetLanguageInjection.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/ContextActions/Strings/ReplaceIsNullOrEmpty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/ContextActions/Strings/ReplaceIsNullOrEmpty.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/ContextActions/ToggleReturnTypeOfAsyncMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/ContextActions/ToggleReturnTypeOfAsyncMethods.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/Debug.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/Debug.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/Extensions/AttributesOwnerDeclarationExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/Extensions/AttributesOwnerDeclarationExtensions.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/Extensions/AttributesOwnerExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/Extensions/AttributesOwnerExtensions.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/Extensions/CSharpArgumentExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/Extensions/CSharpArgumentExtensions.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/Extensions/CSharpArgumentsOwnerExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/Extensions/CSharpArgumentsOwnerExtensions.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/Extensions/CSharpExpressionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/Extensions/CSharpExpressionExtensions.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/Extensions/CSharpInvocationInfoExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/Extensions/CSharpInvocationInfoExtensions.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/Extensions/CSharpTreeNodeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/Extensions/CSharpTreeNodeExtensions.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/Extensions/CharExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/Extensions/CharExtensions.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/Extensions/Collections/CollectionCreation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/Extensions/Collections/CollectionCreation.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/Extensions/Collections/EmptyCollectionCreation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/Extensions/Collections/EmptyCollectionCreation.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/Extensions/DeclarationExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/Extensions/DeclarationExtensions.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/Extensions/DeclaredTypeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/Extensions/DeclaredTypeExtensions.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/Extensions/ElementProblemAnalyzerDataExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/Extensions/ElementProblemAnalyzerDataExtensions.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/Extensions/KeyValuePairExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/Extensions/KeyValuePairExtensions.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/Extensions/LinqExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/Extensions/LinqExtensions.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/Extensions/MemberFinding/ConstructorSignature.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/Extensions/MemberFinding/ConstructorSignature.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/Extensions/MemberFinding/MemberFinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/Extensions/MemberFinding/MemberFinder.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/Extensions/MemberFinding/MethodSignature.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/Extensions/MemberFinding/MethodSignature.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/Extensions/MemberFinding/Parameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/Extensions/MemberFinding/Parameter.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/Extensions/MemberFinding/PropertySignature.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/Extensions/MemberFinding/PropertySignature.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/Extensions/MethodExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/Extensions/MethodExtensions.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/Extensions/NumberInfos/FormatSpecifiers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/Extensions/NumberInfos/FormatSpecifiers.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/Extensions/NumberInfos/Half.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/Extensions/NumberInfos/Half.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/Extensions/NumberInfos/Int128.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/Extensions/NumberInfos/Int128.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/Extensions/NumberInfos/NumberInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/Extensions/NumberInfos/NumberInfo.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/Extensions/NumberInfos/NumberInfo[N].cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/Extensions/NumberInfos/NumberInfo[N].cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/Extensions/NumberInfos/TryGetConstant[N].cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/Extensions/NumberInfos/TryGetConstant[N].cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/Extensions/NumberInfos/UInt128.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/Extensions/NumberInfos/UInt128.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/Extensions/ReferenceExpressionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/Extensions/ReferenceExpressionExtensions.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/Extensions/StringExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/Extensions/StringExtensions.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/Extensions/StructExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/Extensions/StructExtensions.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/Extensions/TreeNodeCollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/Extensions/TreeNodeCollectionExtensions.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/Extensions/TreeNodeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/Extensions/TreeNodeExtensions.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/Extensions/TypeElementExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/Extensions/TypeElementExtensions.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/Extensions/TypeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/Extensions/TypeExtensions.cs -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/Properties/ReCommendedExtension.public.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/Properties/ReCommendedExtension.public.snk -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/Properties/launchSettings.json -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/ReCommendedExtension.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/ReCommendedExtension.csproj -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/ReadMe.txt -------------------------------------------------------------------------------- /Sources/ReCommendedExtension/Zone.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prodot/ReCommended-Extension/HEAD/Sources/ReCommendedExtension/Zone.cs --------------------------------------------------------------------------------