├── .editorconfig ├── .gitattributes ├── .github └── dependabot.yml ├── .gitignore ├── LICENSE ├── PropertyChangedAnalyzers.Benchmarks ├── .editorconfig ├── AssemblyAttributes.cs ├── BenchmarkTests.cs ├── Benchmarks │ ├── AllBenchmarks.cs │ ├── AllBenchmarks.md │ ├── ArgumentAnalyzerBenchmarks.cs │ ├── ArgumentAnalyzerBenchmarks.md │ ├── AssignmentAnalyzerBenchmarks.cs │ ├── AssignmentAnalyzerBenchmarks.md │ ├── ClassDeclarationAnalyzerBenchmarks.cs │ ├── ClassDeclarationAnalyzerBenchmarks.md │ ├── Codegen │ │ ├── Code.cs │ │ └── CodeGen.cs │ ├── EventAnalyzerBenchmarks.cs │ ├── EventAnalyzerBenchmarks.md │ ├── InvocationAnalyzerBenchmarks.cs │ ├── InvocationAnalyzerBenchmarks.md │ ├── MethodDeclarationAnalyzerBenchmarks.cs │ ├── MethodDeclarationAnalyzerBenchmarks.md │ ├── MutationAnalyzerBenchmarks.cs │ ├── MutationAnalyzerBenchmarks.md │ ├── PropertyDeclarationAnalyzerBenchmarks.cs │ ├── PropertyDeclarationAnalyzerBenchmarks.md │ ├── SetAccessorAnalyzerBenchmarks.cs │ ├── SetAccessorAnalyzerBenchmarks.md │ ├── StructAnalyzerBenchmarks.cs │ └── StructAnalyzerBenchmarks.md ├── Program.cs ├── PropertyChangedAnalyzers.Benchmarks.csproj └── PropertyChangedAnalyzers.Benchmarks.csproj.DotSettings ├── PropertyChangedAnalyzers.Test ├── .editorconfig ├── AssemblyAttributes.cs ├── DocumentationTests.cs ├── HandlesRecursion.cs ├── Helpers │ ├── GetterTests.cs │ ├── LibrarySettings.cs │ ├── MutableAutoPropertyTests.cs │ ├── OnPropertyChangedTests.Find.cs │ ├── OnPropertyChangedTests.MatchMethodSymbol.cs │ ├── PropertyChangedEventArgsTests.cs │ ├── PropertyChangedTest.FindPropertyName.cs │ ├── PropertyChangedTest.InvokesPropertyChangedFor.cs │ ├── PropertyTests.ShouldNotify.cs │ ├── PropertyTests.cs │ ├── SetterTests.FindBackingField.cs │ ├── SyntaxTreeHelpers │ │ └── PropertyDeclarationSyntaxExtTests.cs │ ├── TrySetTests.Find.cs │ └── TrySetTests.IsMatchMethod.cs ├── INPC001ImplementINotifyPropertyChanged │ ├── CodeFix.CS0246.cs │ ├── CodeFix.CS0535.cs │ ├── CodeFix.CaliburnMicro.cs │ ├── CodeFix.MvvmCrossCore.cs │ ├── CodeFix.MvvmLight.cs │ ├── CodeFix.PrismBindableBase.cs │ ├── CodeFix.StyletMvvm.cs │ ├── CodeFix.cs │ ├── NoFix.cs │ ├── Valid.Ignores.cs │ ├── Valid.ThirdParty.cs │ └── Valid.cs ├── INPC002MutablePublicPropertyShouldNotify │ ├── CodeFix.AutoProperty.cs │ ├── CodeFix.CaliburnMicro.PropertyChangedBase.cs │ ├── CodeFix.CaliburnMicro.Screen.cs │ ├── CodeFix.Equality.cs │ ├── CodeFix.MvvmCrossCore.cs │ ├── CodeFix.MvvmLight.cs │ ├── CodeFix.PrismBindableBase.cs │ ├── CodeFix.Repros.cs │ ├── CodeFix.Style.cs │ ├── CodeFix.StyletMvvm.cs │ ├── CodeFix.UnknownBinary.cs │ ├── CodeFix.ViewModelBase.cs │ ├── CodeFix.ViewModelBaseSubclassingPropertyChangedBase.cs │ ├── CodeFix.WithBackingFieldNotify.cs │ ├── CodeFix.WithBackingFieldNotifyWhenValueChanges.cs │ ├── CodeFix.cs │ ├── FixAll.cs │ ├── NoFix.cs │ ├── Valid.CaliburnMicro.cs │ ├── Valid.Ignores.cs │ ├── Valid.MvvmCrossCore.cs │ ├── Valid.MvvmLight.cs │ ├── Valid.PrismBindableBase.cs │ ├── Valid.StyletMvvm.cs │ ├── Valid.ViewModelBase.cs │ └── Valid.cs ├── INPC003NotifyForDependentProperty │ ├── CodeFix.CaliburnMicro.cs │ ├── CodeFix.GenericViewModelBase.cs │ ├── CodeFix.MvvmCrossCore.cs │ ├── CodeFix.MvvmLight.cs │ ├── CodeFix.Order.cs │ ├── CodeFix.PrismBindableBase.cs │ ├── CodeFix.Repros.cs │ ├── CodeFix.StyletMvvm.cs │ ├── CodeFix.ViewModelBase.cs │ ├── CodeFix.ViewModelBaseNotInSource.cs │ ├── CodeFix.cs │ ├── FixAll.cs │ ├── Valid.CaliburnMicro.cs │ ├── Valid.GenericViewModelBase.cs │ ├── Valid.Ignore.cs │ ├── Valid.MvvmCrossCore.cs │ ├── Valid.MvvmLight.cs │ ├── Valid.PrismBindableBase.cs │ ├── Valid.StyletMvvm.cs │ ├── Valid.ViewModelBase.cs │ ├── Valid.ViewModelBaseNotInSource.cs │ └── Valid.cs ├── INPC004UseCallerMemberName │ ├── CodeFix.Argument.cs │ ├── CodeFix.Method.cs │ ├── FixAll.cs │ └── Valid{T}.cs ├── INPC005CheckIfDifferentBeforeNotifying │ ├── CodeFix.CaliburnMicro.cs │ ├── CodeFix.MvvmCrossCore.cs │ ├── CodeFix.MvvmLight.cs │ ├── CodeFix.PrismBindableBase.cs │ ├── CodeFix.StyletMvvm.cs │ ├── CodeFix.ViewModelBase.cs │ ├── CodeFix.WhenCheck.cs │ ├── CodeFix.WhenNoCheck.cs │ ├── CodeFix.cs │ ├── NoFix.cs │ ├── Valid.CaliburnMicro.cs │ ├── Valid.MvvmCrossCore.cs │ ├── Valid.MvvmLight.cs │ ├── Valid.PrismBindableBase.cs │ ├── Valid.StyletMvvm.cs │ ├── Valid.ViewModelBase.cs │ └── Valid.cs ├── INPC006UseObjectEqualsForReferenceTypes │ ├── CodeFix.cs │ └── Valid.cs ├── INPC006UseReferenceEquals │ ├── CodeFix.cs │ └── Valid.cs ├── INPC007MissingInvoker │ ├── CodeFix.cs │ └── Valid.cs ├── INPC008StructMustNotNotify │ ├── Diagnostics.cs │ └── Valid.cs ├── INPC009NotifiesForMissingProperty │ ├── Diagnostics.Argument.cs │ ├── Diagnostics.Invocation.cs │ └── Valid{T}.cs ├── INPC010GetAndSetSame │ ├── Diagnostics.cs │ └── Valid.cs ├── INPC011DoNotShadow │ ├── Codefix.cs │ └── Valid.cs ├── INPC012DoNotUseExpression │ ├── Codefix.CaliburnMicro.cs │ ├── Codefix.MvvmCrossCore.cs │ ├── Codefix.MvvmLight.cs │ ├── Codefix.StyletMvvm.cs │ ├── Codefix.ViewModelBase.cs │ ├── Codefix.cs │ └── Valid.cs ├── INPC013UseNameof │ ├── CodeFix.cs │ └── Valid.cs ├── INPC014PreferSettingBackingFieldInCtor │ ├── CodeFix.cs │ └── Valid.cs ├── INPC015PropertyIsRecursive │ ├── Diagnostics.cs │ └── Valid.cs ├── INPC016NotifyAfterUpdate │ ├── Diagnostics.cs │ └── Valid.cs ├── INPC017BackingFieldNameMustMatch │ ├── CodeFix.cs │ └── Valid.cs ├── INPC018InvokerShouldBeProtected │ ├── CodeFix.cs │ └── Valid.cs ├── INPC019GetBackingField │ ├── CodeFix.cs │ └── Valid.cs ├── INPC020PreferExpressionBodyAccessor │ ├── CodeFix.cs │ └── FixAll.cs ├── INPC021SetBackingField │ └── Diagnostics.cs ├── INPC022EqualToBackingField │ ├── CodeFix.cs │ └── Valid.cs ├── INPC023InstanceEquals │ ├── CodeFix.cs │ └── Valid.cs ├── INPC024ReferenceEqualsValueType │ └── CodeFix.cs ├── ModuleInitializer.cs ├── NullableFixTests │ └── NullableFixTests.cs ├── PropertyChangedAnalyzers.Test.csproj ├── PropertyChangedAnalyzers.Test.csproj.DotSettings ├── ReproBox.cs ├── TestHelpers │ └── Code.cs └── ValidWithAllAnalyzers.cs ├── PropertyChangedAnalyzers.Vsix ├── Properties │ └── launchSettings.json ├── PropertyChangedAnalyzers.Vsix.csproj └── source.extension.vsixmanifest ├── PropertyChangedAnalyzers.sln ├── PropertyChangedAnalyzers.sln.DotSettings ├── PropertyChangedAnalyzers.snk ├── PropertyChangedAnalyzers ├── .editorconfig ├── AnalyzerCategory.cs ├── Analyzers │ ├── ArgumentAnalyzer.cs │ ├── AssignmentAnalyzer.cs │ ├── ClassDeclarationAnalyzer.cs │ ├── EventAnalyzer.cs │ ├── InvocationAnalyzer.cs │ ├── MethodDeclarationAnalyzer.cs │ ├── MutationAnalyzer.cs │ ├── PropertyDeclarationAnalyzer.cs │ ├── SetAccessorAnalyzer.cs │ └── StructAnalyzer.cs ├── AssemblyAttributes.cs ├── CodeFixes │ ├── AddOnPropertyChangedFix.cs │ ├── CheckIfDifferentBeforeNotifyFix.cs │ ├── EqualityFix.cs │ ├── ExpressionBodyFix.cs │ ├── Helpers │ │ ├── DocumentEditorInpcExt.cs │ │ ├── InpcFactory.cs │ │ ├── MakePropertyNotifyHelper.cs │ │ └── Messages.cs │ ├── ImplementINotifyPropertyChangedFix.cs │ ├── MakePropertyNotifyFix.cs │ ├── MakeProtectedFix.cs │ ├── NotifyForDependentPropertyFix.cs │ ├── NullableFix.cs │ ├── RemoveExpressionFix.cs │ ├── RemoveShadowingFix.cs │ ├── RenameFix.cs │ ├── ReplaceExpressionFix.cs │ ├── SetBackingFieldFix.cs │ ├── UseCallerMemberNameFix.cs │ └── UseNameofFix.cs ├── Descriptors.cs ├── Helpers │ ├── AnalysisResult.cs │ ├── AnalysisResult{T}.cs │ ├── BackingMemberAndValue.cs │ ├── CallerMemberNameAttribute.cs │ ├── Comparers │ │ └── SyntaxTokenComparer.cs │ ├── Getter.cs │ ├── KnownSymbols │ │ ├── CaliburnMicroPropertyChangedBase.cs │ │ ├── DependencyObjectType.cs │ │ ├── EqualityComparerOfTType.cs │ │ ├── INotifyPropertyChangedType.cs │ │ ├── KnownSymbol.cs │ │ ├── MicrosoftPracticesPrismMvvmBindableBase.cs │ │ ├── MvvmCrossCoreMvxNotifyPropertyChanged.cs │ │ ├── MvvmCrossMvxNotifyPropertyChanged.cs │ │ ├── MvvmLightObservableObject.cs │ │ ├── MvvmLightViewModelBase.cs │ │ ├── NullableOfTType.cs │ │ ├── NullableType.cs │ │ ├── ObjectType.cs │ │ ├── PropertyChangedEventHandlerType.cs │ │ ├── StringType.cs │ │ └── StyletPropertyChangedBase.cs │ ├── MutableAutoProperty.cs │ ├── MutableProperty.cs │ ├── OnPropertyChanged.cs │ ├── Property.cs │ ├── PropertyChanged.cs │ ├── PropertyChangedEventArgs.cs │ ├── PropertyNameArgument.cs │ ├── PropertyPath.cs │ ├── Setter.cs │ ├── SyntaxtTreeHelpers │ │ ├── FieldDeclarationSyntaxExt.cs │ │ └── IfStatementSyntaxExt.cs │ ├── TrySet.cs │ ├── TrySetMatch.cs │ └── Walkers │ │ ├── AssignmentWalker.cs │ │ ├── IdentifierNameWalker.cs │ │ ├── IdentifierTypeWalker.cs │ │ ├── InvocationWalker.cs │ │ └── ReturnExpressionsWalker.cs ├── PropertyChangedAnalyzers.csproj ├── PropertyChangedAnalyzers.csproj.DotSettings └── tools │ ├── install.ps1 │ └── uninstall.ps1 ├── README.md ├── RELEASE_NOTES.md ├── ValidCode ├── .editorconfig ├── CachingInConcurrentDictionary.cs ├── CustomControl.cs ├── DisposableFoo.cs ├── DontRequireNotificationFor.cs ├── EmptyTrySet.cs ├── Ignores │ ├── Abstract.cs │ ├── Enumerator.cs │ ├── FooControl.cs │ ├── IgnoredProperties.cs │ ├── IntEnumerator.cs │ ├── SomeStream.cs │ └── Struct.cs ├── Inheritance │ ├── ExpressionBodies.cs │ ├── ExpressionBodiesViewModelBase.cs │ ├── StatementBodies.cs │ ├── StatementBodiesViewModelBase.cs │ ├── UnderscoreNames.cs │ └── UnderscoreNamesViewModelBase.cs ├── InheritanceTrySet │ ├── ExpressionBodies.cs │ ├── ExpressionBodiesViewModelBase.cs │ ├── StatementBodies.cs │ ├── StatementBodiesViewModelBase.cs │ ├── UnderscoreNames.cs │ └── UnderscoreNamesViewModelBase.cs ├── IntAndStringProperty.cs ├── Interfaces │ ├── Generic.cs │ ├── GenericAutoProperty.cs │ ├── GenericClass.cs │ ├── IValue.cs │ ├── WithString.cs │ └── WithStringAutoProperty.cs ├── LockInSetter.cs ├── Mouse.cs ├── NotMutations.cs ├── Recursion │ ├── ExpressionBodies.cs │ ├── NotRecursion.cs │ └── StatementBodies.cs ├── RelayProperty.cs ├── Repros │ └── Issue102.cs ├── StaticClass.cs ├── TrySet │ ├── ExpressionBodies.cs │ ├── StatementBodies.cs │ └── UnderscoreNames.cs ├── ValidCode.csproj ├── Vanilla │ ├── ExpressionBodies.cs │ ├── StatementBodies.cs │ └── UnderscoreNames.cs ├── WithEventDeclaration.cs ├── WithEventDeclarationNullableDisabled.cs ├── WithMultidimensional.cs ├── WithSpeeds.cs ├── WithValidation.cs └── Wrapping │ ├── FrameworkTypes.cs │ ├── WithFields.cs │ ├── WrappingFields.cs │ └── WrappingProperties.cs ├── appveyor.yml ├── azure-pipelines.yml └── documentation ├── INPC001.md ├── INPC002.md ├── INPC003.md ├── INPC004.md ├── INPC005.md ├── INPC006_a.md ├── INPC006_b.md ├── INPC007.md ├── INPC008.md ├── INPC009.md ├── INPC010.md ├── INPC011.md ├── INPC012.md ├── INPC013.md ├── INPC014.md ├── INPC015.md ├── INPC016.md ├── INPC017.md ├── INPC018.md ├── INPC019.md ├── INPC020.md ├── INPC021.md ├── INPC022.md ├── INPC023.md └── INPC024.md /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/LICENSE -------------------------------------------------------------------------------- /PropertyChangedAnalyzers.Benchmarks/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers.Benchmarks/.editorconfig -------------------------------------------------------------------------------- /PropertyChangedAnalyzers.Benchmarks/AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | [assembly: CLSCompliant(false)] 4 | -------------------------------------------------------------------------------- /PropertyChangedAnalyzers.Benchmarks/BenchmarkTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers.Benchmarks/BenchmarkTests.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers.Benchmarks/Benchmarks/AllBenchmarks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers.Benchmarks/Benchmarks/AllBenchmarks.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers.Benchmarks/Benchmarks/AllBenchmarks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers.Benchmarks/Benchmarks/AllBenchmarks.md -------------------------------------------------------------------------------- /PropertyChangedAnalyzers.Benchmarks/Benchmarks/ArgumentAnalyzerBenchmarks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers.Benchmarks/Benchmarks/ArgumentAnalyzerBenchmarks.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers.Benchmarks/Benchmarks/ArgumentAnalyzerBenchmarks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers.Benchmarks/Benchmarks/ArgumentAnalyzerBenchmarks.md -------------------------------------------------------------------------------- /PropertyChangedAnalyzers.Benchmarks/Benchmarks/AssignmentAnalyzerBenchmarks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers.Benchmarks/Benchmarks/AssignmentAnalyzerBenchmarks.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers.Benchmarks/Benchmarks/AssignmentAnalyzerBenchmarks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers.Benchmarks/Benchmarks/AssignmentAnalyzerBenchmarks.md -------------------------------------------------------------------------------- /PropertyChangedAnalyzers.Benchmarks/Benchmarks/ClassDeclarationAnalyzerBenchmarks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers.Benchmarks/Benchmarks/ClassDeclarationAnalyzerBenchmarks.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers.Benchmarks/Benchmarks/ClassDeclarationAnalyzerBenchmarks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers.Benchmarks/Benchmarks/ClassDeclarationAnalyzerBenchmarks.md -------------------------------------------------------------------------------- /PropertyChangedAnalyzers.Benchmarks/Benchmarks/Codegen/Code.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers.Benchmarks/Benchmarks/Codegen/Code.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers.Benchmarks/Benchmarks/Codegen/CodeGen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers.Benchmarks/Benchmarks/Codegen/CodeGen.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers.Benchmarks/Benchmarks/EventAnalyzerBenchmarks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers.Benchmarks/Benchmarks/EventAnalyzerBenchmarks.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers.Benchmarks/Benchmarks/EventAnalyzerBenchmarks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers.Benchmarks/Benchmarks/EventAnalyzerBenchmarks.md -------------------------------------------------------------------------------- /PropertyChangedAnalyzers.Benchmarks/Benchmarks/InvocationAnalyzerBenchmarks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers.Benchmarks/Benchmarks/InvocationAnalyzerBenchmarks.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers.Benchmarks/Benchmarks/InvocationAnalyzerBenchmarks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers.Benchmarks/Benchmarks/InvocationAnalyzerBenchmarks.md -------------------------------------------------------------------------------- /PropertyChangedAnalyzers.Benchmarks/Benchmarks/MethodDeclarationAnalyzerBenchmarks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers.Benchmarks/Benchmarks/MethodDeclarationAnalyzerBenchmarks.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers.Benchmarks/Benchmarks/MethodDeclarationAnalyzerBenchmarks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers.Benchmarks/Benchmarks/MethodDeclarationAnalyzerBenchmarks.md -------------------------------------------------------------------------------- /PropertyChangedAnalyzers.Benchmarks/Benchmarks/MutationAnalyzerBenchmarks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers.Benchmarks/Benchmarks/MutationAnalyzerBenchmarks.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers.Benchmarks/Benchmarks/MutationAnalyzerBenchmarks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers.Benchmarks/Benchmarks/MutationAnalyzerBenchmarks.md -------------------------------------------------------------------------------- /PropertyChangedAnalyzers.Benchmarks/Benchmarks/PropertyDeclarationAnalyzerBenchmarks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers.Benchmarks/Benchmarks/PropertyDeclarationAnalyzerBenchmarks.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers.Benchmarks/Benchmarks/PropertyDeclarationAnalyzerBenchmarks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers.Benchmarks/Benchmarks/PropertyDeclarationAnalyzerBenchmarks.md -------------------------------------------------------------------------------- /PropertyChangedAnalyzers.Benchmarks/Benchmarks/SetAccessorAnalyzerBenchmarks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers.Benchmarks/Benchmarks/SetAccessorAnalyzerBenchmarks.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers.Benchmarks/Benchmarks/SetAccessorAnalyzerBenchmarks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers.Benchmarks/Benchmarks/SetAccessorAnalyzerBenchmarks.md -------------------------------------------------------------------------------- /PropertyChangedAnalyzers.Benchmarks/Benchmarks/StructAnalyzerBenchmarks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers.Benchmarks/Benchmarks/StructAnalyzerBenchmarks.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers.Benchmarks/Benchmarks/StructAnalyzerBenchmarks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers.Benchmarks/Benchmarks/StructAnalyzerBenchmarks.md -------------------------------------------------------------------------------- /PropertyChangedAnalyzers.Benchmarks/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers.Benchmarks/Program.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers.Benchmarks/PropertyChangedAnalyzers.Benchmarks.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers.Benchmarks/PropertyChangedAnalyzers.Benchmarks.csproj -------------------------------------------------------------------------------- /PropertyChangedAnalyzers.Benchmarks/PropertyChangedAnalyzers.Benchmarks.csproj.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers.Benchmarks/PropertyChangedAnalyzers.Benchmarks.csproj.DotSettings -------------------------------------------------------------------------------- /PropertyChangedAnalyzers.Test/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers.Test/.editorconfig -------------------------------------------------------------------------------- /PropertyChangedAnalyzers.Test/AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | [assembly: CLSCompliant(false)] 4 | -------------------------------------------------------------------------------- /PropertyChangedAnalyzers.Test/DocumentationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers.Test/DocumentationTests.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers.Test/HandlesRecursion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers.Test/HandlesRecursion.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers.Test/Helpers/GetterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers.Test/Helpers/GetterTests.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers.Test/Helpers/LibrarySettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers.Test/Helpers/LibrarySettings.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers.Test/Helpers/MutableAutoPropertyTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers.Test/Helpers/MutableAutoPropertyTests.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers.Test/Helpers/OnPropertyChangedTests.Find.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers.Test/Helpers/OnPropertyChangedTests.Find.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers.Test/Helpers/OnPropertyChangedTests.MatchMethodSymbol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers.Test/Helpers/OnPropertyChangedTests.MatchMethodSymbol.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers.Test/Helpers/PropertyChangedEventArgsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers.Test/Helpers/PropertyChangedEventArgsTests.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers.Test/Helpers/PropertyChangedTest.FindPropertyName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers.Test/Helpers/PropertyChangedTest.FindPropertyName.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers.Test/Helpers/PropertyChangedTest.InvokesPropertyChangedFor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers.Test/Helpers/PropertyChangedTest.InvokesPropertyChangedFor.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers.Test/Helpers/PropertyTests.ShouldNotify.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers.Test/Helpers/PropertyTests.ShouldNotify.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers.Test/Helpers/PropertyTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers.Test/Helpers/PropertyTests.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers.Test/Helpers/SetterTests.FindBackingField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers.Test/Helpers/SetterTests.FindBackingField.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers.Test/Helpers/SyntaxTreeHelpers/PropertyDeclarationSyntaxExtTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers.Test/Helpers/SyntaxTreeHelpers/PropertyDeclarationSyntaxExtTests.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers.Test/Helpers/TrySetTests.Find.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers.Test/Helpers/TrySetTests.Find.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers.Test/Helpers/TrySetTests.IsMatchMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers.Test/Helpers/TrySetTests.IsMatchMethod.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers.Test/INPC001ImplementINotifyPropertyChanged/CodeFix.CS0246.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers.Test/INPC001ImplementINotifyPropertyChanged/CodeFix.CS0246.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers.Test/INPC001ImplementINotifyPropertyChanged/CodeFix.CS0535.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers.Test/INPC001ImplementINotifyPropertyChanged/CodeFix.CS0535.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers.Test/INPC001ImplementINotifyPropertyChanged/CodeFix.CaliburnMicro.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers.Test/INPC001ImplementINotifyPropertyChanged/CodeFix.CaliburnMicro.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers.Test/INPC001ImplementINotifyPropertyChanged/CodeFix.MvvmCrossCore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers.Test/INPC001ImplementINotifyPropertyChanged/CodeFix.MvvmCrossCore.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers.Test/INPC001ImplementINotifyPropertyChanged/CodeFix.MvvmLight.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers.Test/INPC001ImplementINotifyPropertyChanged/CodeFix.MvvmLight.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers.Test/INPC001ImplementINotifyPropertyChanged/CodeFix.PrismBindableBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers.Test/INPC001ImplementINotifyPropertyChanged/CodeFix.PrismBindableBase.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers.Test/INPC001ImplementINotifyPropertyChanged/CodeFix.StyletMvvm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers.Test/INPC001ImplementINotifyPropertyChanged/CodeFix.StyletMvvm.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers.Test/INPC001ImplementINotifyPropertyChanged/CodeFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers.Test/INPC001ImplementINotifyPropertyChanged/CodeFix.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers.Test/INPC001ImplementINotifyPropertyChanged/NoFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers.Test/INPC001ImplementINotifyPropertyChanged/NoFix.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers.Test/INPC001ImplementINotifyPropertyChanged/Valid.Ignores.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers.Test/INPC001ImplementINotifyPropertyChanged/Valid.Ignores.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers.Test/INPC001ImplementINotifyPropertyChanged/Valid.ThirdParty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers.Test/INPC001ImplementINotifyPropertyChanged/Valid.ThirdParty.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers.Test/INPC001ImplementINotifyPropertyChanged/Valid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers.Test/INPC001ImplementINotifyPropertyChanged/Valid.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers.Test/INPC002MutablePublicPropertyShouldNotify/CodeFix.AutoProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers.Test/INPC002MutablePublicPropertyShouldNotify/CodeFix.AutoProperty.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers.Test/INPC002MutablePublicPropertyShouldNotify/CodeFix.CaliburnMicro.PropertyChangedBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers.Test/INPC002MutablePublicPropertyShouldNotify/CodeFix.CaliburnMicro.PropertyChangedBase.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers.Test/INPC002MutablePublicPropertyShouldNotify/CodeFix.CaliburnMicro.Screen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers.Test/INPC002MutablePublicPropertyShouldNotify/CodeFix.CaliburnMicro.Screen.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers.Test/INPC002MutablePublicPropertyShouldNotify/CodeFix.Equality.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers.Test/INPC002MutablePublicPropertyShouldNotify/CodeFix.Equality.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers.Test/INPC002MutablePublicPropertyShouldNotify/CodeFix.MvvmCrossCore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers.Test/INPC002MutablePublicPropertyShouldNotify/CodeFix.MvvmCrossCore.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers.Test/INPC002MutablePublicPropertyShouldNotify/CodeFix.MvvmLight.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers.Test/INPC002MutablePublicPropertyShouldNotify/CodeFix.MvvmLight.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers.Test/INPC002MutablePublicPropertyShouldNotify/CodeFix.PrismBindableBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers.Test/INPC002MutablePublicPropertyShouldNotify/CodeFix.PrismBindableBase.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers.Test/INPC002MutablePublicPropertyShouldNotify/CodeFix.Repros.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers.Test/INPC002MutablePublicPropertyShouldNotify/CodeFix.Repros.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers.Test/INPC002MutablePublicPropertyShouldNotify/CodeFix.Style.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers.Test/INPC002MutablePublicPropertyShouldNotify/CodeFix.Style.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers.Test/INPC002MutablePublicPropertyShouldNotify/CodeFix.StyletMvvm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers.Test/INPC002MutablePublicPropertyShouldNotify/CodeFix.StyletMvvm.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers.Test/INPC002MutablePublicPropertyShouldNotify/CodeFix.UnknownBinary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers.Test/INPC002MutablePublicPropertyShouldNotify/CodeFix.UnknownBinary.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers.Test/INPC002MutablePublicPropertyShouldNotify/CodeFix.ViewModelBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers.Test/INPC002MutablePublicPropertyShouldNotify/CodeFix.ViewModelBase.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers.Test/INPC002MutablePublicPropertyShouldNotify/CodeFix.ViewModelBaseSubclassingPropertyChangedBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers.Test/INPC002MutablePublicPropertyShouldNotify/CodeFix.ViewModelBaseSubclassingPropertyChangedBase.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers.Test/INPC002MutablePublicPropertyShouldNotify/CodeFix.WithBackingFieldNotify.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers.Test/INPC002MutablePublicPropertyShouldNotify/CodeFix.WithBackingFieldNotify.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers.Test/INPC002MutablePublicPropertyShouldNotify/CodeFix.WithBackingFieldNotifyWhenValueChanges.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers.Test/INPC002MutablePublicPropertyShouldNotify/CodeFix.WithBackingFieldNotifyWhenValueChanges.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers.Test/INPC002MutablePublicPropertyShouldNotify/CodeFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers.Test/INPC002MutablePublicPropertyShouldNotify/CodeFix.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers.Test/INPC002MutablePublicPropertyShouldNotify/FixAll.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers.Test/INPC002MutablePublicPropertyShouldNotify/FixAll.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers.Test/INPC002MutablePublicPropertyShouldNotify/NoFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers.Test/INPC002MutablePublicPropertyShouldNotify/NoFix.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers.Test/INPC002MutablePublicPropertyShouldNotify/Valid.CaliburnMicro.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers.Test/INPC002MutablePublicPropertyShouldNotify/Valid.CaliburnMicro.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers.Test/INPC002MutablePublicPropertyShouldNotify/Valid.Ignores.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers.Test/INPC002MutablePublicPropertyShouldNotify/Valid.Ignores.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers.Test/INPC002MutablePublicPropertyShouldNotify/Valid.MvvmCrossCore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers.Test/INPC002MutablePublicPropertyShouldNotify/Valid.MvvmCrossCore.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers.Test/INPC002MutablePublicPropertyShouldNotify/Valid.MvvmLight.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers.Test/INPC002MutablePublicPropertyShouldNotify/Valid.MvvmLight.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers.Test/INPC002MutablePublicPropertyShouldNotify/Valid.PrismBindableBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers.Test/INPC002MutablePublicPropertyShouldNotify/Valid.PrismBindableBase.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers.Test/INPC002MutablePublicPropertyShouldNotify/Valid.StyletMvvm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers.Test/INPC002MutablePublicPropertyShouldNotify/Valid.StyletMvvm.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers.Test/INPC002MutablePublicPropertyShouldNotify/Valid.ViewModelBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers.Test/INPC002MutablePublicPropertyShouldNotify/Valid.ViewModelBase.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers.Test/INPC002MutablePublicPropertyShouldNotify/Valid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers.Test/INPC002MutablePublicPropertyShouldNotify/Valid.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers.Test/INPC003NotifyForDependentProperty/CodeFix.CaliburnMicro.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers.Test/INPC003NotifyForDependentProperty/CodeFix.CaliburnMicro.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers.Test/INPC003NotifyForDependentProperty/CodeFix.GenericViewModelBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers.Test/INPC003NotifyForDependentProperty/CodeFix.GenericViewModelBase.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers.Test/INPC003NotifyForDependentProperty/CodeFix.MvvmCrossCore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers.Test/INPC003NotifyForDependentProperty/CodeFix.MvvmCrossCore.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers.Test/INPC003NotifyForDependentProperty/CodeFix.MvvmLight.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers.Test/INPC003NotifyForDependentProperty/CodeFix.MvvmLight.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers.Test/INPC003NotifyForDependentProperty/CodeFix.Order.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers.Test/INPC003NotifyForDependentProperty/CodeFix.Order.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers.Test/INPC003NotifyForDependentProperty/CodeFix.PrismBindableBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers.Test/INPC003NotifyForDependentProperty/CodeFix.PrismBindableBase.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers.Test/INPC003NotifyForDependentProperty/CodeFix.Repros.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers.Test/INPC003NotifyForDependentProperty/CodeFix.Repros.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers.Test/INPC003NotifyForDependentProperty/CodeFix.StyletMvvm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers.Test/INPC003NotifyForDependentProperty/CodeFix.StyletMvvm.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers.Test/INPC003NotifyForDependentProperty/CodeFix.ViewModelBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers.Test/INPC003NotifyForDependentProperty/CodeFix.ViewModelBase.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers.Test/INPC003NotifyForDependentProperty/CodeFix.ViewModelBaseNotInSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers.Test/INPC003NotifyForDependentProperty/CodeFix.ViewModelBaseNotInSource.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers.Test/INPC003NotifyForDependentProperty/CodeFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers.Test/INPC003NotifyForDependentProperty/CodeFix.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers.Test/INPC003NotifyForDependentProperty/FixAll.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers.Test/INPC003NotifyForDependentProperty/FixAll.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers.Test/INPC003NotifyForDependentProperty/Valid.CaliburnMicro.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers.Test/INPC003NotifyForDependentProperty/Valid.CaliburnMicro.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers.Test/INPC003NotifyForDependentProperty/Valid.GenericViewModelBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers.Test/INPC003NotifyForDependentProperty/Valid.GenericViewModelBase.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers.Test/INPC003NotifyForDependentProperty/Valid.Ignore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers.Test/INPC003NotifyForDependentProperty/Valid.Ignore.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers.Test/INPC003NotifyForDependentProperty/Valid.MvvmCrossCore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers.Test/INPC003NotifyForDependentProperty/Valid.MvvmCrossCore.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers.Test/INPC003NotifyForDependentProperty/Valid.MvvmLight.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers.Test/INPC003NotifyForDependentProperty/Valid.MvvmLight.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers.Test/INPC003NotifyForDependentProperty/Valid.PrismBindableBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers.Test/INPC003NotifyForDependentProperty/Valid.PrismBindableBase.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers.Test/INPC003NotifyForDependentProperty/Valid.StyletMvvm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers.Test/INPC003NotifyForDependentProperty/Valid.StyletMvvm.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers.Test/INPC003NotifyForDependentProperty/Valid.ViewModelBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers.Test/INPC003NotifyForDependentProperty/Valid.ViewModelBase.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers.Test/INPC003NotifyForDependentProperty/Valid.ViewModelBaseNotInSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers.Test/INPC003NotifyForDependentProperty/Valid.ViewModelBaseNotInSource.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers.Test/INPC003NotifyForDependentProperty/Valid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers.Test/INPC003NotifyForDependentProperty/Valid.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers.Test/INPC004UseCallerMemberName/CodeFix.Argument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers.Test/INPC004UseCallerMemberName/CodeFix.Argument.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers.Test/INPC004UseCallerMemberName/CodeFix.Method.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers.Test/INPC004UseCallerMemberName/CodeFix.Method.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers.Test/INPC004UseCallerMemberName/FixAll.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers.Test/INPC004UseCallerMemberName/FixAll.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers.Test/INPC004UseCallerMemberName/Valid{T}.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers.Test/INPC004UseCallerMemberName/Valid{T}.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers.Test/INPC005CheckIfDifferentBeforeNotifying/CodeFix.CaliburnMicro.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers.Test/INPC005CheckIfDifferentBeforeNotifying/CodeFix.CaliburnMicro.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers.Test/INPC005CheckIfDifferentBeforeNotifying/CodeFix.MvvmCrossCore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers.Test/INPC005CheckIfDifferentBeforeNotifying/CodeFix.MvvmCrossCore.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers.Test/INPC005CheckIfDifferentBeforeNotifying/CodeFix.MvvmLight.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers.Test/INPC005CheckIfDifferentBeforeNotifying/CodeFix.MvvmLight.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers.Test/INPC005CheckIfDifferentBeforeNotifying/CodeFix.PrismBindableBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers.Test/INPC005CheckIfDifferentBeforeNotifying/CodeFix.PrismBindableBase.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers.Test/INPC005CheckIfDifferentBeforeNotifying/CodeFix.StyletMvvm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers.Test/INPC005CheckIfDifferentBeforeNotifying/CodeFix.StyletMvvm.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers.Test/INPC005CheckIfDifferentBeforeNotifying/CodeFix.ViewModelBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers.Test/INPC005CheckIfDifferentBeforeNotifying/CodeFix.ViewModelBase.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers.Test/INPC005CheckIfDifferentBeforeNotifying/CodeFix.WhenCheck.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers.Test/INPC005CheckIfDifferentBeforeNotifying/CodeFix.WhenCheck.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers.Test/INPC005CheckIfDifferentBeforeNotifying/CodeFix.WhenNoCheck.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers.Test/INPC005CheckIfDifferentBeforeNotifying/CodeFix.WhenNoCheck.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers.Test/INPC005CheckIfDifferentBeforeNotifying/CodeFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers.Test/INPC005CheckIfDifferentBeforeNotifying/CodeFix.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers.Test/INPC005CheckIfDifferentBeforeNotifying/NoFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers.Test/INPC005CheckIfDifferentBeforeNotifying/NoFix.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers.Test/INPC005CheckIfDifferentBeforeNotifying/Valid.CaliburnMicro.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers.Test/INPC005CheckIfDifferentBeforeNotifying/Valid.CaliburnMicro.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers.Test/INPC005CheckIfDifferentBeforeNotifying/Valid.MvvmCrossCore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers.Test/INPC005CheckIfDifferentBeforeNotifying/Valid.MvvmCrossCore.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers.Test/INPC005CheckIfDifferentBeforeNotifying/Valid.MvvmLight.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers.Test/INPC005CheckIfDifferentBeforeNotifying/Valid.MvvmLight.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers.Test/INPC005CheckIfDifferentBeforeNotifying/Valid.PrismBindableBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers.Test/INPC005CheckIfDifferentBeforeNotifying/Valid.PrismBindableBase.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers.Test/INPC005CheckIfDifferentBeforeNotifying/Valid.StyletMvvm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers.Test/INPC005CheckIfDifferentBeforeNotifying/Valid.StyletMvvm.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers.Test/INPC005CheckIfDifferentBeforeNotifying/Valid.ViewModelBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers.Test/INPC005CheckIfDifferentBeforeNotifying/Valid.ViewModelBase.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers.Test/INPC005CheckIfDifferentBeforeNotifying/Valid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers.Test/INPC005CheckIfDifferentBeforeNotifying/Valid.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers.Test/INPC006UseObjectEqualsForReferenceTypes/CodeFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers.Test/INPC006UseObjectEqualsForReferenceTypes/CodeFix.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers.Test/INPC006UseObjectEqualsForReferenceTypes/Valid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers.Test/INPC006UseObjectEqualsForReferenceTypes/Valid.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers.Test/INPC006UseReferenceEquals/CodeFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers.Test/INPC006UseReferenceEquals/CodeFix.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers.Test/INPC006UseReferenceEquals/Valid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers.Test/INPC006UseReferenceEquals/Valid.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers.Test/INPC007MissingInvoker/CodeFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers.Test/INPC007MissingInvoker/CodeFix.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers.Test/INPC007MissingInvoker/Valid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers.Test/INPC007MissingInvoker/Valid.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers.Test/INPC008StructMustNotNotify/Diagnostics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers.Test/INPC008StructMustNotNotify/Diagnostics.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers.Test/INPC008StructMustNotNotify/Valid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers.Test/INPC008StructMustNotNotify/Valid.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers.Test/INPC009NotifiesForMissingProperty/Diagnostics.Argument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers.Test/INPC009NotifiesForMissingProperty/Diagnostics.Argument.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers.Test/INPC009NotifiesForMissingProperty/Diagnostics.Invocation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers.Test/INPC009NotifiesForMissingProperty/Diagnostics.Invocation.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers.Test/INPC009NotifiesForMissingProperty/Valid{T}.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers.Test/INPC009NotifiesForMissingProperty/Valid{T}.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers.Test/INPC010GetAndSetSame/Diagnostics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers.Test/INPC010GetAndSetSame/Diagnostics.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers.Test/INPC010GetAndSetSame/Valid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers.Test/INPC010GetAndSetSame/Valid.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers.Test/INPC011DoNotShadow/Codefix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers.Test/INPC011DoNotShadow/Codefix.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers.Test/INPC011DoNotShadow/Valid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers.Test/INPC011DoNotShadow/Valid.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers.Test/INPC012DoNotUseExpression/Codefix.CaliburnMicro.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers.Test/INPC012DoNotUseExpression/Codefix.CaliburnMicro.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers.Test/INPC012DoNotUseExpression/Codefix.MvvmCrossCore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers.Test/INPC012DoNotUseExpression/Codefix.MvvmCrossCore.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers.Test/INPC012DoNotUseExpression/Codefix.MvvmLight.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers.Test/INPC012DoNotUseExpression/Codefix.MvvmLight.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers.Test/INPC012DoNotUseExpression/Codefix.StyletMvvm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers.Test/INPC012DoNotUseExpression/Codefix.StyletMvvm.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers.Test/INPC012DoNotUseExpression/Codefix.ViewModelBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers.Test/INPC012DoNotUseExpression/Codefix.ViewModelBase.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers.Test/INPC012DoNotUseExpression/Codefix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers.Test/INPC012DoNotUseExpression/Codefix.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers.Test/INPC012DoNotUseExpression/Valid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers.Test/INPC012DoNotUseExpression/Valid.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers.Test/INPC013UseNameof/CodeFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers.Test/INPC013UseNameof/CodeFix.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers.Test/INPC013UseNameof/Valid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers.Test/INPC013UseNameof/Valid.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers.Test/INPC014PreferSettingBackingFieldInCtor/CodeFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers.Test/INPC014PreferSettingBackingFieldInCtor/CodeFix.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers.Test/INPC014PreferSettingBackingFieldInCtor/Valid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers.Test/INPC014PreferSettingBackingFieldInCtor/Valid.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers.Test/INPC015PropertyIsRecursive/Diagnostics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers.Test/INPC015PropertyIsRecursive/Diagnostics.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers.Test/INPC015PropertyIsRecursive/Valid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers.Test/INPC015PropertyIsRecursive/Valid.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers.Test/INPC016NotifyAfterUpdate/Diagnostics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers.Test/INPC016NotifyAfterUpdate/Diagnostics.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers.Test/INPC016NotifyAfterUpdate/Valid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers.Test/INPC016NotifyAfterUpdate/Valid.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers.Test/INPC017BackingFieldNameMustMatch/CodeFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers.Test/INPC017BackingFieldNameMustMatch/CodeFix.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers.Test/INPC017BackingFieldNameMustMatch/Valid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers.Test/INPC017BackingFieldNameMustMatch/Valid.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers.Test/INPC018InvokerShouldBeProtected/CodeFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers.Test/INPC018InvokerShouldBeProtected/CodeFix.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers.Test/INPC018InvokerShouldBeProtected/Valid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers.Test/INPC018InvokerShouldBeProtected/Valid.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers.Test/INPC019GetBackingField/CodeFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers.Test/INPC019GetBackingField/CodeFix.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers.Test/INPC019GetBackingField/Valid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers.Test/INPC019GetBackingField/Valid.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers.Test/INPC020PreferExpressionBodyAccessor/CodeFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers.Test/INPC020PreferExpressionBodyAccessor/CodeFix.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers.Test/INPC020PreferExpressionBodyAccessor/FixAll.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers.Test/INPC020PreferExpressionBodyAccessor/FixAll.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers.Test/INPC021SetBackingField/Diagnostics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers.Test/INPC021SetBackingField/Diagnostics.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers.Test/INPC022EqualToBackingField/CodeFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers.Test/INPC022EqualToBackingField/CodeFix.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers.Test/INPC022EqualToBackingField/Valid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers.Test/INPC022EqualToBackingField/Valid.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers.Test/INPC023InstanceEquals/CodeFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers.Test/INPC023InstanceEquals/CodeFix.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers.Test/INPC023InstanceEquals/Valid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers.Test/INPC023InstanceEquals/Valid.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers.Test/INPC024ReferenceEqualsValueType/CodeFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers.Test/INPC024ReferenceEqualsValueType/CodeFix.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers.Test/ModuleInitializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers.Test/ModuleInitializer.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers.Test/NullableFixTests/NullableFixTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers.Test/NullableFixTests/NullableFixTests.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers.Test/PropertyChangedAnalyzers.Test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers.Test/PropertyChangedAnalyzers.Test.csproj -------------------------------------------------------------------------------- /PropertyChangedAnalyzers.Test/PropertyChangedAnalyzers.Test.csproj.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers.Test/PropertyChangedAnalyzers.Test.csproj.DotSettings -------------------------------------------------------------------------------- /PropertyChangedAnalyzers.Test/ReproBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers.Test/ReproBox.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers.Test/TestHelpers/Code.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers.Test/TestHelpers/Code.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers.Test/ValidWithAllAnalyzers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers.Test/ValidWithAllAnalyzers.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers.Vsix/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers.Vsix/Properties/launchSettings.json -------------------------------------------------------------------------------- /PropertyChangedAnalyzers.Vsix/PropertyChangedAnalyzers.Vsix.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers.Vsix/PropertyChangedAnalyzers.Vsix.csproj -------------------------------------------------------------------------------- /PropertyChangedAnalyzers.Vsix/source.extension.vsixmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers.Vsix/source.extension.vsixmanifest -------------------------------------------------------------------------------- /PropertyChangedAnalyzers.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers.sln -------------------------------------------------------------------------------- /PropertyChangedAnalyzers.sln.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers.sln.DotSettings -------------------------------------------------------------------------------- /PropertyChangedAnalyzers.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers.snk -------------------------------------------------------------------------------- /PropertyChangedAnalyzers/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers/.editorconfig -------------------------------------------------------------------------------- /PropertyChangedAnalyzers/AnalyzerCategory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers/AnalyzerCategory.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers/Analyzers/ArgumentAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers/Analyzers/ArgumentAnalyzer.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers/Analyzers/AssignmentAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers/Analyzers/AssignmentAnalyzer.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers/Analyzers/ClassDeclarationAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers/Analyzers/ClassDeclarationAnalyzer.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers/Analyzers/EventAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers/Analyzers/EventAnalyzer.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers/Analyzers/InvocationAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers/Analyzers/InvocationAnalyzer.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers/Analyzers/MethodDeclarationAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers/Analyzers/MethodDeclarationAnalyzer.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers/Analyzers/MutationAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers/Analyzers/MutationAnalyzer.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers/Analyzers/PropertyDeclarationAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers/Analyzers/PropertyDeclarationAnalyzer.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers/Analyzers/SetAccessorAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers/Analyzers/SetAccessorAnalyzer.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers/Analyzers/StructAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers/Analyzers/StructAnalyzer.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers/AssemblyAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers/AssemblyAttributes.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers/CodeFixes/AddOnPropertyChangedFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers/CodeFixes/AddOnPropertyChangedFix.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers/CodeFixes/CheckIfDifferentBeforeNotifyFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers/CodeFixes/CheckIfDifferentBeforeNotifyFix.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers/CodeFixes/EqualityFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers/CodeFixes/EqualityFix.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers/CodeFixes/ExpressionBodyFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers/CodeFixes/ExpressionBodyFix.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers/CodeFixes/Helpers/DocumentEditorInpcExt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers/CodeFixes/Helpers/DocumentEditorInpcExt.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers/CodeFixes/Helpers/InpcFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers/CodeFixes/Helpers/InpcFactory.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers/CodeFixes/Helpers/MakePropertyNotifyHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers/CodeFixes/Helpers/MakePropertyNotifyHelper.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers/CodeFixes/Helpers/Messages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers/CodeFixes/Helpers/Messages.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers/CodeFixes/ImplementINotifyPropertyChangedFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers/CodeFixes/ImplementINotifyPropertyChangedFix.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers/CodeFixes/MakePropertyNotifyFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers/CodeFixes/MakePropertyNotifyFix.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers/CodeFixes/MakeProtectedFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers/CodeFixes/MakeProtectedFix.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers/CodeFixes/NotifyForDependentPropertyFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers/CodeFixes/NotifyForDependentPropertyFix.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers/CodeFixes/NullableFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers/CodeFixes/NullableFix.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers/CodeFixes/RemoveExpressionFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers/CodeFixes/RemoveExpressionFix.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers/CodeFixes/RemoveShadowingFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers/CodeFixes/RemoveShadowingFix.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers/CodeFixes/RenameFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers/CodeFixes/RenameFix.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers/CodeFixes/ReplaceExpressionFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers/CodeFixes/ReplaceExpressionFix.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers/CodeFixes/SetBackingFieldFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers/CodeFixes/SetBackingFieldFix.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers/CodeFixes/UseCallerMemberNameFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers/CodeFixes/UseCallerMemberNameFix.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers/CodeFixes/UseNameofFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers/CodeFixes/UseNameofFix.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers/Descriptors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers/Descriptors.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers/Helpers/AnalysisResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers/Helpers/AnalysisResult.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers/Helpers/AnalysisResult{T}.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers/Helpers/AnalysisResult{T}.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers/Helpers/BackingMemberAndValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers/Helpers/BackingMemberAndValue.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers/Helpers/CallerMemberNameAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers/Helpers/CallerMemberNameAttribute.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers/Helpers/Comparers/SyntaxTokenComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers/Helpers/Comparers/SyntaxTokenComparer.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers/Helpers/Getter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers/Helpers/Getter.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers/Helpers/KnownSymbols/CaliburnMicroPropertyChangedBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers/Helpers/KnownSymbols/CaliburnMicroPropertyChangedBase.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers/Helpers/KnownSymbols/DependencyObjectType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers/Helpers/KnownSymbols/DependencyObjectType.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers/Helpers/KnownSymbols/EqualityComparerOfTType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers/Helpers/KnownSymbols/EqualityComparerOfTType.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers/Helpers/KnownSymbols/INotifyPropertyChangedType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers/Helpers/KnownSymbols/INotifyPropertyChangedType.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers/Helpers/KnownSymbols/KnownSymbol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers/Helpers/KnownSymbols/KnownSymbol.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers/Helpers/KnownSymbols/MicrosoftPracticesPrismMvvmBindableBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers/Helpers/KnownSymbols/MicrosoftPracticesPrismMvvmBindableBase.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers/Helpers/KnownSymbols/MvvmCrossCoreMvxNotifyPropertyChanged.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers/Helpers/KnownSymbols/MvvmCrossCoreMvxNotifyPropertyChanged.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers/Helpers/KnownSymbols/MvvmCrossMvxNotifyPropertyChanged.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers/Helpers/KnownSymbols/MvvmCrossMvxNotifyPropertyChanged.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers/Helpers/KnownSymbols/MvvmLightObservableObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers/Helpers/KnownSymbols/MvvmLightObservableObject.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers/Helpers/KnownSymbols/MvvmLightViewModelBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers/Helpers/KnownSymbols/MvvmLightViewModelBase.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers/Helpers/KnownSymbols/NullableOfTType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers/Helpers/KnownSymbols/NullableOfTType.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers/Helpers/KnownSymbols/NullableType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers/Helpers/KnownSymbols/NullableType.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers/Helpers/KnownSymbols/ObjectType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers/Helpers/KnownSymbols/ObjectType.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers/Helpers/KnownSymbols/PropertyChangedEventHandlerType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers/Helpers/KnownSymbols/PropertyChangedEventHandlerType.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers/Helpers/KnownSymbols/StringType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers/Helpers/KnownSymbols/StringType.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers/Helpers/KnownSymbols/StyletPropertyChangedBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers/Helpers/KnownSymbols/StyletPropertyChangedBase.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers/Helpers/MutableAutoProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers/Helpers/MutableAutoProperty.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers/Helpers/MutableProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers/Helpers/MutableProperty.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers/Helpers/OnPropertyChanged.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers/Helpers/OnPropertyChanged.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers/Helpers/Property.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers/Helpers/Property.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers/Helpers/PropertyChanged.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers/Helpers/PropertyChanged.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers/Helpers/PropertyChangedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers/Helpers/PropertyChangedEventArgs.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers/Helpers/PropertyNameArgument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers/Helpers/PropertyNameArgument.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers/Helpers/PropertyPath.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers/Helpers/PropertyPath.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers/Helpers/Setter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers/Helpers/Setter.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers/Helpers/SyntaxtTreeHelpers/FieldDeclarationSyntaxExt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers/Helpers/SyntaxtTreeHelpers/FieldDeclarationSyntaxExt.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers/Helpers/SyntaxtTreeHelpers/IfStatementSyntaxExt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers/Helpers/SyntaxtTreeHelpers/IfStatementSyntaxExt.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers/Helpers/TrySet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers/Helpers/TrySet.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers/Helpers/TrySetMatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers/Helpers/TrySetMatch.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers/Helpers/Walkers/AssignmentWalker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers/Helpers/Walkers/AssignmentWalker.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers/Helpers/Walkers/IdentifierNameWalker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers/Helpers/Walkers/IdentifierNameWalker.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers/Helpers/Walkers/IdentifierTypeWalker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers/Helpers/Walkers/IdentifierTypeWalker.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers/Helpers/Walkers/InvocationWalker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers/Helpers/Walkers/InvocationWalker.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers/Helpers/Walkers/ReturnExpressionsWalker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers/Helpers/Walkers/ReturnExpressionsWalker.cs -------------------------------------------------------------------------------- /PropertyChangedAnalyzers/PropertyChangedAnalyzers.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers/PropertyChangedAnalyzers.csproj -------------------------------------------------------------------------------- /PropertyChangedAnalyzers/PropertyChangedAnalyzers.csproj.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers/PropertyChangedAnalyzers.csproj.DotSettings -------------------------------------------------------------------------------- /PropertyChangedAnalyzers/tools/install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers/tools/install.ps1 -------------------------------------------------------------------------------- /PropertyChangedAnalyzers/tools/uninstall.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/PropertyChangedAnalyzers/tools/uninstall.ps1 -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE_NOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/RELEASE_NOTES.md -------------------------------------------------------------------------------- /ValidCode/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/ValidCode/.editorconfig -------------------------------------------------------------------------------- /ValidCode/CachingInConcurrentDictionary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/ValidCode/CachingInConcurrentDictionary.cs -------------------------------------------------------------------------------- /ValidCode/CustomControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/ValidCode/CustomControl.cs -------------------------------------------------------------------------------- /ValidCode/DisposableFoo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/ValidCode/DisposableFoo.cs -------------------------------------------------------------------------------- /ValidCode/DontRequireNotificationFor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/ValidCode/DontRequireNotificationFor.cs -------------------------------------------------------------------------------- /ValidCode/EmptyTrySet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/ValidCode/EmptyTrySet.cs -------------------------------------------------------------------------------- /ValidCode/Ignores/Abstract.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/ValidCode/Ignores/Abstract.cs -------------------------------------------------------------------------------- /ValidCode/Ignores/Enumerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/ValidCode/Ignores/Enumerator.cs -------------------------------------------------------------------------------- /ValidCode/Ignores/FooControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/ValidCode/Ignores/FooControl.cs -------------------------------------------------------------------------------- /ValidCode/Ignores/IgnoredProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/ValidCode/Ignores/IgnoredProperties.cs -------------------------------------------------------------------------------- /ValidCode/Ignores/IntEnumerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/ValidCode/Ignores/IntEnumerator.cs -------------------------------------------------------------------------------- /ValidCode/Ignores/SomeStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/ValidCode/Ignores/SomeStream.cs -------------------------------------------------------------------------------- /ValidCode/Ignores/Struct.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/ValidCode/Ignores/Struct.cs -------------------------------------------------------------------------------- /ValidCode/Inheritance/ExpressionBodies.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/ValidCode/Inheritance/ExpressionBodies.cs -------------------------------------------------------------------------------- /ValidCode/Inheritance/ExpressionBodiesViewModelBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/ValidCode/Inheritance/ExpressionBodiesViewModelBase.cs -------------------------------------------------------------------------------- /ValidCode/Inheritance/StatementBodies.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/ValidCode/Inheritance/StatementBodies.cs -------------------------------------------------------------------------------- /ValidCode/Inheritance/StatementBodiesViewModelBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/ValidCode/Inheritance/StatementBodiesViewModelBase.cs -------------------------------------------------------------------------------- /ValidCode/Inheritance/UnderscoreNames.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/ValidCode/Inheritance/UnderscoreNames.cs -------------------------------------------------------------------------------- /ValidCode/Inheritance/UnderscoreNamesViewModelBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/ValidCode/Inheritance/UnderscoreNamesViewModelBase.cs -------------------------------------------------------------------------------- /ValidCode/InheritanceTrySet/ExpressionBodies.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/ValidCode/InheritanceTrySet/ExpressionBodies.cs -------------------------------------------------------------------------------- /ValidCode/InheritanceTrySet/ExpressionBodiesViewModelBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/ValidCode/InheritanceTrySet/ExpressionBodiesViewModelBase.cs -------------------------------------------------------------------------------- /ValidCode/InheritanceTrySet/StatementBodies.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/ValidCode/InheritanceTrySet/StatementBodies.cs -------------------------------------------------------------------------------- /ValidCode/InheritanceTrySet/StatementBodiesViewModelBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/ValidCode/InheritanceTrySet/StatementBodiesViewModelBase.cs -------------------------------------------------------------------------------- /ValidCode/InheritanceTrySet/UnderscoreNames.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/ValidCode/InheritanceTrySet/UnderscoreNames.cs -------------------------------------------------------------------------------- /ValidCode/InheritanceTrySet/UnderscoreNamesViewModelBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/ValidCode/InheritanceTrySet/UnderscoreNamesViewModelBase.cs -------------------------------------------------------------------------------- /ValidCode/IntAndStringProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/ValidCode/IntAndStringProperty.cs -------------------------------------------------------------------------------- /ValidCode/Interfaces/Generic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/ValidCode/Interfaces/Generic.cs -------------------------------------------------------------------------------- /ValidCode/Interfaces/GenericAutoProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/ValidCode/Interfaces/GenericAutoProperty.cs -------------------------------------------------------------------------------- /ValidCode/Interfaces/GenericClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/ValidCode/Interfaces/GenericClass.cs -------------------------------------------------------------------------------- /ValidCode/Interfaces/IValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/ValidCode/Interfaces/IValue.cs -------------------------------------------------------------------------------- /ValidCode/Interfaces/WithString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/ValidCode/Interfaces/WithString.cs -------------------------------------------------------------------------------- /ValidCode/Interfaces/WithStringAutoProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/ValidCode/Interfaces/WithStringAutoProperty.cs -------------------------------------------------------------------------------- /ValidCode/LockInSetter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/ValidCode/LockInSetter.cs -------------------------------------------------------------------------------- /ValidCode/Mouse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/ValidCode/Mouse.cs -------------------------------------------------------------------------------- /ValidCode/NotMutations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/ValidCode/NotMutations.cs -------------------------------------------------------------------------------- /ValidCode/Recursion/ExpressionBodies.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/ValidCode/Recursion/ExpressionBodies.cs -------------------------------------------------------------------------------- /ValidCode/Recursion/NotRecursion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/ValidCode/Recursion/NotRecursion.cs -------------------------------------------------------------------------------- /ValidCode/Recursion/StatementBodies.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/ValidCode/Recursion/StatementBodies.cs -------------------------------------------------------------------------------- /ValidCode/RelayProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/ValidCode/RelayProperty.cs -------------------------------------------------------------------------------- /ValidCode/Repros/Issue102.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/ValidCode/Repros/Issue102.cs -------------------------------------------------------------------------------- /ValidCode/StaticClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/ValidCode/StaticClass.cs -------------------------------------------------------------------------------- /ValidCode/TrySet/ExpressionBodies.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/ValidCode/TrySet/ExpressionBodies.cs -------------------------------------------------------------------------------- /ValidCode/TrySet/StatementBodies.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/ValidCode/TrySet/StatementBodies.cs -------------------------------------------------------------------------------- /ValidCode/TrySet/UnderscoreNames.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/ValidCode/TrySet/UnderscoreNames.cs -------------------------------------------------------------------------------- /ValidCode/ValidCode.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/ValidCode/ValidCode.csproj -------------------------------------------------------------------------------- /ValidCode/Vanilla/ExpressionBodies.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/ValidCode/Vanilla/ExpressionBodies.cs -------------------------------------------------------------------------------- /ValidCode/Vanilla/StatementBodies.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/ValidCode/Vanilla/StatementBodies.cs -------------------------------------------------------------------------------- /ValidCode/Vanilla/UnderscoreNames.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/ValidCode/Vanilla/UnderscoreNames.cs -------------------------------------------------------------------------------- /ValidCode/WithEventDeclaration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/ValidCode/WithEventDeclaration.cs -------------------------------------------------------------------------------- /ValidCode/WithEventDeclarationNullableDisabled.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/ValidCode/WithEventDeclarationNullableDisabled.cs -------------------------------------------------------------------------------- /ValidCode/WithMultidimensional.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/ValidCode/WithMultidimensional.cs -------------------------------------------------------------------------------- /ValidCode/WithSpeeds.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/ValidCode/WithSpeeds.cs -------------------------------------------------------------------------------- /ValidCode/WithValidation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/ValidCode/WithValidation.cs -------------------------------------------------------------------------------- /ValidCode/Wrapping/FrameworkTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/ValidCode/Wrapping/FrameworkTypes.cs -------------------------------------------------------------------------------- /ValidCode/Wrapping/WithFields.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/ValidCode/Wrapping/WithFields.cs -------------------------------------------------------------------------------- /ValidCode/Wrapping/WrappingFields.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/ValidCode/Wrapping/WrappingFields.cs -------------------------------------------------------------------------------- /ValidCode/Wrapping/WrappingProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/ValidCode/Wrapping/WrappingProperties.cs -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/appveyor.yml -------------------------------------------------------------------------------- /azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/azure-pipelines.yml -------------------------------------------------------------------------------- /documentation/INPC001.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/documentation/INPC001.md -------------------------------------------------------------------------------- /documentation/INPC002.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/documentation/INPC002.md -------------------------------------------------------------------------------- /documentation/INPC003.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/documentation/INPC003.md -------------------------------------------------------------------------------- /documentation/INPC004.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/documentation/INPC004.md -------------------------------------------------------------------------------- /documentation/INPC005.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/documentation/INPC005.md -------------------------------------------------------------------------------- /documentation/INPC006_a.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/documentation/INPC006_a.md -------------------------------------------------------------------------------- /documentation/INPC006_b.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/documentation/INPC006_b.md -------------------------------------------------------------------------------- /documentation/INPC007.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/documentation/INPC007.md -------------------------------------------------------------------------------- /documentation/INPC008.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/documentation/INPC008.md -------------------------------------------------------------------------------- /documentation/INPC009.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/documentation/INPC009.md -------------------------------------------------------------------------------- /documentation/INPC010.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/documentation/INPC010.md -------------------------------------------------------------------------------- /documentation/INPC011.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/documentation/INPC011.md -------------------------------------------------------------------------------- /documentation/INPC012.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/documentation/INPC012.md -------------------------------------------------------------------------------- /documentation/INPC013.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/documentation/INPC013.md -------------------------------------------------------------------------------- /documentation/INPC014.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/documentation/INPC014.md -------------------------------------------------------------------------------- /documentation/INPC015.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/documentation/INPC015.md -------------------------------------------------------------------------------- /documentation/INPC016.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/documentation/INPC016.md -------------------------------------------------------------------------------- /documentation/INPC017.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/documentation/INPC017.md -------------------------------------------------------------------------------- /documentation/INPC018.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/documentation/INPC018.md -------------------------------------------------------------------------------- /documentation/INPC019.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/documentation/INPC019.md -------------------------------------------------------------------------------- /documentation/INPC020.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/documentation/INPC020.md -------------------------------------------------------------------------------- /documentation/INPC021.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/documentation/INPC021.md -------------------------------------------------------------------------------- /documentation/INPC022.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/documentation/INPC022.md -------------------------------------------------------------------------------- /documentation/INPC023.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/documentation/INPC023.md -------------------------------------------------------------------------------- /documentation/INPC024.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/PropertyChangedAnalyzers/HEAD/documentation/INPC024.md --------------------------------------------------------------------------------