├── .editorconfig ├── .gitattributes ├── .github └── dependabot.yml ├── .gitignore ├── LICENSE ├── README.md ├── RELEASE_NOTES.md ├── ValidCode.Netcore ├── .editorconfig ├── AssemblyInfo.cs ├── IntControl.cs ├── Issue345.cs ├── NullableIntControl.cs ├── NullableStringControl.cs ├── Repro │ └── Issue292.cs ├── StringControl.cs ├── Themes │ └── Generic.xaml └── ValidCode.Netcore.csproj ├── ValidCode ├── .editorconfig ├── AssemblyAttributes.cs ├── AttachedProperties │ ├── ScrollViewer.cs │ ├── WithNullChecks.cs │ ├── WithStyleProperty.cs │ └── WithStylePropertyNotAnnotated.cs ├── Commands.cs ├── Converters │ ├── BoolToVisibilityConverter.cs │ ├── DirectoryInfoStringConverter.cs │ ├── PartialConverter.Part1.cs │ ├── PartialConverter.Part2.cs │ ├── RelayConverter.cs │ └── ValueConverterGroup.cs ├── DependencyProperties │ ├── AddOwner.cs │ ├── AttachedProperties1.cs │ ├── AttachedProperties2.cs │ ├── BooleanBoxes.cs │ ├── Chart.cs │ ├── CommonValidation.cs │ ├── ControlNewStyle.cs │ ├── ControlOldStyle.cs │ ├── Date.cs │ ├── FooControl.cs │ ├── GenericControl.cs │ ├── GenericNullable.cs │ ├── Issue210.cs │ ├── Issue282.cs │ ├── StringControl.cs │ ├── StringControlNullableDisabled.cs │ ├── UsingBoolBoxes.cs │ ├── WithCallbacks.cs │ ├── WithDependsOn.cs │ ├── WithMultidimensional.cs │ ├── WithProtectedInstanceCallback.cs │ ├── WithStyleTypedProperty.cs │ ├── WithValidateValueCallback.cs │ └── WithXamlSetTypeConverter.cs ├── IntControl.cs ├── Issues │ ├── Issue277.cs │ ├── Issue278.cs │ └── Issue376.cs ├── MarkupExtensions │ ├── EnumerableExtension.cs │ ├── GenericExtension.cs │ ├── Id2Extension.cs │ └── IdExtension.cs ├── NullableIntControl.cs ├── Recursion │ ├── MarkupExtension.cs │ ├── RecursiveConverter.cs │ └── WithDependencyProperties.cs ├── Repro │ ├── Arrow.cs │ ├── ArrowEnds.cs │ ├── ArrowLineBase.cs │ ├── Issue291.cs │ ├── Issue293.cs │ ├── Issue354.TypeA.cs │ └── Issue354.TypeB.cs ├── RoutedEvents │ ├── FooControl.cs │ ├── RoutedEventHelper.cs │ ├── ValueChangedEventArgs.cs │ └── WithCustomEventHandler.cs ├── SetValueTypes.cs ├── StringControl.cs ├── TemplateParts │ └── FooControl.cs ├── Themes │ └── Generic.xaml ├── ValidCode.csproj ├── WithEnum │ ├── Foo.cs │ ├── FooControl.cs │ └── FooEnum.cs └── WithSetMarkupExtensionAttribute.cs ├── WpfAnalyzers.Benchmarks ├── .editorconfig ├── AssemblyAttributes.cs ├── BenchmarkTests.cs ├── Benchmarks │ ├── AllBenchmarks.cs │ ├── AllBenchmarks.md │ ├── AttributeAnalyzerBenchmarks.cs │ ├── AttributeAnalyzerBenchmarks.md │ ├── CallbackAnalyzerBenchmarks.cs │ ├── CallbackAnalyzerBenchmarks.md │ ├── ClrMethodDeclarationAnalyzerBenchmarks.cs │ ├── ClrMethodDeclarationAnalyzerBenchmarks.md │ ├── ClrPropertyDeclarationAnalyzerBenchmarks.cs │ ├── ClrPropertyDeclarationAnalyzerBenchmarks.md │ ├── CodeGen │ │ ├── Code.cs │ │ └── CodeGen.cs │ ├── ComponentResourceKeyAnalyzerBenchmarks.cs │ ├── ComponentResourceKeyAnalyzerBenchmarks.md │ ├── DependencyPropertyBackingFieldOrPropertyAnalyzerBenchmarks.cs │ ├── DependencyPropertyBackingFieldOrPropertyAnalyzerBenchmarks.md │ ├── GetTemplateChildAnalyzerBenchmarks.cs │ ├── GetTemplateChildAnalyzerBenchmarks.md │ ├── OverrideMetadataAnalyzerBenchmarks.cs │ ├── OverrideMetadataAnalyzerBenchmarks.md │ ├── PropertyMetadataAnalyzerBenchmarks.cs │ ├── PropertyMetadataAnalyzerBenchmarks.md │ ├── RegistrationAnalyzerBenchmarks.cs │ ├── RegistrationAnalyzerBenchmarks.md │ ├── RoutedCommandCreationAnalyzerBenchmarks.cs │ ├── RoutedCommandCreationAnalyzerBenchmarks.md │ ├── RoutedEventBackingFieldOrPropertyAnalyzerBenchmarks.cs │ ├── RoutedEventBackingFieldOrPropertyAnalyzerBenchmarks.md │ ├── RoutedEventCallbackAnalyzerBenchmarks.cs │ ├── RoutedEventCallbackAnalyzerBenchmarks.md │ ├── RoutedEventEventDeclarationAnalyzerBenchmarks.cs │ ├── RoutedEventEventDeclarationAnalyzerBenchmarks.md │ ├── Sa1202SuppressorBenchmarks.cs │ ├── SetValueAnalyzerBenchmarks.cs │ ├── SetValueAnalyzerBenchmarks.md │ ├── ValueConverterAnalyzerBenchmarks.cs │ ├── ValueConverterAnalyzerBenchmarks.md │ ├── WPF0011ContainingTypeShouldBeRegisteredOwnerBenchmarks.cs │ ├── WPF0011ContainingTypeShouldBeRegisteredOwnerBenchmarks.md │ ├── WPF0015RegisteredOwnerTypeMustBeDependencyObjectBenchmarks.cs │ ├── WPF0015RegisteredOwnerTypeMustBeDependencyObjectBenchmarks.md │ ├── WPF0041SetMutableUsingSetCurrentValueBenchmarks.cs │ ├── WPF0041SetMutableUsingSetCurrentValueBenchmarks.md │ ├── WPF0050XmlnsPrefixMustMatchXmlnsDefinitionBenchmarks.cs │ ├── WPF0050XmlnsPrefixMustMatchXmlnsDefinitionBenchmarks.md │ ├── WPF0052XmlnsDefinitionsDoesNotMapAllNamespacesBenchmarks.cs │ ├── WPF0052XmlnsDefinitionsDoesNotMapAllNamespacesBenchmarks.md │ ├── WPF0080MarkupExtensionDoesNotHaveAttributeBenchmarks.cs │ ├── WPF0080MarkupExtensionDoesNotHaveAttributeBenchmarks.md │ ├── WPF0083UseConstructorArgumentAttributeBenchmarks.cs │ └── WPF0083UseConstructorArgumentAttributeBenchmarks.md ├── ModuleInitializer.cs ├── Program.cs ├── WpfAnalyzers.Benchmarks.csproj └── WpfAnalyzers.Benchmarks.csproj.DotSettings ├── WpfAnalyzers.Demo.sln.DotSettings ├── WpfAnalyzers.Test.Netcore ├── .editorconfig ├── AssemblyAttributes.cs ├── ModuleInitializer.cs ├── ValidWithAll.cs ├── WPF0012ClrPropertyShouldMatchRegisteredTypeTests │ ├── CodeFix.cs │ └── Valid.cs ├── WPF0013ClrMethodMustMatchRegisteredTypeTests │ ├── Diagnostics.cs │ └── Valid.cs ├── WPF0022DirectCastValueToExactTypeTests │ ├── CodeFix.cs │ └── Valid.cs ├── WPF0024ParameterShouldBeNullableTests │ ├── CodeFix.cs │ └── Valid.cs └── WpfAnalyzers.Test.Netcore.csproj ├── WpfAnalyzers.Test ├── .editorconfig ├── AssemblyAttributes.cs ├── DocumentationTests.cs ├── Helpers │ ├── BackingFieldOrPropertyTests.cs │ ├── DependencyObjectTests.cs │ ├── DependencyPropertyTests.Register.cs │ ├── EventManagerTests.cs │ ├── InvocationExpressionSyntaxExtTests.cs │ ├── RegisterInvocationTests.cs │ └── ValueConverterTests.cs ├── ImplementValueConverterFixTests │ ├── CodeFix.cs │ └── FixAll.cs ├── ModuleInitializer.cs ├── Refactorings │ ├── AutoPropertyRefactoringTests.cs │ ├── EventRefactoringTests.cs │ └── ReadOnlyRefactoringTests.cs ├── ReproBox.cs ├── Sandbox.cs ├── ValidWithAll.cs ├── WPF0001BackingFieldShouldMatchRegisteredNameTests │ ├── CodeFix.cs │ └── Valid.cs ├── WPF0002BackingFieldShouldMatchRegisteredNameTests │ ├── CodeFix.cs │ └── Valid.cs ├── WPF0003ClrPropertyShouldMatchRegisteredNameTests │ ├── CodeFix.cs │ └── Valid.cs ├── WPF0004ClrMethodShouldMatchRegisteredNameTests │ ├── CodeFix.cs │ └── Valid.cs ├── WPF0005PropertyChangedCallbackShouldMatchRegisteredNameTests │ ├── CodeFix.StaticCallback.cs │ ├── CodeFix.cs │ ├── Diagnostics.cs │ └── Valid.cs ├── WPF0006CoerceValueCallbackShouldMatchRegisteredNameTests │ ├── CodeFix.cs │ ├── Diagnostics.cs │ └── Valid.cs ├── WPF0007ValidateValueCallbackCallbackShouldMatchRegisteredNameTests │ ├── CodeFix.cs │ └── Valid.cs ├── WPF0008DependsOnTargetTests │ ├── Diagnostics.cs │ └── Valid.cs ├── WPF0010DefaultValueMustMatchRegisteredTypeTests │ ├── Diagnostics.cs │ └── Valid.cs ├── WPF0011ContainingTypeShouldBeRegisteredOwnerTests │ ├── CodeFix.cs │ └── Valid.cs ├── WPF0012ClrPropertyShouldMatchRegisteredTypeTests │ ├── CodeFix.cs │ └── Valid.cs ├── WPF0013ClrMethodMustMatchRegisteredTypeTests │ ├── Diagnostics.cs │ └── Valid.cs ├── WPF0014SetValueMustUseRegisteredTypeTests │ ├── Diagnostics.cs │ └── Valid.cs ├── WPF0015RegisteredOwnerTypeMustBeDependencyObjectTests │ ├── Diagnostics.cs │ └── Valid.cs ├── WPF0016DefaultValueIsSharedReferenceTypeTests │ ├── Diagnostics.cs │ └── Valid.cs ├── WPF0017MetadataMustBeAssignableTests │ ├── Diagnostics.cs │ └── Valid.cs ├── WPF0018DefaultStyleKeyPropertyOverrideMetadataArgumentTests │ ├── Diagnostics.cs │ └── Valid.cs ├── WPF0019CastSenderToCorrectTypeTests │ ├── CodeFix.cs │ └── Valid.cs ├── WPF0020CastValueToCorrectTypeTests │ ├── CodeFix.cs │ └── Valid.cs ├── WPF0021DirectCastSenderToExactTypeTests │ ├── CodeFix.cs │ ├── FixAll.cs │ └── Valid.cs ├── WPF0022DirectCastValueToExactTypeTests │ ├── CodeFix.cs │ └── Valid.cs ├── WPF0023ConvertToLambdaTests │ ├── CodeFix.cs │ ├── CodeFixRegistrationAnalyzer.cs │ └── Valid.cs ├── WPF0030BackingFieldShouldBeStaticReadonlyTests │ ├── CodeFix.Field.cs │ ├── CodeFix.Property.cs │ ├── FixAll.cs │ └── Valid.cs ├── WPF0031FieldOrderTests │ ├── CodeFix.cs │ └── Valid.cs ├── WPF0032ClrPropertyGetAndSetSameDependencyPropertyTests │ ├── Diagnostics.cs │ └── Valid.cs ├── WPF0033UseAttachedPropertyBrowsableForTypeAttributeTests │ ├── CodeFix.cs │ └── Valid.cs ├── WPF0034AttachedPropertyBrowsableForTypeAttributeArgumentTests │ ├── CodeFix.cs │ └── Valid.cs ├── WPF0035ClrPropertyUseSetValueInSetterTests │ ├── CodeFix.cs │ └── Valid.cs ├── WPF0036AvoidSideEffectsInClrAccessorsTests │ ├── Diagnostics.cs │ └── Valid.cs ├── WPF0040SetUsingDependencyPropertyKeyTests │ ├── CodeFix.cs │ └── Valid.cs ├── WPF0041SetMutableUsingSetCurrentValueTests │ ├── CodeFix.cs │ └── Valid.cs ├── WPF0042AvoidSideEffectsInClrAccessorsTests │ ├── Diagnostics.cs │ └── Valid.cs ├── WPF0043DoNotUseSetCurrentValueForDataContextTests │ ├── CodeFix.cs │ └── Valid.cs ├── WPF0050XmlnsPrefixMustMatchXmlnsDefinitionTests │ ├── Diagnostics.cs │ └── Valid.cs ├── WPF0051XmlnsDefinitionMustMapExistingNamespaceTests │ ├── Diagnostics.cs │ └── Valid.cs ├── WPF0052XmlnsDefinitionsDoesNotMapAllNamespacesTests │ ├── CodeFix.cs │ └── Valid.cs ├── WPF0060DocumentDependencyPropertyBackingMemberTests │ ├── CodeFix.cs │ └── Valid.cs ├── WPF0061ClrMethodShouldHaveDocsTests │ ├── CodeFix.cs │ ├── FixAll.cs │ └── Valid.cs ├── WPF0062DocumentPropertyChangedCallbackTests │ ├── CodeFix.cs │ └── Valid.cs ├── WPF0070ConverterDoesNotHaveDefaultFieldTests │ ├── CodeFix.cs │ └── Valid.cs ├── WPF0071ConverterDoesNotHaveAttributeTests │ ├── CodeFix.cs │ └── Valid.cs ├── WPF0072ValueConversionMustUseCorrectTypesTests │ ├── CodeFix.cs │ └── Valid.cs ├── WPF0073ConverterDoesNotHaveAttributeUnknownTypes │ ├── CodeFix.cs │ └── Valid.cs ├── WPF0074DefaultMemberOfWrongTypeTests │ ├── Diagnostics.cs │ └── Valid.cs ├── WPF0080MarkupExtensionDoesNotHaveAttributeTests │ ├── CodeFix.cs │ └── Valid.cs ├── WPF0081MarkupExtensionReturnTypeMustUseCorrectTypeTests │ ├── CodeFix.cs │ └── Valid.cs ├── WPF0082ConstructorArgumentTests │ ├── CodeFix.cs │ └── Valid.cs ├── WPF0083UseConstructorArgumentAttributeTests │ ├── CodeFix.cs │ └── Valid.cs ├── WPF0084XamlSetMarkupExtensionAttributeTargetTests │ ├── Diagnostics.cs │ └── Valid.cs ├── WPF0085XamlSetTypeConverterTargetTests │ ├── Diagnostics.cs │ └── Valid.cs ├── WPF0090RegisterClassHandlerCallbackNameShouldMatchEventTests │ ├── CodeFix.cs │ └── Valid.cs ├── WPF0091AddAndRemoveHandlerCallbackNameShouldMatchEventTests │ ├── CodeFix.cs │ └── Valid.cs ├── WPF0092RegisterClassHandlerDelegateType │ ├── CodeFix.cs │ └── Valid.cs ├── WPF0100BackingFieldShouldMatchRegisteredNameTests │ ├── CodeFix.cs │ └── Valid.cs ├── WPF0101RegisterContainingTypeAsOwnerTests │ ├── CodeFix.cs │ └── Valid.cs ├── WPF0102EventDeclarationNameTests │ ├── CodeFix.cs │ └── Valid.cs ├── WPF0103EventDeclarationAddRemoveTests │ ├── Diagnostics.cs │ └── Valid.cs ├── WPF0104EventDeclarationAddHandlerInAddTests │ ├── Diagnostics.cs │ └── Valid.cs ├── WPF0105EventDeclarationRemoveHandlerInRemoveTests │ ├── Diagnostics.cs │ └── Valid.cs ├── WPF0106EventDeclarationUseRegisteredHandlerTypeTests │ ├── Diagnostics.cs │ └── Valid.cs ├── WPF0107BackingMemberShouldBeStaticReadonlyTests │ ├── CodeFix.cs │ └── Valid.cs ├── WPF0108DocumentRoutedEventBackingMemberTests │ ├── CodeFix.cs │ └── Valid.cs ├── WPF0120RegisterContainingMemberAsNameForRoutedCommandTests │ ├── CodeFix.cs │ └── Valid.cs ├── WPF0121RegisterContainingTypeAsOwnerForRoutedCommandTests │ ├── CodeFix.cs │ └── Valid.cs ├── WPF0122RegisterRoutedCommandTests │ ├── CodeFix.cs │ └── Valid.cs ├── WPF0123BackingFieldShouldBeStaticReadonlyTests │ ├── CodeFix.cs │ └── Valid.cs ├── WPF0130UseTemplatePartAttributeTests │ ├── CodeFix.cs │ └── Valid.cs ├── WPF0131TemplatePartTypeTests │ ├── Diagnostics.cs │ └── Valid.cs ├── WPF0132UsePartPrefixTests │ ├── Diagnostics.cs │ └── Valid.cs ├── WPF0133ContentPropertyTargetTests │ ├── Diagnostics.cs │ └── Valid.cs ├── WPF0140UseContainingTypeComponentResourceTests │ ├── CodeFix.cs │ └── Valid.cs ├── WPF0141UseContainingMemberComponentResourceKeyTests │ ├── CodeFix.cs │ └── Valid.cs ├── WPF0150UseNameofInsteadOfLiteralTests │ ├── CodeFix.cs │ └── Valid.cs ├── WPF0151UseNameofInsteadOfConstantTests │ ├── CodeFix.cs │ └── Valid.cs ├── WPF0170StyleTypedPropertyPropertyTargetTests │ ├── Diagnostics.cs │ └── Valid.cs ├── WPF0171StyleTypedPropertyTypeTests │ ├── Diagnostics.cs │ └── Valid.cs ├── WPF0172StyleTypedPropertyProvidedTests │ ├── Diagnostics.cs │ └── Valid.cs ├── WPF0173StyleTypedPropertyStyleTargetTypeTests │ ├── Diagnostics.cs │ └── Valid.cs ├── WPF0174StyleTypedPropertyStyleSpecifiedTests │ ├── Diagnostics.cs │ └── Valid.cs ├── WPF0175StyleTypedPropertyPropertyUniqueTests │ ├── Diagnostics.cs │ └── Valid.cs ├── WPF0176StyleTypedPropertyMissingTests │ ├── Diagnostics.cs │ └── Valid.cs ├── WpfAnalyzers.Test.csproj └── WpfAnalyzers.Test.csproj.DotSettings ├── WpfAnalyzers.Vsix ├── Properties │ └── launchSettings.json ├── Reset.txt ├── WpfAnalyzers.Vsix.csproj └── source.extension.vsixmanifest ├── WpfAnalyzers.sln ├── WpfAnalyzers.sln.DotSettings ├── WpfAnalyzers.snk ├── WpfAnalyzers ├── .editorconfig ├── AnalyzerCategory.cs ├── Analyzers │ ├── AttributeAnalyzer.cs │ ├── CallbackAnalyzer.cs │ ├── ClrMethodDeclarationAnalyzer.cs │ ├── ClrPropertyDeclarationAnalyzer.cs │ ├── ComponentResourceKeyAnalyzer.cs │ ├── DependencyPropertyBackingFieldOrPropertyAnalyzer.cs │ ├── GetTemplateChildAnalyzer.cs │ ├── OverrideMetadataAnalyzer.cs │ ├── PropertyMetadataAnalyzer.cs │ ├── RegistrationAnalyzer.cs │ ├── RoutedCommandCreationAnalyzer.cs │ ├── RoutedEventBackingFieldOrPropertyAnalyzer.cs │ ├── RoutedEventCallbackAnalyzer.cs │ ├── RoutedEventEventDeclarationAnalyzer.cs │ ├── SetValueAnalyzer.cs │ └── ValueConverterAnalyzer.cs ├── AssemblyAttributes.cs ├── CodeFixes │ ├── AddAttributeListFix.cs │ ├── AddDefaultMemberFix.cs │ ├── AttachedPropertyBrowsableForTypeArgumentFix.cs │ ├── AttachedPropertyBrowsableForTypeAttributeFix.cs │ ├── CastFix.cs │ ├── ChangeTypeofFix.cs │ ├── ComponentResourceKeyFix.cs │ ├── ConstructorArgumentAttributeArgumentFix.cs │ ├── ConstructorArgumentAttributeFix.cs │ ├── ConvertToLambdaFix.cs │ ├── DocumentationFix.cs │ ├── Helpers │ │ └── SyntaxTokenListExt.cs │ ├── ImplementValueConverterFix.cs │ ├── MakeFieldStaticReadonlyFix.cs │ ├── MakeNullableFix.cs │ ├── MakePropertyStaticReadonlyFix.cs │ ├── MarkupExtensionReturnTypeAttributeFix.cs │ ├── MoveFix.cs │ ├── RegisterRoutedCommandFix.cs │ ├── RenameMemberFix.cs │ ├── UseContainingTypeFix.cs │ ├── UseCorrectDelegateFix.cs │ ├── UseDependencyPropertyKeyFix.cs │ ├── UseNameofFix.cs │ ├── UseRegisteredTypeFix.cs │ ├── UseSetCurrentValueFix.cs │ ├── UseSetValueFix.cs │ ├── ValueConversionAttributeArgumentFix.cs │ ├── ValueConversionAttributeFix.cs │ └── XmlnsDefinitionFix.cs ├── Descriptors.cs ├── Helpers │ ├── ArgumentAndValue.cs │ ├── BackingFieldOrProperty.cs │ ├── Callback.cs │ ├── ClrProperty.cs │ ├── CoerceValueCallback.cs │ ├── ConstructorArgument.cs │ ├── DependencyObject.cs │ ├── DependencyProperty.cs │ ├── DocComment.cs │ ├── EventManager.cs │ ├── GetAttached.cs │ ├── KnownSymbols │ │ ├── DependencyObjectType.cs │ │ ├── DependencyPropertyKeyType.cs │ │ ├── DependencyPropertyType.cs │ │ ├── EventManagerType.cs │ │ ├── FrameworkElementType.cs │ │ ├── KnownSymbols.cs │ │ ├── ObjectType.cs │ │ └── XmlnsDefinitionAttributeType.cs │ ├── MarkupExtension.cs │ ├── PropertyChangedCallback.cs │ ├── PropertyMetaData.cs │ ├── SetAttached.cs │ ├── SymbolHelpers │ │ ├── FieldOrPropertyExt.cs │ │ ├── FieldSymbolExt.cs │ │ ├── Mutable.cs │ │ └── TypeSymbolExt.cs │ ├── SyntaxNodeAnalysisContextExt.cs │ ├── SyntaxtTreeHelpers │ │ ├── AttributeExt.cs │ │ ├── ExpressionSyntaxExt.cs │ │ ├── InvocationExpressionSyntaxExt.cs │ │ ├── MethodOrAccessor.cs │ │ ├── ObjectCreationExpressionSyntaxExt.cs │ │ └── TypeSymbol.cs │ ├── ValidateValueCallback.cs │ ├── ValueConverter.cs │ ├── Virtual.cs │ └── Walkers │ │ ├── ConversionWalker.cs │ │ ├── InvocationWalker.cs │ │ └── ReturnValueWalker.cs ├── Refactorings │ ├── AutoPropertyRefactoring.cs │ ├── EventRefactoring.cs │ └── ReadOnlyRefactoring.cs ├── Suppressors │ └── Sa1202Suppressor.cs ├── WPF0011ContainingTypeShouldBeRegisteredOwner.cs ├── WPF0015RegisteredOwnerTypeMustBeDependencyObject.cs ├── WPF0041SetMutableUsingSetCurrentValue.cs ├── WPF0050XmlnsPrefixMustMatchXmlnsDefinition.cs ├── WPF0052XmlnsDefinitionsDoesNotMapAllNamespaces.cs ├── WPF0080MarkupExtensionDoesNotHaveAttribute.cs ├── WPF0083UseConstructorArgumentAttribute.cs ├── WpfAnalyzers.csproj ├── WpfAnalyzers.csproj.DotSettings └── tools │ ├── install.ps1 │ └── uninstall.ps1 ├── appveyor.yml ├── azure-pipelines.yml └── documentation ├── WPF0001.md ├── WPF0002.md ├── WPF0003.md ├── WPF0004.md ├── WPF0005.md ├── WPF0006.md ├── WPF0007.md ├── WPF0008.md ├── WPF0010.md ├── WPF0011.md ├── WPF0012.md ├── WPF0013.md ├── WPF0014.md ├── WPF0015.md ├── WPF0016.md ├── WPF0017.md ├── WPF0018.md ├── WPF0019.md ├── WPF0020.md ├── WPF0021.md ├── WPF0022.md ├── WPF0023.md ├── WPF0024.md ├── WPF0030.md ├── WPF0031.md ├── WPF0032.md ├── WPF0033.md ├── WPF0034.md ├── WPF0035.md ├── WPF0036.md ├── WPF0040.md ├── WPF0041.md ├── WPF0042.md ├── WPF0043.md ├── WPF0050.md ├── WPF0051.md ├── WPF0052.md ├── WPF0060.md ├── WPF0061.md ├── WPF0062.md ├── WPF0070.md ├── WPF0071.md ├── WPF0072.md ├── WPF0073.md ├── WPF0074.md ├── WPF0080.md ├── WPF0081.md ├── WPF0082.md ├── WPF0083.md ├── WPF0084.md ├── WPF0085.md ├── WPF0090.md ├── WPF0091.md ├── WPF0092.md ├── WPF0100.md ├── WPF0101.md ├── WPF0102.md ├── WPF0103.md ├── WPF0104.md ├── WPF0105.md ├── WPF0106.md ├── WPF0107.md ├── WPF0108.md ├── WPF0120.md ├── WPF0121.md ├── WPF0122.md ├── WPF0123.md ├── WPF0130.md ├── WPF0131.md ├── WPF0132.md ├── WPF0133.md ├── WPF0140.md ├── WPF0141.md ├── WPF0150.md ├── WPF0151.md ├── WPF0170.md ├── WPF0171.md ├── WPF0172.md ├── WPF0173.md ├── WPF0174.md ├── WPF0175.md └── WPF0176.md /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE_NOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/RELEASE_NOTES.md -------------------------------------------------------------------------------- /ValidCode.Netcore/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/ValidCode.Netcore/.editorconfig -------------------------------------------------------------------------------- /ValidCode.Netcore/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/ValidCode.Netcore/AssemblyInfo.cs -------------------------------------------------------------------------------- /ValidCode.Netcore/IntControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/ValidCode.Netcore/IntControl.cs -------------------------------------------------------------------------------- /ValidCode.Netcore/Issue345.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/ValidCode.Netcore/Issue345.cs -------------------------------------------------------------------------------- /ValidCode.Netcore/NullableIntControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/ValidCode.Netcore/NullableIntControl.cs -------------------------------------------------------------------------------- /ValidCode.Netcore/NullableStringControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/ValidCode.Netcore/NullableStringControl.cs -------------------------------------------------------------------------------- /ValidCode.Netcore/Repro/Issue292.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/ValidCode.Netcore/Repro/Issue292.cs -------------------------------------------------------------------------------- /ValidCode.Netcore/StringControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/ValidCode.Netcore/StringControl.cs -------------------------------------------------------------------------------- /ValidCode.Netcore/Themes/Generic.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/ValidCode.Netcore/Themes/Generic.xaml -------------------------------------------------------------------------------- /ValidCode.Netcore/ValidCode.Netcore.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/ValidCode.Netcore/ValidCode.Netcore.csproj -------------------------------------------------------------------------------- /ValidCode/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/ValidCode/.editorconfig -------------------------------------------------------------------------------- /ValidCode/AssemblyAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/ValidCode/AssemblyAttributes.cs -------------------------------------------------------------------------------- /ValidCode/AttachedProperties/ScrollViewer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/ValidCode/AttachedProperties/ScrollViewer.cs -------------------------------------------------------------------------------- /ValidCode/AttachedProperties/WithNullChecks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/ValidCode/AttachedProperties/WithNullChecks.cs -------------------------------------------------------------------------------- /ValidCode/AttachedProperties/WithStyleProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/ValidCode/AttachedProperties/WithStyleProperty.cs -------------------------------------------------------------------------------- /ValidCode/AttachedProperties/WithStylePropertyNotAnnotated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/ValidCode/AttachedProperties/WithStylePropertyNotAnnotated.cs -------------------------------------------------------------------------------- /ValidCode/Commands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/ValidCode/Commands.cs -------------------------------------------------------------------------------- /ValidCode/Converters/BoolToVisibilityConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/ValidCode/Converters/BoolToVisibilityConverter.cs -------------------------------------------------------------------------------- /ValidCode/Converters/DirectoryInfoStringConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/ValidCode/Converters/DirectoryInfoStringConverter.cs -------------------------------------------------------------------------------- /ValidCode/Converters/PartialConverter.Part1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/ValidCode/Converters/PartialConverter.Part1.cs -------------------------------------------------------------------------------- /ValidCode/Converters/PartialConverter.Part2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/ValidCode/Converters/PartialConverter.Part2.cs -------------------------------------------------------------------------------- /ValidCode/Converters/RelayConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/ValidCode/Converters/RelayConverter.cs -------------------------------------------------------------------------------- /ValidCode/Converters/ValueConverterGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/ValidCode/Converters/ValueConverterGroup.cs -------------------------------------------------------------------------------- /ValidCode/DependencyProperties/AddOwner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/ValidCode/DependencyProperties/AddOwner.cs -------------------------------------------------------------------------------- /ValidCode/DependencyProperties/AttachedProperties1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/ValidCode/DependencyProperties/AttachedProperties1.cs -------------------------------------------------------------------------------- /ValidCode/DependencyProperties/AttachedProperties2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/ValidCode/DependencyProperties/AttachedProperties2.cs -------------------------------------------------------------------------------- /ValidCode/DependencyProperties/BooleanBoxes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/ValidCode/DependencyProperties/BooleanBoxes.cs -------------------------------------------------------------------------------- /ValidCode/DependencyProperties/Chart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/ValidCode/DependencyProperties/Chart.cs -------------------------------------------------------------------------------- /ValidCode/DependencyProperties/CommonValidation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/ValidCode/DependencyProperties/CommonValidation.cs -------------------------------------------------------------------------------- /ValidCode/DependencyProperties/ControlNewStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/ValidCode/DependencyProperties/ControlNewStyle.cs -------------------------------------------------------------------------------- /ValidCode/DependencyProperties/ControlOldStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/ValidCode/DependencyProperties/ControlOldStyle.cs -------------------------------------------------------------------------------- /ValidCode/DependencyProperties/Date.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/ValidCode/DependencyProperties/Date.cs -------------------------------------------------------------------------------- /ValidCode/DependencyProperties/FooControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/ValidCode/DependencyProperties/FooControl.cs -------------------------------------------------------------------------------- /ValidCode/DependencyProperties/GenericControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/ValidCode/DependencyProperties/GenericControl.cs -------------------------------------------------------------------------------- /ValidCode/DependencyProperties/GenericNullable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/ValidCode/DependencyProperties/GenericNullable.cs -------------------------------------------------------------------------------- /ValidCode/DependencyProperties/Issue210.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/ValidCode/DependencyProperties/Issue210.cs -------------------------------------------------------------------------------- /ValidCode/DependencyProperties/Issue282.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/ValidCode/DependencyProperties/Issue282.cs -------------------------------------------------------------------------------- /ValidCode/DependencyProperties/StringControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/ValidCode/DependencyProperties/StringControl.cs -------------------------------------------------------------------------------- /ValidCode/DependencyProperties/StringControlNullableDisabled.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/ValidCode/DependencyProperties/StringControlNullableDisabled.cs -------------------------------------------------------------------------------- /ValidCode/DependencyProperties/UsingBoolBoxes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/ValidCode/DependencyProperties/UsingBoolBoxes.cs -------------------------------------------------------------------------------- /ValidCode/DependencyProperties/WithCallbacks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/ValidCode/DependencyProperties/WithCallbacks.cs -------------------------------------------------------------------------------- /ValidCode/DependencyProperties/WithDependsOn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/ValidCode/DependencyProperties/WithDependsOn.cs -------------------------------------------------------------------------------- /ValidCode/DependencyProperties/WithMultidimensional.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/ValidCode/DependencyProperties/WithMultidimensional.cs -------------------------------------------------------------------------------- /ValidCode/DependencyProperties/WithProtectedInstanceCallback.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/ValidCode/DependencyProperties/WithProtectedInstanceCallback.cs -------------------------------------------------------------------------------- /ValidCode/DependencyProperties/WithStyleTypedProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/ValidCode/DependencyProperties/WithStyleTypedProperty.cs -------------------------------------------------------------------------------- /ValidCode/DependencyProperties/WithValidateValueCallback.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/ValidCode/DependencyProperties/WithValidateValueCallback.cs -------------------------------------------------------------------------------- /ValidCode/DependencyProperties/WithXamlSetTypeConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/ValidCode/DependencyProperties/WithXamlSetTypeConverter.cs -------------------------------------------------------------------------------- /ValidCode/IntControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/ValidCode/IntControl.cs -------------------------------------------------------------------------------- /ValidCode/Issues/Issue277.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/ValidCode/Issues/Issue277.cs -------------------------------------------------------------------------------- /ValidCode/Issues/Issue278.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/ValidCode/Issues/Issue278.cs -------------------------------------------------------------------------------- /ValidCode/Issues/Issue376.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/ValidCode/Issues/Issue376.cs -------------------------------------------------------------------------------- /ValidCode/MarkupExtensions/EnumerableExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/ValidCode/MarkupExtensions/EnumerableExtension.cs -------------------------------------------------------------------------------- /ValidCode/MarkupExtensions/GenericExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/ValidCode/MarkupExtensions/GenericExtension.cs -------------------------------------------------------------------------------- /ValidCode/MarkupExtensions/Id2Extension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/ValidCode/MarkupExtensions/Id2Extension.cs -------------------------------------------------------------------------------- /ValidCode/MarkupExtensions/IdExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/ValidCode/MarkupExtensions/IdExtension.cs -------------------------------------------------------------------------------- /ValidCode/NullableIntControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/ValidCode/NullableIntControl.cs -------------------------------------------------------------------------------- /ValidCode/Recursion/MarkupExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/ValidCode/Recursion/MarkupExtension.cs -------------------------------------------------------------------------------- /ValidCode/Recursion/RecursiveConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/ValidCode/Recursion/RecursiveConverter.cs -------------------------------------------------------------------------------- /ValidCode/Recursion/WithDependencyProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/ValidCode/Recursion/WithDependencyProperties.cs -------------------------------------------------------------------------------- /ValidCode/Repro/Arrow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/ValidCode/Repro/Arrow.cs -------------------------------------------------------------------------------- /ValidCode/Repro/ArrowEnds.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/ValidCode/Repro/ArrowEnds.cs -------------------------------------------------------------------------------- /ValidCode/Repro/ArrowLineBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/ValidCode/Repro/ArrowLineBase.cs -------------------------------------------------------------------------------- /ValidCode/Repro/Issue291.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/ValidCode/Repro/Issue291.cs -------------------------------------------------------------------------------- /ValidCode/Repro/Issue293.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/ValidCode/Repro/Issue293.cs -------------------------------------------------------------------------------- /ValidCode/Repro/Issue354.TypeA.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/ValidCode/Repro/Issue354.TypeA.cs -------------------------------------------------------------------------------- /ValidCode/Repro/Issue354.TypeB.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/ValidCode/Repro/Issue354.TypeB.cs -------------------------------------------------------------------------------- /ValidCode/RoutedEvents/FooControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/ValidCode/RoutedEvents/FooControl.cs -------------------------------------------------------------------------------- /ValidCode/RoutedEvents/RoutedEventHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/ValidCode/RoutedEvents/RoutedEventHelper.cs -------------------------------------------------------------------------------- /ValidCode/RoutedEvents/ValueChangedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/ValidCode/RoutedEvents/ValueChangedEventArgs.cs -------------------------------------------------------------------------------- /ValidCode/RoutedEvents/WithCustomEventHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/ValidCode/RoutedEvents/WithCustomEventHandler.cs -------------------------------------------------------------------------------- /ValidCode/SetValueTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/ValidCode/SetValueTypes.cs -------------------------------------------------------------------------------- /ValidCode/StringControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/ValidCode/StringControl.cs -------------------------------------------------------------------------------- /ValidCode/TemplateParts/FooControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/ValidCode/TemplateParts/FooControl.cs -------------------------------------------------------------------------------- /ValidCode/Themes/Generic.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/ValidCode/Themes/Generic.xaml -------------------------------------------------------------------------------- /ValidCode/ValidCode.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/ValidCode/ValidCode.csproj -------------------------------------------------------------------------------- /ValidCode/WithEnum/Foo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/ValidCode/WithEnum/Foo.cs -------------------------------------------------------------------------------- /ValidCode/WithEnum/FooControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/ValidCode/WithEnum/FooControl.cs -------------------------------------------------------------------------------- /ValidCode/WithEnum/FooEnum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/ValidCode/WithEnum/FooEnum.cs -------------------------------------------------------------------------------- /ValidCode/WithSetMarkupExtensionAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/ValidCode/WithSetMarkupExtensionAttribute.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Benchmarks/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Benchmarks/.editorconfig -------------------------------------------------------------------------------- /WpfAnalyzers.Benchmarks/AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | [assembly: CLSCompliant(false)] 4 | -------------------------------------------------------------------------------- /WpfAnalyzers.Benchmarks/BenchmarkTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Benchmarks/BenchmarkTests.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Benchmarks/Benchmarks/AllBenchmarks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Benchmarks/Benchmarks/AllBenchmarks.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Benchmarks/Benchmarks/AllBenchmarks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Benchmarks/Benchmarks/AllBenchmarks.md -------------------------------------------------------------------------------- /WpfAnalyzers.Benchmarks/Benchmarks/AttributeAnalyzerBenchmarks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Benchmarks/Benchmarks/AttributeAnalyzerBenchmarks.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Benchmarks/Benchmarks/AttributeAnalyzerBenchmarks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Benchmarks/Benchmarks/AttributeAnalyzerBenchmarks.md -------------------------------------------------------------------------------- /WpfAnalyzers.Benchmarks/Benchmarks/CallbackAnalyzerBenchmarks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Benchmarks/Benchmarks/CallbackAnalyzerBenchmarks.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Benchmarks/Benchmarks/CallbackAnalyzerBenchmarks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Benchmarks/Benchmarks/CallbackAnalyzerBenchmarks.md -------------------------------------------------------------------------------- /WpfAnalyzers.Benchmarks/Benchmarks/ClrMethodDeclarationAnalyzerBenchmarks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Benchmarks/Benchmarks/ClrMethodDeclarationAnalyzerBenchmarks.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Benchmarks/Benchmarks/ClrMethodDeclarationAnalyzerBenchmarks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Benchmarks/Benchmarks/ClrMethodDeclarationAnalyzerBenchmarks.md -------------------------------------------------------------------------------- /WpfAnalyzers.Benchmarks/Benchmarks/ClrPropertyDeclarationAnalyzerBenchmarks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Benchmarks/Benchmarks/ClrPropertyDeclarationAnalyzerBenchmarks.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Benchmarks/Benchmarks/ClrPropertyDeclarationAnalyzerBenchmarks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Benchmarks/Benchmarks/ClrPropertyDeclarationAnalyzerBenchmarks.md -------------------------------------------------------------------------------- /WpfAnalyzers.Benchmarks/Benchmarks/CodeGen/Code.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Benchmarks/Benchmarks/CodeGen/Code.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Benchmarks/Benchmarks/CodeGen/CodeGen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Benchmarks/Benchmarks/CodeGen/CodeGen.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Benchmarks/Benchmarks/ComponentResourceKeyAnalyzerBenchmarks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Benchmarks/Benchmarks/ComponentResourceKeyAnalyzerBenchmarks.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Benchmarks/Benchmarks/ComponentResourceKeyAnalyzerBenchmarks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Benchmarks/Benchmarks/ComponentResourceKeyAnalyzerBenchmarks.md -------------------------------------------------------------------------------- /WpfAnalyzers.Benchmarks/Benchmarks/DependencyPropertyBackingFieldOrPropertyAnalyzerBenchmarks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Benchmarks/Benchmarks/DependencyPropertyBackingFieldOrPropertyAnalyzerBenchmarks.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Benchmarks/Benchmarks/DependencyPropertyBackingFieldOrPropertyAnalyzerBenchmarks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Benchmarks/Benchmarks/DependencyPropertyBackingFieldOrPropertyAnalyzerBenchmarks.md -------------------------------------------------------------------------------- /WpfAnalyzers.Benchmarks/Benchmarks/GetTemplateChildAnalyzerBenchmarks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Benchmarks/Benchmarks/GetTemplateChildAnalyzerBenchmarks.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Benchmarks/Benchmarks/GetTemplateChildAnalyzerBenchmarks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Benchmarks/Benchmarks/GetTemplateChildAnalyzerBenchmarks.md -------------------------------------------------------------------------------- /WpfAnalyzers.Benchmarks/Benchmarks/OverrideMetadataAnalyzerBenchmarks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Benchmarks/Benchmarks/OverrideMetadataAnalyzerBenchmarks.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Benchmarks/Benchmarks/OverrideMetadataAnalyzerBenchmarks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Benchmarks/Benchmarks/OverrideMetadataAnalyzerBenchmarks.md -------------------------------------------------------------------------------- /WpfAnalyzers.Benchmarks/Benchmarks/PropertyMetadataAnalyzerBenchmarks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Benchmarks/Benchmarks/PropertyMetadataAnalyzerBenchmarks.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Benchmarks/Benchmarks/PropertyMetadataAnalyzerBenchmarks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Benchmarks/Benchmarks/PropertyMetadataAnalyzerBenchmarks.md -------------------------------------------------------------------------------- /WpfAnalyzers.Benchmarks/Benchmarks/RegistrationAnalyzerBenchmarks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Benchmarks/Benchmarks/RegistrationAnalyzerBenchmarks.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Benchmarks/Benchmarks/RegistrationAnalyzerBenchmarks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Benchmarks/Benchmarks/RegistrationAnalyzerBenchmarks.md -------------------------------------------------------------------------------- /WpfAnalyzers.Benchmarks/Benchmarks/RoutedCommandCreationAnalyzerBenchmarks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Benchmarks/Benchmarks/RoutedCommandCreationAnalyzerBenchmarks.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Benchmarks/Benchmarks/RoutedCommandCreationAnalyzerBenchmarks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Benchmarks/Benchmarks/RoutedCommandCreationAnalyzerBenchmarks.md -------------------------------------------------------------------------------- /WpfAnalyzers.Benchmarks/Benchmarks/RoutedEventBackingFieldOrPropertyAnalyzerBenchmarks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Benchmarks/Benchmarks/RoutedEventBackingFieldOrPropertyAnalyzerBenchmarks.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Benchmarks/Benchmarks/RoutedEventBackingFieldOrPropertyAnalyzerBenchmarks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Benchmarks/Benchmarks/RoutedEventBackingFieldOrPropertyAnalyzerBenchmarks.md -------------------------------------------------------------------------------- /WpfAnalyzers.Benchmarks/Benchmarks/RoutedEventCallbackAnalyzerBenchmarks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Benchmarks/Benchmarks/RoutedEventCallbackAnalyzerBenchmarks.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Benchmarks/Benchmarks/RoutedEventCallbackAnalyzerBenchmarks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Benchmarks/Benchmarks/RoutedEventCallbackAnalyzerBenchmarks.md -------------------------------------------------------------------------------- /WpfAnalyzers.Benchmarks/Benchmarks/RoutedEventEventDeclarationAnalyzerBenchmarks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Benchmarks/Benchmarks/RoutedEventEventDeclarationAnalyzerBenchmarks.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Benchmarks/Benchmarks/RoutedEventEventDeclarationAnalyzerBenchmarks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Benchmarks/Benchmarks/RoutedEventEventDeclarationAnalyzerBenchmarks.md -------------------------------------------------------------------------------- /WpfAnalyzers.Benchmarks/Benchmarks/Sa1202SuppressorBenchmarks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Benchmarks/Benchmarks/Sa1202SuppressorBenchmarks.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Benchmarks/Benchmarks/SetValueAnalyzerBenchmarks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Benchmarks/Benchmarks/SetValueAnalyzerBenchmarks.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Benchmarks/Benchmarks/SetValueAnalyzerBenchmarks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Benchmarks/Benchmarks/SetValueAnalyzerBenchmarks.md -------------------------------------------------------------------------------- /WpfAnalyzers.Benchmarks/Benchmarks/ValueConverterAnalyzerBenchmarks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Benchmarks/Benchmarks/ValueConverterAnalyzerBenchmarks.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Benchmarks/Benchmarks/ValueConverterAnalyzerBenchmarks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Benchmarks/Benchmarks/ValueConverterAnalyzerBenchmarks.md -------------------------------------------------------------------------------- /WpfAnalyzers.Benchmarks/Benchmarks/WPF0011ContainingTypeShouldBeRegisteredOwnerBenchmarks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Benchmarks/Benchmarks/WPF0011ContainingTypeShouldBeRegisteredOwnerBenchmarks.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Benchmarks/Benchmarks/WPF0011ContainingTypeShouldBeRegisteredOwnerBenchmarks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Benchmarks/Benchmarks/WPF0011ContainingTypeShouldBeRegisteredOwnerBenchmarks.md -------------------------------------------------------------------------------- /WpfAnalyzers.Benchmarks/Benchmarks/WPF0015RegisteredOwnerTypeMustBeDependencyObjectBenchmarks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Benchmarks/Benchmarks/WPF0015RegisteredOwnerTypeMustBeDependencyObjectBenchmarks.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Benchmarks/Benchmarks/WPF0015RegisteredOwnerTypeMustBeDependencyObjectBenchmarks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Benchmarks/Benchmarks/WPF0015RegisteredOwnerTypeMustBeDependencyObjectBenchmarks.md -------------------------------------------------------------------------------- /WpfAnalyzers.Benchmarks/Benchmarks/WPF0041SetMutableUsingSetCurrentValueBenchmarks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Benchmarks/Benchmarks/WPF0041SetMutableUsingSetCurrentValueBenchmarks.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Benchmarks/Benchmarks/WPF0041SetMutableUsingSetCurrentValueBenchmarks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Benchmarks/Benchmarks/WPF0041SetMutableUsingSetCurrentValueBenchmarks.md -------------------------------------------------------------------------------- /WpfAnalyzers.Benchmarks/Benchmarks/WPF0050XmlnsPrefixMustMatchXmlnsDefinitionBenchmarks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Benchmarks/Benchmarks/WPF0050XmlnsPrefixMustMatchXmlnsDefinitionBenchmarks.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Benchmarks/Benchmarks/WPF0050XmlnsPrefixMustMatchXmlnsDefinitionBenchmarks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Benchmarks/Benchmarks/WPF0050XmlnsPrefixMustMatchXmlnsDefinitionBenchmarks.md -------------------------------------------------------------------------------- /WpfAnalyzers.Benchmarks/Benchmarks/WPF0052XmlnsDefinitionsDoesNotMapAllNamespacesBenchmarks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Benchmarks/Benchmarks/WPF0052XmlnsDefinitionsDoesNotMapAllNamespacesBenchmarks.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Benchmarks/Benchmarks/WPF0052XmlnsDefinitionsDoesNotMapAllNamespacesBenchmarks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Benchmarks/Benchmarks/WPF0052XmlnsDefinitionsDoesNotMapAllNamespacesBenchmarks.md -------------------------------------------------------------------------------- /WpfAnalyzers.Benchmarks/Benchmarks/WPF0080MarkupExtensionDoesNotHaveAttributeBenchmarks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Benchmarks/Benchmarks/WPF0080MarkupExtensionDoesNotHaveAttributeBenchmarks.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Benchmarks/Benchmarks/WPF0080MarkupExtensionDoesNotHaveAttributeBenchmarks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Benchmarks/Benchmarks/WPF0080MarkupExtensionDoesNotHaveAttributeBenchmarks.md -------------------------------------------------------------------------------- /WpfAnalyzers.Benchmarks/Benchmarks/WPF0083UseConstructorArgumentAttributeBenchmarks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Benchmarks/Benchmarks/WPF0083UseConstructorArgumentAttributeBenchmarks.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Benchmarks/Benchmarks/WPF0083UseConstructorArgumentAttributeBenchmarks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Benchmarks/Benchmarks/WPF0083UseConstructorArgumentAttributeBenchmarks.md -------------------------------------------------------------------------------- /WpfAnalyzers.Benchmarks/ModuleInitializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Benchmarks/ModuleInitializer.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Benchmarks/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Benchmarks/Program.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Benchmarks/WpfAnalyzers.Benchmarks.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Benchmarks/WpfAnalyzers.Benchmarks.csproj -------------------------------------------------------------------------------- /WpfAnalyzers.Benchmarks/WpfAnalyzers.Benchmarks.csproj.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Benchmarks/WpfAnalyzers.Benchmarks.csproj.DotSettings -------------------------------------------------------------------------------- /WpfAnalyzers.Demo.sln.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Demo.sln.DotSettings -------------------------------------------------------------------------------- /WpfAnalyzers.Test.Netcore/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test.Netcore/.editorconfig -------------------------------------------------------------------------------- /WpfAnalyzers.Test.Netcore/AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | [assembly: CLSCompliant(false)] 4 | -------------------------------------------------------------------------------- /WpfAnalyzers.Test.Netcore/ModuleInitializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test.Netcore/ModuleInitializer.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Test.Netcore/ValidWithAll.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test.Netcore/ValidWithAll.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Test.Netcore/WPF0012ClrPropertyShouldMatchRegisteredTypeTests/CodeFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test.Netcore/WPF0012ClrPropertyShouldMatchRegisteredTypeTests/CodeFix.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Test.Netcore/WPF0012ClrPropertyShouldMatchRegisteredTypeTests/Valid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test.Netcore/WPF0012ClrPropertyShouldMatchRegisteredTypeTests/Valid.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Test.Netcore/WPF0013ClrMethodMustMatchRegisteredTypeTests/Diagnostics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test.Netcore/WPF0013ClrMethodMustMatchRegisteredTypeTests/Diagnostics.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Test.Netcore/WPF0013ClrMethodMustMatchRegisteredTypeTests/Valid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test.Netcore/WPF0013ClrMethodMustMatchRegisteredTypeTests/Valid.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Test.Netcore/WPF0022DirectCastValueToExactTypeTests/CodeFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test.Netcore/WPF0022DirectCastValueToExactTypeTests/CodeFix.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Test.Netcore/WPF0022DirectCastValueToExactTypeTests/Valid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test.Netcore/WPF0022DirectCastValueToExactTypeTests/Valid.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Test.Netcore/WPF0024ParameterShouldBeNullableTests/CodeFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test.Netcore/WPF0024ParameterShouldBeNullableTests/CodeFix.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Test.Netcore/WPF0024ParameterShouldBeNullableTests/Valid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test.Netcore/WPF0024ParameterShouldBeNullableTests/Valid.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Test.Netcore/WpfAnalyzers.Test.Netcore.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test.Netcore/WpfAnalyzers.Test.Netcore.csproj -------------------------------------------------------------------------------- /WpfAnalyzers.Test/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test/.editorconfig -------------------------------------------------------------------------------- /WpfAnalyzers.Test/AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | [assembly: CLSCompliant(false)] 4 | -------------------------------------------------------------------------------- /WpfAnalyzers.Test/DocumentationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test/DocumentationTests.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Test/Helpers/BackingFieldOrPropertyTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test/Helpers/BackingFieldOrPropertyTests.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Test/Helpers/DependencyObjectTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test/Helpers/DependencyObjectTests.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Test/Helpers/DependencyPropertyTests.Register.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test/Helpers/DependencyPropertyTests.Register.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Test/Helpers/EventManagerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test/Helpers/EventManagerTests.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Test/Helpers/InvocationExpressionSyntaxExtTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test/Helpers/InvocationExpressionSyntaxExtTests.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Test/Helpers/RegisterInvocationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test/Helpers/RegisterInvocationTests.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Test/Helpers/ValueConverterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test/Helpers/ValueConverterTests.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Test/ImplementValueConverterFixTests/CodeFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test/ImplementValueConverterFixTests/CodeFix.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Test/ImplementValueConverterFixTests/FixAll.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test/ImplementValueConverterFixTests/FixAll.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Test/ModuleInitializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test/ModuleInitializer.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Test/Refactorings/AutoPropertyRefactoringTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test/Refactorings/AutoPropertyRefactoringTests.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Test/Refactorings/EventRefactoringTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test/Refactorings/EventRefactoringTests.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Test/Refactorings/ReadOnlyRefactoringTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test/Refactorings/ReadOnlyRefactoringTests.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Test/ReproBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test/ReproBox.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Test/Sandbox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test/Sandbox.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Test/ValidWithAll.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test/ValidWithAll.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Test/WPF0001BackingFieldShouldMatchRegisteredNameTests/CodeFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test/WPF0001BackingFieldShouldMatchRegisteredNameTests/CodeFix.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Test/WPF0001BackingFieldShouldMatchRegisteredNameTests/Valid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test/WPF0001BackingFieldShouldMatchRegisteredNameTests/Valid.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Test/WPF0002BackingFieldShouldMatchRegisteredNameTests/CodeFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test/WPF0002BackingFieldShouldMatchRegisteredNameTests/CodeFix.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Test/WPF0002BackingFieldShouldMatchRegisteredNameTests/Valid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test/WPF0002BackingFieldShouldMatchRegisteredNameTests/Valid.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Test/WPF0003ClrPropertyShouldMatchRegisteredNameTests/CodeFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test/WPF0003ClrPropertyShouldMatchRegisteredNameTests/CodeFix.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Test/WPF0003ClrPropertyShouldMatchRegisteredNameTests/Valid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test/WPF0003ClrPropertyShouldMatchRegisteredNameTests/Valid.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Test/WPF0004ClrMethodShouldMatchRegisteredNameTests/CodeFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test/WPF0004ClrMethodShouldMatchRegisteredNameTests/CodeFix.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Test/WPF0004ClrMethodShouldMatchRegisteredNameTests/Valid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test/WPF0004ClrMethodShouldMatchRegisteredNameTests/Valid.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Test/WPF0005PropertyChangedCallbackShouldMatchRegisteredNameTests/CodeFix.StaticCallback.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test/WPF0005PropertyChangedCallbackShouldMatchRegisteredNameTests/CodeFix.StaticCallback.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Test/WPF0005PropertyChangedCallbackShouldMatchRegisteredNameTests/CodeFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test/WPF0005PropertyChangedCallbackShouldMatchRegisteredNameTests/CodeFix.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Test/WPF0005PropertyChangedCallbackShouldMatchRegisteredNameTests/Diagnostics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test/WPF0005PropertyChangedCallbackShouldMatchRegisteredNameTests/Diagnostics.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Test/WPF0005PropertyChangedCallbackShouldMatchRegisteredNameTests/Valid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test/WPF0005PropertyChangedCallbackShouldMatchRegisteredNameTests/Valid.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Test/WPF0006CoerceValueCallbackShouldMatchRegisteredNameTests/CodeFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test/WPF0006CoerceValueCallbackShouldMatchRegisteredNameTests/CodeFix.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Test/WPF0006CoerceValueCallbackShouldMatchRegisteredNameTests/Diagnostics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test/WPF0006CoerceValueCallbackShouldMatchRegisteredNameTests/Diagnostics.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Test/WPF0006CoerceValueCallbackShouldMatchRegisteredNameTests/Valid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test/WPF0006CoerceValueCallbackShouldMatchRegisteredNameTests/Valid.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Test/WPF0007ValidateValueCallbackCallbackShouldMatchRegisteredNameTests/CodeFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test/WPF0007ValidateValueCallbackCallbackShouldMatchRegisteredNameTests/CodeFix.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Test/WPF0007ValidateValueCallbackCallbackShouldMatchRegisteredNameTests/Valid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test/WPF0007ValidateValueCallbackCallbackShouldMatchRegisteredNameTests/Valid.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Test/WPF0008DependsOnTargetTests/Diagnostics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test/WPF0008DependsOnTargetTests/Diagnostics.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Test/WPF0008DependsOnTargetTests/Valid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test/WPF0008DependsOnTargetTests/Valid.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Test/WPF0010DefaultValueMustMatchRegisteredTypeTests/Diagnostics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test/WPF0010DefaultValueMustMatchRegisteredTypeTests/Diagnostics.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Test/WPF0010DefaultValueMustMatchRegisteredTypeTests/Valid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test/WPF0010DefaultValueMustMatchRegisteredTypeTests/Valid.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Test/WPF0011ContainingTypeShouldBeRegisteredOwnerTests/CodeFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test/WPF0011ContainingTypeShouldBeRegisteredOwnerTests/CodeFix.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Test/WPF0011ContainingTypeShouldBeRegisteredOwnerTests/Valid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test/WPF0011ContainingTypeShouldBeRegisteredOwnerTests/Valid.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Test/WPF0012ClrPropertyShouldMatchRegisteredTypeTests/CodeFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test/WPF0012ClrPropertyShouldMatchRegisteredTypeTests/CodeFix.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Test/WPF0012ClrPropertyShouldMatchRegisteredTypeTests/Valid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test/WPF0012ClrPropertyShouldMatchRegisteredTypeTests/Valid.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Test/WPF0013ClrMethodMustMatchRegisteredTypeTests/Diagnostics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test/WPF0013ClrMethodMustMatchRegisteredTypeTests/Diagnostics.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Test/WPF0013ClrMethodMustMatchRegisteredTypeTests/Valid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test/WPF0013ClrMethodMustMatchRegisteredTypeTests/Valid.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Test/WPF0014SetValueMustUseRegisteredTypeTests/Diagnostics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test/WPF0014SetValueMustUseRegisteredTypeTests/Diagnostics.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Test/WPF0014SetValueMustUseRegisteredTypeTests/Valid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test/WPF0014SetValueMustUseRegisteredTypeTests/Valid.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Test/WPF0015RegisteredOwnerTypeMustBeDependencyObjectTests/Diagnostics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test/WPF0015RegisteredOwnerTypeMustBeDependencyObjectTests/Diagnostics.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Test/WPF0015RegisteredOwnerTypeMustBeDependencyObjectTests/Valid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test/WPF0015RegisteredOwnerTypeMustBeDependencyObjectTests/Valid.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Test/WPF0016DefaultValueIsSharedReferenceTypeTests/Diagnostics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test/WPF0016DefaultValueIsSharedReferenceTypeTests/Diagnostics.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Test/WPF0016DefaultValueIsSharedReferenceTypeTests/Valid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test/WPF0016DefaultValueIsSharedReferenceTypeTests/Valid.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Test/WPF0017MetadataMustBeAssignableTests/Diagnostics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test/WPF0017MetadataMustBeAssignableTests/Diagnostics.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Test/WPF0017MetadataMustBeAssignableTests/Valid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test/WPF0017MetadataMustBeAssignableTests/Valid.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Test/WPF0018DefaultStyleKeyPropertyOverrideMetadataArgumentTests/Diagnostics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test/WPF0018DefaultStyleKeyPropertyOverrideMetadataArgumentTests/Diagnostics.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Test/WPF0018DefaultStyleKeyPropertyOverrideMetadataArgumentTests/Valid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test/WPF0018DefaultStyleKeyPropertyOverrideMetadataArgumentTests/Valid.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Test/WPF0019CastSenderToCorrectTypeTests/CodeFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test/WPF0019CastSenderToCorrectTypeTests/CodeFix.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Test/WPF0019CastSenderToCorrectTypeTests/Valid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test/WPF0019CastSenderToCorrectTypeTests/Valid.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Test/WPF0020CastValueToCorrectTypeTests/CodeFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test/WPF0020CastValueToCorrectTypeTests/CodeFix.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Test/WPF0020CastValueToCorrectTypeTests/Valid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test/WPF0020CastValueToCorrectTypeTests/Valid.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Test/WPF0021DirectCastSenderToExactTypeTests/CodeFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test/WPF0021DirectCastSenderToExactTypeTests/CodeFix.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Test/WPF0021DirectCastSenderToExactTypeTests/FixAll.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test/WPF0021DirectCastSenderToExactTypeTests/FixAll.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Test/WPF0021DirectCastSenderToExactTypeTests/Valid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test/WPF0021DirectCastSenderToExactTypeTests/Valid.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Test/WPF0022DirectCastValueToExactTypeTests/CodeFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test/WPF0022DirectCastValueToExactTypeTests/CodeFix.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Test/WPF0022DirectCastValueToExactTypeTests/Valid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test/WPF0022DirectCastValueToExactTypeTests/Valid.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Test/WPF0023ConvertToLambdaTests/CodeFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test/WPF0023ConvertToLambdaTests/CodeFix.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Test/WPF0023ConvertToLambdaTests/CodeFixRegistrationAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test/WPF0023ConvertToLambdaTests/CodeFixRegistrationAnalyzer.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Test/WPF0023ConvertToLambdaTests/Valid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test/WPF0023ConvertToLambdaTests/Valid.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Test/WPF0030BackingFieldShouldBeStaticReadonlyTests/CodeFix.Field.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test/WPF0030BackingFieldShouldBeStaticReadonlyTests/CodeFix.Field.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Test/WPF0030BackingFieldShouldBeStaticReadonlyTests/CodeFix.Property.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test/WPF0030BackingFieldShouldBeStaticReadonlyTests/CodeFix.Property.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Test/WPF0030BackingFieldShouldBeStaticReadonlyTests/FixAll.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test/WPF0030BackingFieldShouldBeStaticReadonlyTests/FixAll.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Test/WPF0030BackingFieldShouldBeStaticReadonlyTests/Valid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test/WPF0030BackingFieldShouldBeStaticReadonlyTests/Valid.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Test/WPF0031FieldOrderTests/CodeFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test/WPF0031FieldOrderTests/CodeFix.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Test/WPF0031FieldOrderTests/Valid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test/WPF0031FieldOrderTests/Valid.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Test/WPF0032ClrPropertyGetAndSetSameDependencyPropertyTests/Diagnostics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test/WPF0032ClrPropertyGetAndSetSameDependencyPropertyTests/Diagnostics.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Test/WPF0032ClrPropertyGetAndSetSameDependencyPropertyTests/Valid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test/WPF0032ClrPropertyGetAndSetSameDependencyPropertyTests/Valid.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Test/WPF0033UseAttachedPropertyBrowsableForTypeAttributeTests/CodeFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test/WPF0033UseAttachedPropertyBrowsableForTypeAttributeTests/CodeFix.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Test/WPF0033UseAttachedPropertyBrowsableForTypeAttributeTests/Valid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test/WPF0033UseAttachedPropertyBrowsableForTypeAttributeTests/Valid.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Test/WPF0034AttachedPropertyBrowsableForTypeAttributeArgumentTests/CodeFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test/WPF0034AttachedPropertyBrowsableForTypeAttributeArgumentTests/CodeFix.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Test/WPF0034AttachedPropertyBrowsableForTypeAttributeArgumentTests/Valid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test/WPF0034AttachedPropertyBrowsableForTypeAttributeArgumentTests/Valid.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Test/WPF0035ClrPropertyUseSetValueInSetterTests/CodeFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test/WPF0035ClrPropertyUseSetValueInSetterTests/CodeFix.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Test/WPF0035ClrPropertyUseSetValueInSetterTests/Valid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test/WPF0035ClrPropertyUseSetValueInSetterTests/Valid.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Test/WPF0036AvoidSideEffectsInClrAccessorsTests/Diagnostics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test/WPF0036AvoidSideEffectsInClrAccessorsTests/Diagnostics.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Test/WPF0036AvoidSideEffectsInClrAccessorsTests/Valid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test/WPF0036AvoidSideEffectsInClrAccessorsTests/Valid.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Test/WPF0040SetUsingDependencyPropertyKeyTests/CodeFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test/WPF0040SetUsingDependencyPropertyKeyTests/CodeFix.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Test/WPF0040SetUsingDependencyPropertyKeyTests/Valid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test/WPF0040SetUsingDependencyPropertyKeyTests/Valid.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Test/WPF0041SetMutableUsingSetCurrentValueTests/CodeFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test/WPF0041SetMutableUsingSetCurrentValueTests/CodeFix.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Test/WPF0041SetMutableUsingSetCurrentValueTests/Valid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test/WPF0041SetMutableUsingSetCurrentValueTests/Valid.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Test/WPF0042AvoidSideEffectsInClrAccessorsTests/Diagnostics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test/WPF0042AvoidSideEffectsInClrAccessorsTests/Diagnostics.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Test/WPF0042AvoidSideEffectsInClrAccessorsTests/Valid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test/WPF0042AvoidSideEffectsInClrAccessorsTests/Valid.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Test/WPF0043DoNotUseSetCurrentValueForDataContextTests/CodeFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test/WPF0043DoNotUseSetCurrentValueForDataContextTests/CodeFix.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Test/WPF0043DoNotUseSetCurrentValueForDataContextTests/Valid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test/WPF0043DoNotUseSetCurrentValueForDataContextTests/Valid.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Test/WPF0050XmlnsPrefixMustMatchXmlnsDefinitionTests/Diagnostics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test/WPF0050XmlnsPrefixMustMatchXmlnsDefinitionTests/Diagnostics.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Test/WPF0050XmlnsPrefixMustMatchXmlnsDefinitionTests/Valid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test/WPF0050XmlnsPrefixMustMatchXmlnsDefinitionTests/Valid.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Test/WPF0051XmlnsDefinitionMustMapExistingNamespaceTests/Diagnostics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test/WPF0051XmlnsDefinitionMustMapExistingNamespaceTests/Diagnostics.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Test/WPF0051XmlnsDefinitionMustMapExistingNamespaceTests/Valid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test/WPF0051XmlnsDefinitionMustMapExistingNamespaceTests/Valid.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Test/WPF0052XmlnsDefinitionsDoesNotMapAllNamespacesTests/CodeFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test/WPF0052XmlnsDefinitionsDoesNotMapAllNamespacesTests/CodeFix.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Test/WPF0052XmlnsDefinitionsDoesNotMapAllNamespacesTests/Valid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test/WPF0052XmlnsDefinitionsDoesNotMapAllNamespacesTests/Valid.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Test/WPF0060DocumentDependencyPropertyBackingMemberTests/CodeFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test/WPF0060DocumentDependencyPropertyBackingMemberTests/CodeFix.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Test/WPF0060DocumentDependencyPropertyBackingMemberTests/Valid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test/WPF0060DocumentDependencyPropertyBackingMemberTests/Valid.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Test/WPF0061ClrMethodShouldHaveDocsTests/CodeFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test/WPF0061ClrMethodShouldHaveDocsTests/CodeFix.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Test/WPF0061ClrMethodShouldHaveDocsTests/FixAll.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test/WPF0061ClrMethodShouldHaveDocsTests/FixAll.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Test/WPF0061ClrMethodShouldHaveDocsTests/Valid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test/WPF0061ClrMethodShouldHaveDocsTests/Valid.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Test/WPF0062DocumentPropertyChangedCallbackTests/CodeFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test/WPF0062DocumentPropertyChangedCallbackTests/CodeFix.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Test/WPF0062DocumentPropertyChangedCallbackTests/Valid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test/WPF0062DocumentPropertyChangedCallbackTests/Valid.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Test/WPF0070ConverterDoesNotHaveDefaultFieldTests/CodeFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test/WPF0070ConverterDoesNotHaveDefaultFieldTests/CodeFix.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Test/WPF0070ConverterDoesNotHaveDefaultFieldTests/Valid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test/WPF0070ConverterDoesNotHaveDefaultFieldTests/Valid.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Test/WPF0071ConverterDoesNotHaveAttributeTests/CodeFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test/WPF0071ConverterDoesNotHaveAttributeTests/CodeFix.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Test/WPF0071ConverterDoesNotHaveAttributeTests/Valid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test/WPF0071ConverterDoesNotHaveAttributeTests/Valid.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Test/WPF0072ValueConversionMustUseCorrectTypesTests/CodeFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test/WPF0072ValueConversionMustUseCorrectTypesTests/CodeFix.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Test/WPF0072ValueConversionMustUseCorrectTypesTests/Valid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test/WPF0072ValueConversionMustUseCorrectTypesTests/Valid.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Test/WPF0073ConverterDoesNotHaveAttributeUnknownTypes/CodeFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test/WPF0073ConverterDoesNotHaveAttributeUnknownTypes/CodeFix.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Test/WPF0073ConverterDoesNotHaveAttributeUnknownTypes/Valid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test/WPF0073ConverterDoesNotHaveAttributeUnknownTypes/Valid.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Test/WPF0074DefaultMemberOfWrongTypeTests/Diagnostics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test/WPF0074DefaultMemberOfWrongTypeTests/Diagnostics.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Test/WPF0074DefaultMemberOfWrongTypeTests/Valid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test/WPF0074DefaultMemberOfWrongTypeTests/Valid.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Test/WPF0080MarkupExtensionDoesNotHaveAttributeTests/CodeFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test/WPF0080MarkupExtensionDoesNotHaveAttributeTests/CodeFix.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Test/WPF0080MarkupExtensionDoesNotHaveAttributeTests/Valid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test/WPF0080MarkupExtensionDoesNotHaveAttributeTests/Valid.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Test/WPF0081MarkupExtensionReturnTypeMustUseCorrectTypeTests/CodeFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test/WPF0081MarkupExtensionReturnTypeMustUseCorrectTypeTests/CodeFix.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Test/WPF0081MarkupExtensionReturnTypeMustUseCorrectTypeTests/Valid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test/WPF0081MarkupExtensionReturnTypeMustUseCorrectTypeTests/Valid.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Test/WPF0082ConstructorArgumentTests/CodeFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test/WPF0082ConstructorArgumentTests/CodeFix.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Test/WPF0082ConstructorArgumentTests/Valid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test/WPF0082ConstructorArgumentTests/Valid.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Test/WPF0083UseConstructorArgumentAttributeTests/CodeFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test/WPF0083UseConstructorArgumentAttributeTests/CodeFix.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Test/WPF0083UseConstructorArgumentAttributeTests/Valid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test/WPF0083UseConstructorArgumentAttributeTests/Valid.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Test/WPF0084XamlSetMarkupExtensionAttributeTargetTests/Diagnostics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test/WPF0084XamlSetMarkupExtensionAttributeTargetTests/Diagnostics.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Test/WPF0084XamlSetMarkupExtensionAttributeTargetTests/Valid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test/WPF0084XamlSetMarkupExtensionAttributeTargetTests/Valid.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Test/WPF0085XamlSetTypeConverterTargetTests/Diagnostics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test/WPF0085XamlSetTypeConverterTargetTests/Diagnostics.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Test/WPF0085XamlSetTypeConverterTargetTests/Valid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test/WPF0085XamlSetTypeConverterTargetTests/Valid.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Test/WPF0090RegisterClassHandlerCallbackNameShouldMatchEventTests/CodeFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test/WPF0090RegisterClassHandlerCallbackNameShouldMatchEventTests/CodeFix.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Test/WPF0090RegisterClassHandlerCallbackNameShouldMatchEventTests/Valid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test/WPF0090RegisterClassHandlerCallbackNameShouldMatchEventTests/Valid.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Test/WPF0091AddAndRemoveHandlerCallbackNameShouldMatchEventTests/CodeFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test/WPF0091AddAndRemoveHandlerCallbackNameShouldMatchEventTests/CodeFix.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Test/WPF0091AddAndRemoveHandlerCallbackNameShouldMatchEventTests/Valid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test/WPF0091AddAndRemoveHandlerCallbackNameShouldMatchEventTests/Valid.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Test/WPF0092RegisterClassHandlerDelegateType/CodeFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test/WPF0092RegisterClassHandlerDelegateType/CodeFix.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Test/WPF0092RegisterClassHandlerDelegateType/Valid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test/WPF0092RegisterClassHandlerDelegateType/Valid.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Test/WPF0100BackingFieldShouldMatchRegisteredNameTests/CodeFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test/WPF0100BackingFieldShouldMatchRegisteredNameTests/CodeFix.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Test/WPF0100BackingFieldShouldMatchRegisteredNameTests/Valid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test/WPF0100BackingFieldShouldMatchRegisteredNameTests/Valid.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Test/WPF0101RegisterContainingTypeAsOwnerTests/CodeFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test/WPF0101RegisterContainingTypeAsOwnerTests/CodeFix.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Test/WPF0101RegisterContainingTypeAsOwnerTests/Valid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test/WPF0101RegisterContainingTypeAsOwnerTests/Valid.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Test/WPF0102EventDeclarationNameTests/CodeFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test/WPF0102EventDeclarationNameTests/CodeFix.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Test/WPF0102EventDeclarationNameTests/Valid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test/WPF0102EventDeclarationNameTests/Valid.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Test/WPF0103EventDeclarationAddRemoveTests/Diagnostics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test/WPF0103EventDeclarationAddRemoveTests/Diagnostics.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Test/WPF0103EventDeclarationAddRemoveTests/Valid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test/WPF0103EventDeclarationAddRemoveTests/Valid.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Test/WPF0104EventDeclarationAddHandlerInAddTests/Diagnostics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test/WPF0104EventDeclarationAddHandlerInAddTests/Diagnostics.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Test/WPF0104EventDeclarationAddHandlerInAddTests/Valid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test/WPF0104EventDeclarationAddHandlerInAddTests/Valid.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Test/WPF0105EventDeclarationRemoveHandlerInRemoveTests/Diagnostics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test/WPF0105EventDeclarationRemoveHandlerInRemoveTests/Diagnostics.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Test/WPF0105EventDeclarationRemoveHandlerInRemoveTests/Valid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test/WPF0105EventDeclarationRemoveHandlerInRemoveTests/Valid.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Test/WPF0106EventDeclarationUseRegisteredHandlerTypeTests/Diagnostics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test/WPF0106EventDeclarationUseRegisteredHandlerTypeTests/Diagnostics.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Test/WPF0106EventDeclarationUseRegisteredHandlerTypeTests/Valid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test/WPF0106EventDeclarationUseRegisteredHandlerTypeTests/Valid.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Test/WPF0107BackingMemberShouldBeStaticReadonlyTests/CodeFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test/WPF0107BackingMemberShouldBeStaticReadonlyTests/CodeFix.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Test/WPF0107BackingMemberShouldBeStaticReadonlyTests/Valid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test/WPF0107BackingMemberShouldBeStaticReadonlyTests/Valid.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Test/WPF0108DocumentRoutedEventBackingMemberTests/CodeFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test/WPF0108DocumentRoutedEventBackingMemberTests/CodeFix.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Test/WPF0108DocumentRoutedEventBackingMemberTests/Valid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test/WPF0108DocumentRoutedEventBackingMemberTests/Valid.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Test/WPF0120RegisterContainingMemberAsNameForRoutedCommandTests/CodeFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test/WPF0120RegisterContainingMemberAsNameForRoutedCommandTests/CodeFix.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Test/WPF0120RegisterContainingMemberAsNameForRoutedCommandTests/Valid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test/WPF0120RegisterContainingMemberAsNameForRoutedCommandTests/Valid.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Test/WPF0121RegisterContainingTypeAsOwnerForRoutedCommandTests/CodeFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test/WPF0121RegisterContainingTypeAsOwnerForRoutedCommandTests/CodeFix.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Test/WPF0121RegisterContainingTypeAsOwnerForRoutedCommandTests/Valid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test/WPF0121RegisterContainingTypeAsOwnerForRoutedCommandTests/Valid.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Test/WPF0122RegisterRoutedCommandTests/CodeFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test/WPF0122RegisterRoutedCommandTests/CodeFix.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Test/WPF0122RegisterRoutedCommandTests/Valid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test/WPF0122RegisterRoutedCommandTests/Valid.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Test/WPF0123BackingFieldShouldBeStaticReadonlyTests/CodeFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test/WPF0123BackingFieldShouldBeStaticReadonlyTests/CodeFix.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Test/WPF0123BackingFieldShouldBeStaticReadonlyTests/Valid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test/WPF0123BackingFieldShouldBeStaticReadonlyTests/Valid.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Test/WPF0130UseTemplatePartAttributeTests/CodeFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test/WPF0130UseTemplatePartAttributeTests/CodeFix.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Test/WPF0130UseTemplatePartAttributeTests/Valid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test/WPF0130UseTemplatePartAttributeTests/Valid.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Test/WPF0131TemplatePartTypeTests/Diagnostics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test/WPF0131TemplatePartTypeTests/Diagnostics.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Test/WPF0131TemplatePartTypeTests/Valid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test/WPF0131TemplatePartTypeTests/Valid.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Test/WPF0132UsePartPrefixTests/Diagnostics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test/WPF0132UsePartPrefixTests/Diagnostics.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Test/WPF0132UsePartPrefixTests/Valid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test/WPF0132UsePartPrefixTests/Valid.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Test/WPF0133ContentPropertyTargetTests/Diagnostics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test/WPF0133ContentPropertyTargetTests/Diagnostics.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Test/WPF0133ContentPropertyTargetTests/Valid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test/WPF0133ContentPropertyTargetTests/Valid.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Test/WPF0140UseContainingTypeComponentResourceTests/CodeFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test/WPF0140UseContainingTypeComponentResourceTests/CodeFix.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Test/WPF0140UseContainingTypeComponentResourceTests/Valid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test/WPF0140UseContainingTypeComponentResourceTests/Valid.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Test/WPF0141UseContainingMemberComponentResourceKeyTests/CodeFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test/WPF0141UseContainingMemberComponentResourceKeyTests/CodeFix.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Test/WPF0141UseContainingMemberComponentResourceKeyTests/Valid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test/WPF0141UseContainingMemberComponentResourceKeyTests/Valid.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Test/WPF0150UseNameofInsteadOfLiteralTests/CodeFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test/WPF0150UseNameofInsteadOfLiteralTests/CodeFix.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Test/WPF0150UseNameofInsteadOfLiteralTests/Valid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test/WPF0150UseNameofInsteadOfLiteralTests/Valid.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Test/WPF0151UseNameofInsteadOfConstantTests/CodeFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test/WPF0151UseNameofInsteadOfConstantTests/CodeFix.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Test/WPF0151UseNameofInsteadOfConstantTests/Valid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test/WPF0151UseNameofInsteadOfConstantTests/Valid.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Test/WPF0170StyleTypedPropertyPropertyTargetTests/Diagnostics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test/WPF0170StyleTypedPropertyPropertyTargetTests/Diagnostics.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Test/WPF0170StyleTypedPropertyPropertyTargetTests/Valid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test/WPF0170StyleTypedPropertyPropertyTargetTests/Valid.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Test/WPF0171StyleTypedPropertyTypeTests/Diagnostics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test/WPF0171StyleTypedPropertyTypeTests/Diagnostics.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Test/WPF0171StyleTypedPropertyTypeTests/Valid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test/WPF0171StyleTypedPropertyTypeTests/Valid.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Test/WPF0172StyleTypedPropertyProvidedTests/Diagnostics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test/WPF0172StyleTypedPropertyProvidedTests/Diagnostics.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Test/WPF0172StyleTypedPropertyProvidedTests/Valid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test/WPF0172StyleTypedPropertyProvidedTests/Valid.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Test/WPF0173StyleTypedPropertyStyleTargetTypeTests/Diagnostics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test/WPF0173StyleTypedPropertyStyleTargetTypeTests/Diagnostics.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Test/WPF0173StyleTypedPropertyStyleTargetTypeTests/Valid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test/WPF0173StyleTypedPropertyStyleTargetTypeTests/Valid.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Test/WPF0174StyleTypedPropertyStyleSpecifiedTests/Diagnostics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test/WPF0174StyleTypedPropertyStyleSpecifiedTests/Diagnostics.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Test/WPF0174StyleTypedPropertyStyleSpecifiedTests/Valid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test/WPF0174StyleTypedPropertyStyleSpecifiedTests/Valid.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Test/WPF0175StyleTypedPropertyPropertyUniqueTests/Diagnostics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test/WPF0175StyleTypedPropertyPropertyUniqueTests/Diagnostics.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Test/WPF0175StyleTypedPropertyPropertyUniqueTests/Valid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test/WPF0175StyleTypedPropertyPropertyUniqueTests/Valid.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Test/WPF0176StyleTypedPropertyMissingTests/Diagnostics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test/WPF0176StyleTypedPropertyMissingTests/Diagnostics.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Test/WPF0176StyleTypedPropertyMissingTests/Valid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test/WPF0176StyleTypedPropertyMissingTests/Valid.cs -------------------------------------------------------------------------------- /WpfAnalyzers.Test/WpfAnalyzers.Test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test/WpfAnalyzers.Test.csproj -------------------------------------------------------------------------------- /WpfAnalyzers.Test/WpfAnalyzers.Test.csproj.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Test/WpfAnalyzers.Test.csproj.DotSettings -------------------------------------------------------------------------------- /WpfAnalyzers.Vsix/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Vsix/Properties/launchSettings.json -------------------------------------------------------------------------------- /WpfAnalyzers.Vsix/Reset.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Vsix/Reset.txt -------------------------------------------------------------------------------- /WpfAnalyzers.Vsix/WpfAnalyzers.Vsix.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Vsix/WpfAnalyzers.Vsix.csproj -------------------------------------------------------------------------------- /WpfAnalyzers.Vsix/source.extension.vsixmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.Vsix/source.extension.vsixmanifest -------------------------------------------------------------------------------- /WpfAnalyzers.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.sln -------------------------------------------------------------------------------- /WpfAnalyzers.sln.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.sln.DotSettings -------------------------------------------------------------------------------- /WpfAnalyzers.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers.snk -------------------------------------------------------------------------------- /WpfAnalyzers/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers/.editorconfig -------------------------------------------------------------------------------- /WpfAnalyzers/AnalyzerCategory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers/AnalyzerCategory.cs -------------------------------------------------------------------------------- /WpfAnalyzers/Analyzers/AttributeAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers/Analyzers/AttributeAnalyzer.cs -------------------------------------------------------------------------------- /WpfAnalyzers/Analyzers/CallbackAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers/Analyzers/CallbackAnalyzer.cs -------------------------------------------------------------------------------- /WpfAnalyzers/Analyzers/ClrMethodDeclarationAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers/Analyzers/ClrMethodDeclarationAnalyzer.cs -------------------------------------------------------------------------------- /WpfAnalyzers/Analyzers/ClrPropertyDeclarationAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers/Analyzers/ClrPropertyDeclarationAnalyzer.cs -------------------------------------------------------------------------------- /WpfAnalyzers/Analyzers/ComponentResourceKeyAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers/Analyzers/ComponentResourceKeyAnalyzer.cs -------------------------------------------------------------------------------- /WpfAnalyzers/Analyzers/DependencyPropertyBackingFieldOrPropertyAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers/Analyzers/DependencyPropertyBackingFieldOrPropertyAnalyzer.cs -------------------------------------------------------------------------------- /WpfAnalyzers/Analyzers/GetTemplateChildAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers/Analyzers/GetTemplateChildAnalyzer.cs -------------------------------------------------------------------------------- /WpfAnalyzers/Analyzers/OverrideMetadataAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers/Analyzers/OverrideMetadataAnalyzer.cs -------------------------------------------------------------------------------- /WpfAnalyzers/Analyzers/PropertyMetadataAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers/Analyzers/PropertyMetadataAnalyzer.cs -------------------------------------------------------------------------------- /WpfAnalyzers/Analyzers/RegistrationAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers/Analyzers/RegistrationAnalyzer.cs -------------------------------------------------------------------------------- /WpfAnalyzers/Analyzers/RoutedCommandCreationAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers/Analyzers/RoutedCommandCreationAnalyzer.cs -------------------------------------------------------------------------------- /WpfAnalyzers/Analyzers/RoutedEventBackingFieldOrPropertyAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers/Analyzers/RoutedEventBackingFieldOrPropertyAnalyzer.cs -------------------------------------------------------------------------------- /WpfAnalyzers/Analyzers/RoutedEventCallbackAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers/Analyzers/RoutedEventCallbackAnalyzer.cs -------------------------------------------------------------------------------- /WpfAnalyzers/Analyzers/RoutedEventEventDeclarationAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers/Analyzers/RoutedEventEventDeclarationAnalyzer.cs -------------------------------------------------------------------------------- /WpfAnalyzers/Analyzers/SetValueAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers/Analyzers/SetValueAnalyzer.cs -------------------------------------------------------------------------------- /WpfAnalyzers/Analyzers/ValueConverterAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers/Analyzers/ValueConverterAnalyzer.cs -------------------------------------------------------------------------------- /WpfAnalyzers/AssemblyAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers/AssemblyAttributes.cs -------------------------------------------------------------------------------- /WpfAnalyzers/CodeFixes/AddAttributeListFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers/CodeFixes/AddAttributeListFix.cs -------------------------------------------------------------------------------- /WpfAnalyzers/CodeFixes/AddDefaultMemberFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers/CodeFixes/AddDefaultMemberFix.cs -------------------------------------------------------------------------------- /WpfAnalyzers/CodeFixes/AttachedPropertyBrowsableForTypeArgumentFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers/CodeFixes/AttachedPropertyBrowsableForTypeArgumentFix.cs -------------------------------------------------------------------------------- /WpfAnalyzers/CodeFixes/AttachedPropertyBrowsableForTypeAttributeFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers/CodeFixes/AttachedPropertyBrowsableForTypeAttributeFix.cs -------------------------------------------------------------------------------- /WpfAnalyzers/CodeFixes/CastFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers/CodeFixes/CastFix.cs -------------------------------------------------------------------------------- /WpfAnalyzers/CodeFixes/ChangeTypeofFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers/CodeFixes/ChangeTypeofFix.cs -------------------------------------------------------------------------------- /WpfAnalyzers/CodeFixes/ComponentResourceKeyFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers/CodeFixes/ComponentResourceKeyFix.cs -------------------------------------------------------------------------------- /WpfAnalyzers/CodeFixes/ConstructorArgumentAttributeArgumentFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers/CodeFixes/ConstructorArgumentAttributeArgumentFix.cs -------------------------------------------------------------------------------- /WpfAnalyzers/CodeFixes/ConstructorArgumentAttributeFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers/CodeFixes/ConstructorArgumentAttributeFix.cs -------------------------------------------------------------------------------- /WpfAnalyzers/CodeFixes/ConvertToLambdaFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers/CodeFixes/ConvertToLambdaFix.cs -------------------------------------------------------------------------------- /WpfAnalyzers/CodeFixes/DocumentationFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers/CodeFixes/DocumentationFix.cs -------------------------------------------------------------------------------- /WpfAnalyzers/CodeFixes/Helpers/SyntaxTokenListExt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers/CodeFixes/Helpers/SyntaxTokenListExt.cs -------------------------------------------------------------------------------- /WpfAnalyzers/CodeFixes/ImplementValueConverterFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers/CodeFixes/ImplementValueConverterFix.cs -------------------------------------------------------------------------------- /WpfAnalyzers/CodeFixes/MakeFieldStaticReadonlyFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers/CodeFixes/MakeFieldStaticReadonlyFix.cs -------------------------------------------------------------------------------- /WpfAnalyzers/CodeFixes/MakeNullableFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers/CodeFixes/MakeNullableFix.cs -------------------------------------------------------------------------------- /WpfAnalyzers/CodeFixes/MakePropertyStaticReadonlyFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers/CodeFixes/MakePropertyStaticReadonlyFix.cs -------------------------------------------------------------------------------- /WpfAnalyzers/CodeFixes/MarkupExtensionReturnTypeAttributeFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers/CodeFixes/MarkupExtensionReturnTypeAttributeFix.cs -------------------------------------------------------------------------------- /WpfAnalyzers/CodeFixes/MoveFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers/CodeFixes/MoveFix.cs -------------------------------------------------------------------------------- /WpfAnalyzers/CodeFixes/RegisterRoutedCommandFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers/CodeFixes/RegisterRoutedCommandFix.cs -------------------------------------------------------------------------------- /WpfAnalyzers/CodeFixes/RenameMemberFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers/CodeFixes/RenameMemberFix.cs -------------------------------------------------------------------------------- /WpfAnalyzers/CodeFixes/UseContainingTypeFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers/CodeFixes/UseContainingTypeFix.cs -------------------------------------------------------------------------------- /WpfAnalyzers/CodeFixes/UseCorrectDelegateFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers/CodeFixes/UseCorrectDelegateFix.cs -------------------------------------------------------------------------------- /WpfAnalyzers/CodeFixes/UseDependencyPropertyKeyFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers/CodeFixes/UseDependencyPropertyKeyFix.cs -------------------------------------------------------------------------------- /WpfAnalyzers/CodeFixes/UseNameofFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers/CodeFixes/UseNameofFix.cs -------------------------------------------------------------------------------- /WpfAnalyzers/CodeFixes/UseRegisteredTypeFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers/CodeFixes/UseRegisteredTypeFix.cs -------------------------------------------------------------------------------- /WpfAnalyzers/CodeFixes/UseSetCurrentValueFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers/CodeFixes/UseSetCurrentValueFix.cs -------------------------------------------------------------------------------- /WpfAnalyzers/CodeFixes/UseSetValueFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers/CodeFixes/UseSetValueFix.cs -------------------------------------------------------------------------------- /WpfAnalyzers/CodeFixes/ValueConversionAttributeArgumentFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers/CodeFixes/ValueConversionAttributeArgumentFix.cs -------------------------------------------------------------------------------- /WpfAnalyzers/CodeFixes/ValueConversionAttributeFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers/CodeFixes/ValueConversionAttributeFix.cs -------------------------------------------------------------------------------- /WpfAnalyzers/CodeFixes/XmlnsDefinitionFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers/CodeFixes/XmlnsDefinitionFix.cs -------------------------------------------------------------------------------- /WpfAnalyzers/Descriptors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers/Descriptors.cs -------------------------------------------------------------------------------- /WpfAnalyzers/Helpers/ArgumentAndValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers/Helpers/ArgumentAndValue.cs -------------------------------------------------------------------------------- /WpfAnalyzers/Helpers/BackingFieldOrProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers/Helpers/BackingFieldOrProperty.cs -------------------------------------------------------------------------------- /WpfAnalyzers/Helpers/Callback.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers/Helpers/Callback.cs -------------------------------------------------------------------------------- /WpfAnalyzers/Helpers/ClrProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers/Helpers/ClrProperty.cs -------------------------------------------------------------------------------- /WpfAnalyzers/Helpers/CoerceValueCallback.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers/Helpers/CoerceValueCallback.cs -------------------------------------------------------------------------------- /WpfAnalyzers/Helpers/ConstructorArgument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers/Helpers/ConstructorArgument.cs -------------------------------------------------------------------------------- /WpfAnalyzers/Helpers/DependencyObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers/Helpers/DependencyObject.cs -------------------------------------------------------------------------------- /WpfAnalyzers/Helpers/DependencyProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers/Helpers/DependencyProperty.cs -------------------------------------------------------------------------------- /WpfAnalyzers/Helpers/DocComment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers/Helpers/DocComment.cs -------------------------------------------------------------------------------- /WpfAnalyzers/Helpers/EventManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers/Helpers/EventManager.cs -------------------------------------------------------------------------------- /WpfAnalyzers/Helpers/GetAttached.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers/Helpers/GetAttached.cs -------------------------------------------------------------------------------- /WpfAnalyzers/Helpers/KnownSymbols/DependencyObjectType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers/Helpers/KnownSymbols/DependencyObjectType.cs -------------------------------------------------------------------------------- /WpfAnalyzers/Helpers/KnownSymbols/DependencyPropertyKeyType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers/Helpers/KnownSymbols/DependencyPropertyKeyType.cs -------------------------------------------------------------------------------- /WpfAnalyzers/Helpers/KnownSymbols/DependencyPropertyType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers/Helpers/KnownSymbols/DependencyPropertyType.cs -------------------------------------------------------------------------------- /WpfAnalyzers/Helpers/KnownSymbols/EventManagerType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers/Helpers/KnownSymbols/EventManagerType.cs -------------------------------------------------------------------------------- /WpfAnalyzers/Helpers/KnownSymbols/FrameworkElementType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers/Helpers/KnownSymbols/FrameworkElementType.cs -------------------------------------------------------------------------------- /WpfAnalyzers/Helpers/KnownSymbols/KnownSymbols.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers/Helpers/KnownSymbols/KnownSymbols.cs -------------------------------------------------------------------------------- /WpfAnalyzers/Helpers/KnownSymbols/ObjectType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers/Helpers/KnownSymbols/ObjectType.cs -------------------------------------------------------------------------------- /WpfAnalyzers/Helpers/KnownSymbols/XmlnsDefinitionAttributeType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers/Helpers/KnownSymbols/XmlnsDefinitionAttributeType.cs -------------------------------------------------------------------------------- /WpfAnalyzers/Helpers/MarkupExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers/Helpers/MarkupExtension.cs -------------------------------------------------------------------------------- /WpfAnalyzers/Helpers/PropertyChangedCallback.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers/Helpers/PropertyChangedCallback.cs -------------------------------------------------------------------------------- /WpfAnalyzers/Helpers/PropertyMetaData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers/Helpers/PropertyMetaData.cs -------------------------------------------------------------------------------- /WpfAnalyzers/Helpers/SetAttached.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers/Helpers/SetAttached.cs -------------------------------------------------------------------------------- /WpfAnalyzers/Helpers/SymbolHelpers/FieldOrPropertyExt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers/Helpers/SymbolHelpers/FieldOrPropertyExt.cs -------------------------------------------------------------------------------- /WpfAnalyzers/Helpers/SymbolHelpers/FieldSymbolExt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers/Helpers/SymbolHelpers/FieldSymbolExt.cs -------------------------------------------------------------------------------- /WpfAnalyzers/Helpers/SymbolHelpers/Mutable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers/Helpers/SymbolHelpers/Mutable.cs -------------------------------------------------------------------------------- /WpfAnalyzers/Helpers/SymbolHelpers/TypeSymbolExt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers/Helpers/SymbolHelpers/TypeSymbolExt.cs -------------------------------------------------------------------------------- /WpfAnalyzers/Helpers/SyntaxNodeAnalysisContextExt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers/Helpers/SyntaxNodeAnalysisContextExt.cs -------------------------------------------------------------------------------- /WpfAnalyzers/Helpers/SyntaxtTreeHelpers/AttributeExt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers/Helpers/SyntaxtTreeHelpers/AttributeExt.cs -------------------------------------------------------------------------------- /WpfAnalyzers/Helpers/SyntaxtTreeHelpers/ExpressionSyntaxExt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers/Helpers/SyntaxtTreeHelpers/ExpressionSyntaxExt.cs -------------------------------------------------------------------------------- /WpfAnalyzers/Helpers/SyntaxtTreeHelpers/InvocationExpressionSyntaxExt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers/Helpers/SyntaxtTreeHelpers/InvocationExpressionSyntaxExt.cs -------------------------------------------------------------------------------- /WpfAnalyzers/Helpers/SyntaxtTreeHelpers/MethodOrAccessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers/Helpers/SyntaxtTreeHelpers/MethodOrAccessor.cs -------------------------------------------------------------------------------- /WpfAnalyzers/Helpers/SyntaxtTreeHelpers/ObjectCreationExpressionSyntaxExt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers/Helpers/SyntaxtTreeHelpers/ObjectCreationExpressionSyntaxExt.cs -------------------------------------------------------------------------------- /WpfAnalyzers/Helpers/SyntaxtTreeHelpers/TypeSymbol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers/Helpers/SyntaxtTreeHelpers/TypeSymbol.cs -------------------------------------------------------------------------------- /WpfAnalyzers/Helpers/ValidateValueCallback.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers/Helpers/ValidateValueCallback.cs -------------------------------------------------------------------------------- /WpfAnalyzers/Helpers/ValueConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers/Helpers/ValueConverter.cs -------------------------------------------------------------------------------- /WpfAnalyzers/Helpers/Virtual.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers/Helpers/Virtual.cs -------------------------------------------------------------------------------- /WpfAnalyzers/Helpers/Walkers/ConversionWalker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers/Helpers/Walkers/ConversionWalker.cs -------------------------------------------------------------------------------- /WpfAnalyzers/Helpers/Walkers/InvocationWalker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers/Helpers/Walkers/InvocationWalker.cs -------------------------------------------------------------------------------- /WpfAnalyzers/Helpers/Walkers/ReturnValueWalker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers/Helpers/Walkers/ReturnValueWalker.cs -------------------------------------------------------------------------------- /WpfAnalyzers/Refactorings/AutoPropertyRefactoring.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers/Refactorings/AutoPropertyRefactoring.cs -------------------------------------------------------------------------------- /WpfAnalyzers/Refactorings/EventRefactoring.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers/Refactorings/EventRefactoring.cs -------------------------------------------------------------------------------- /WpfAnalyzers/Refactorings/ReadOnlyRefactoring.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers/Refactorings/ReadOnlyRefactoring.cs -------------------------------------------------------------------------------- /WpfAnalyzers/Suppressors/Sa1202Suppressor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers/Suppressors/Sa1202Suppressor.cs -------------------------------------------------------------------------------- /WpfAnalyzers/WPF0011ContainingTypeShouldBeRegisteredOwner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers/WPF0011ContainingTypeShouldBeRegisteredOwner.cs -------------------------------------------------------------------------------- /WpfAnalyzers/WPF0015RegisteredOwnerTypeMustBeDependencyObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers/WPF0015RegisteredOwnerTypeMustBeDependencyObject.cs -------------------------------------------------------------------------------- /WpfAnalyzers/WPF0041SetMutableUsingSetCurrentValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers/WPF0041SetMutableUsingSetCurrentValue.cs -------------------------------------------------------------------------------- /WpfAnalyzers/WPF0050XmlnsPrefixMustMatchXmlnsDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers/WPF0050XmlnsPrefixMustMatchXmlnsDefinition.cs -------------------------------------------------------------------------------- /WpfAnalyzers/WPF0052XmlnsDefinitionsDoesNotMapAllNamespaces.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers/WPF0052XmlnsDefinitionsDoesNotMapAllNamespaces.cs -------------------------------------------------------------------------------- /WpfAnalyzers/WPF0080MarkupExtensionDoesNotHaveAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers/WPF0080MarkupExtensionDoesNotHaveAttribute.cs -------------------------------------------------------------------------------- /WpfAnalyzers/WPF0083UseConstructorArgumentAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers/WPF0083UseConstructorArgumentAttribute.cs -------------------------------------------------------------------------------- /WpfAnalyzers/WpfAnalyzers.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers/WpfAnalyzers.csproj -------------------------------------------------------------------------------- /WpfAnalyzers/WpfAnalyzers.csproj.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers/WpfAnalyzers.csproj.DotSettings -------------------------------------------------------------------------------- /WpfAnalyzers/tools/install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers/tools/install.ps1 -------------------------------------------------------------------------------- /WpfAnalyzers/tools/uninstall.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/WpfAnalyzers/tools/uninstall.ps1 -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/appveyor.yml -------------------------------------------------------------------------------- /azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/azure-pipelines.yml -------------------------------------------------------------------------------- /documentation/WPF0001.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/documentation/WPF0001.md -------------------------------------------------------------------------------- /documentation/WPF0002.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/documentation/WPF0002.md -------------------------------------------------------------------------------- /documentation/WPF0003.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/documentation/WPF0003.md -------------------------------------------------------------------------------- /documentation/WPF0004.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/documentation/WPF0004.md -------------------------------------------------------------------------------- /documentation/WPF0005.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/documentation/WPF0005.md -------------------------------------------------------------------------------- /documentation/WPF0006.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/documentation/WPF0006.md -------------------------------------------------------------------------------- /documentation/WPF0007.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/documentation/WPF0007.md -------------------------------------------------------------------------------- /documentation/WPF0008.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/documentation/WPF0008.md -------------------------------------------------------------------------------- /documentation/WPF0010.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/documentation/WPF0010.md -------------------------------------------------------------------------------- /documentation/WPF0011.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/documentation/WPF0011.md -------------------------------------------------------------------------------- /documentation/WPF0012.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/documentation/WPF0012.md -------------------------------------------------------------------------------- /documentation/WPF0013.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/documentation/WPF0013.md -------------------------------------------------------------------------------- /documentation/WPF0014.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/documentation/WPF0014.md -------------------------------------------------------------------------------- /documentation/WPF0015.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/documentation/WPF0015.md -------------------------------------------------------------------------------- /documentation/WPF0016.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/documentation/WPF0016.md -------------------------------------------------------------------------------- /documentation/WPF0017.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/documentation/WPF0017.md -------------------------------------------------------------------------------- /documentation/WPF0018.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/documentation/WPF0018.md -------------------------------------------------------------------------------- /documentation/WPF0019.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/documentation/WPF0019.md -------------------------------------------------------------------------------- /documentation/WPF0020.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/documentation/WPF0020.md -------------------------------------------------------------------------------- /documentation/WPF0021.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/documentation/WPF0021.md -------------------------------------------------------------------------------- /documentation/WPF0022.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/documentation/WPF0022.md -------------------------------------------------------------------------------- /documentation/WPF0023.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/documentation/WPF0023.md -------------------------------------------------------------------------------- /documentation/WPF0024.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/documentation/WPF0024.md -------------------------------------------------------------------------------- /documentation/WPF0030.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/documentation/WPF0030.md -------------------------------------------------------------------------------- /documentation/WPF0031.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/documentation/WPF0031.md -------------------------------------------------------------------------------- /documentation/WPF0032.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/documentation/WPF0032.md -------------------------------------------------------------------------------- /documentation/WPF0033.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/documentation/WPF0033.md -------------------------------------------------------------------------------- /documentation/WPF0034.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/documentation/WPF0034.md -------------------------------------------------------------------------------- /documentation/WPF0035.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/documentation/WPF0035.md -------------------------------------------------------------------------------- /documentation/WPF0036.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/documentation/WPF0036.md -------------------------------------------------------------------------------- /documentation/WPF0040.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/documentation/WPF0040.md -------------------------------------------------------------------------------- /documentation/WPF0041.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/documentation/WPF0041.md -------------------------------------------------------------------------------- /documentation/WPF0042.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/documentation/WPF0042.md -------------------------------------------------------------------------------- /documentation/WPF0043.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/documentation/WPF0043.md -------------------------------------------------------------------------------- /documentation/WPF0050.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/documentation/WPF0050.md -------------------------------------------------------------------------------- /documentation/WPF0051.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/documentation/WPF0051.md -------------------------------------------------------------------------------- /documentation/WPF0052.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/documentation/WPF0052.md -------------------------------------------------------------------------------- /documentation/WPF0060.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/documentation/WPF0060.md -------------------------------------------------------------------------------- /documentation/WPF0061.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/documentation/WPF0061.md -------------------------------------------------------------------------------- /documentation/WPF0062.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/documentation/WPF0062.md -------------------------------------------------------------------------------- /documentation/WPF0070.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/documentation/WPF0070.md -------------------------------------------------------------------------------- /documentation/WPF0071.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/documentation/WPF0071.md -------------------------------------------------------------------------------- /documentation/WPF0072.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/documentation/WPF0072.md -------------------------------------------------------------------------------- /documentation/WPF0073.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/documentation/WPF0073.md -------------------------------------------------------------------------------- /documentation/WPF0074.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/documentation/WPF0074.md -------------------------------------------------------------------------------- /documentation/WPF0080.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/documentation/WPF0080.md -------------------------------------------------------------------------------- /documentation/WPF0081.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/documentation/WPF0081.md -------------------------------------------------------------------------------- /documentation/WPF0082.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/documentation/WPF0082.md -------------------------------------------------------------------------------- /documentation/WPF0083.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/documentation/WPF0083.md -------------------------------------------------------------------------------- /documentation/WPF0084.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/documentation/WPF0084.md -------------------------------------------------------------------------------- /documentation/WPF0085.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/documentation/WPF0085.md -------------------------------------------------------------------------------- /documentation/WPF0090.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/documentation/WPF0090.md -------------------------------------------------------------------------------- /documentation/WPF0091.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/documentation/WPF0091.md -------------------------------------------------------------------------------- /documentation/WPF0092.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/documentation/WPF0092.md -------------------------------------------------------------------------------- /documentation/WPF0100.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/documentation/WPF0100.md -------------------------------------------------------------------------------- /documentation/WPF0101.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/documentation/WPF0101.md -------------------------------------------------------------------------------- /documentation/WPF0102.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/documentation/WPF0102.md -------------------------------------------------------------------------------- /documentation/WPF0103.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/documentation/WPF0103.md -------------------------------------------------------------------------------- /documentation/WPF0104.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/documentation/WPF0104.md -------------------------------------------------------------------------------- /documentation/WPF0105.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/documentation/WPF0105.md -------------------------------------------------------------------------------- /documentation/WPF0106.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/documentation/WPF0106.md -------------------------------------------------------------------------------- /documentation/WPF0107.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/documentation/WPF0107.md -------------------------------------------------------------------------------- /documentation/WPF0108.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/documentation/WPF0108.md -------------------------------------------------------------------------------- /documentation/WPF0120.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/documentation/WPF0120.md -------------------------------------------------------------------------------- /documentation/WPF0121.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/documentation/WPF0121.md -------------------------------------------------------------------------------- /documentation/WPF0122.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/documentation/WPF0122.md -------------------------------------------------------------------------------- /documentation/WPF0123.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/documentation/WPF0123.md -------------------------------------------------------------------------------- /documentation/WPF0130.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/documentation/WPF0130.md -------------------------------------------------------------------------------- /documentation/WPF0131.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/documentation/WPF0131.md -------------------------------------------------------------------------------- /documentation/WPF0132.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/documentation/WPF0132.md -------------------------------------------------------------------------------- /documentation/WPF0133.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/documentation/WPF0133.md -------------------------------------------------------------------------------- /documentation/WPF0140.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/documentation/WPF0140.md -------------------------------------------------------------------------------- /documentation/WPF0141.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/documentation/WPF0141.md -------------------------------------------------------------------------------- /documentation/WPF0150.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/documentation/WPF0150.md -------------------------------------------------------------------------------- /documentation/WPF0151.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/documentation/WPF0151.md -------------------------------------------------------------------------------- /documentation/WPF0170.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/documentation/WPF0170.md -------------------------------------------------------------------------------- /documentation/WPF0171.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/documentation/WPF0171.md -------------------------------------------------------------------------------- /documentation/WPF0172.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/documentation/WPF0172.md -------------------------------------------------------------------------------- /documentation/WPF0173.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/documentation/WPF0173.md -------------------------------------------------------------------------------- /documentation/WPF0174.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/documentation/WPF0174.md -------------------------------------------------------------------------------- /documentation/WPF0175.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/documentation/WPF0175.md -------------------------------------------------------------------------------- /documentation/WPF0176.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/WpfAnalyzers/HEAD/documentation/WPF0176.md --------------------------------------------------------------------------------