├── .editorconfig ├── .gitattributes ├── .github ├── FUNDING.yml ├── stale.yml └── workflows │ └── build.yml ├── .gitignore ├── AnalyzerDemo ├── AnalyzerDemo.csproj ├── ItemViewModel.cs ├── MainWindowViewModel.cs ├── Program.cs └── ViewModelBase.cs ├── LICENSE.TXT ├── MultiTargetingDemo ├── App.axaml ├── App.axaml.cs ├── MainWindow.axaml ├── MainWindow.axaml.cs ├── MultiTargetingDemo.csproj ├── Program.cs ├── ViewModels │ └── ViewModelBase.cs └── app.manifest ├── NuGet.Config ├── README.md ├── ReactiveGenerator.Integration.Tests ├── ObservableAsPropertyHelperIntegrationTests.cs ├── Properties │ └── AssemblyInfo.cs ├── ReactiveGenerator.Integration.Tests.csproj └── ReactiveGeneratorIntegrationTests.cs ├── ReactiveGenerator.Tests ├── AnalyzerTestHelper.cs ├── ModuleInitializer.cs ├── ObservableAsPropertyHelperGenerator │ └── ObservableAsPropertyHelperGeneratorTests.cs ├── Properties │ └── AssemblyInfo.cs ├── ReactiveGenerator.Tests.csproj ├── ReactiveGenerator │ ├── CrossAssemblyTests.cs │ ├── ReactiveGeneratorTests.cs │ └── UseBackingFieldsConfigurationTests.cs ├── ReactivePropertyAnalyzer │ └── ReactivePropertyAnalyzerTests.cs ├── Snapshots │ ├── CrossAssemblyTests.BaseHasNoAttributes_DerivedHasPropertyReactive.verified.txt │ ├── CrossAssemblyTests.BaseHasNoAttributes_DerivedHasReactive.verified.txt │ ├── CrossAssemblyTests.BaseHasPartialReactive_DerivedExtends.verified.txt │ ├── CrossAssemblyTests.BaseHasPropertyReactive_DerivedHasNoAttributes.verified.txt │ ├── CrossAssemblyTests.BaseHasReactive_DerivedHasIgnoreReactive.verified.txt │ ├── CrossAssemblyTests.BaseHasReactive_DerivedHasMixedPropertyAttributes.verified.txt │ ├── CrossAssemblyTests.BaseHasReactive_DerivedHasNoAttributes.verified.txt │ ├── CrossAssemblyTests.ExternalBaseDerivedFromReactiveObject_ThenNoDoubleINPCInDerived.verified.txt │ ├── CrossAssemblyTests.ExternalBaseHasIgnoreReactive_ThenDerivedIgnoresItToo.verified.txt │ ├── CrossAssemblyTests.ExternalBaseHasPropertyLevelReactive_ThenNoExtraINPCInDerived.verified.txt │ ├── CrossAssemblyTests.ExternalBaseHasReactiveClass_ThenNoDoubleINPCInDerived.verified.txt │ ├── CrossAssemblyTests.MultipleInheritanceLevels_MixedReactiveAttributes.verified.txt │ ├── ObservableAsPropertyHelperGeneratorTests.ComplexTypesTest.verified.txt │ ├── ObservableAsPropertyHelperGeneratorTests.DifferentAccessibilityLevelsTest.verified.txt │ ├── ObservableAsPropertyHelperGeneratorTests.GenericClassWithObservableAsPropertyTest.verified.txt │ ├── ObservableAsPropertyHelperGeneratorTests.GenericConstraintsTest.verified.txt │ ├── ObservableAsPropertyHelperGeneratorTests.InheritanceTest.verified.txt │ ├── ObservableAsPropertyHelperGeneratorTests.MixedAttributesTest.verified.txt │ ├── ObservableAsPropertyHelperGeneratorTests.MultiLevelInheritanceTest.verified.txt │ ├── ObservableAsPropertyHelperGeneratorTests.MultipleNamespacesTest.verified.txt │ ├── ObservableAsPropertyHelperGeneratorTests.MultipleObservableAsPropertiesTest.verified.txt │ ├── ObservableAsPropertyHelperGeneratorTests.NestedClassWithObservableAsPropertyTest.verified.txt │ ├── ObservableAsPropertyHelperGeneratorTests.NestedGenericTypesTest.verified.txt │ ├── ObservableAsPropertyHelperGeneratorTests.NestedPrivateClassTest.verified.txt │ ├── ObservableAsPropertyHelperGeneratorTests.NullablePropertiesTest.verified.txt │ ├── ObservableAsPropertyHelperGeneratorTests.ObservableAsPropertyWithComplexConstraints.verified.txt │ ├── ObservableAsPropertyHelperGeneratorTests.ObservableAsPropertyWithConstraints.verified.txt │ ├── ObservableAsPropertyHelperGeneratorTests.ObservableAsPropertyWithNestedGenerics.verified.txt │ ├── ObservableAsPropertyHelperGeneratorTests.SimpleObservableAsPropertyTest.verified.txt │ ├── ObservableAsPropertyHelperGeneratorTests.StaticPropertyTest.verified.txt │ ├── ReactiveGeneratorTests.AccessorModifiersTest.verified.txt │ ├── ReactiveGeneratorTests.AllPossibleConstraints.verified.txt │ ├── ReactiveGeneratorTests.AllPropertyModifiersTest.verified.txt │ ├── ReactiveGeneratorTests.ClassInGlobalNamespace.verified.txt │ ├── ReactiveGeneratorTests.ClassWithAbstractProperties.verified.txt │ ├── ReactiveGeneratorTests.ClassWithCustomAccessorAccessibility.verified.txt │ ├── ReactiveGeneratorTests.ClassWithCustomPropertyImplementationAndReactiveAttribute.verified.txt │ ├── ReactiveGeneratorTests.ClassWithDifferentPropertyAccessibilities.verified.txt │ ├── ReactiveGeneratorTests.ClassWithExplicitInterfaceImplementation.verified.txt │ ├── ReactiveGeneratorTests.ClassWithExpressionBodiedProperties.verified.txt │ ├── ReactiveGeneratorTests.ClassWithGenericConstraintsAndNullableProperties.verified.txt │ ├── ReactiveGeneratorTests.ClassWithIgnoreReactiveAttribute.verified.txt │ ├── ReactiveGeneratorTests.ClassWithIndexers.verified.txt │ ├── ReactiveGeneratorTests.ClassWithInitOnlySetters.verified.txt │ ├── ReactiveGeneratorTests.ClassWithMultipleComplexConstraints.verified.txt │ ├── ReactiveGeneratorTests.ClassWithMultipleInheritanceLevels.verified.txt │ ├── ReactiveGeneratorTests.ClassWithMultipleReactiveAttributes.verified.txt │ ├── ReactiveGeneratorTests.ClassWithNestedGenerics.verified.txt │ ├── ReactiveGeneratorTests.ClassWithNestedTypes.verified.txt │ ├── ReactiveGeneratorTests.ClassWithNotNullConstraint.verified.txt │ ├── ReactiveGeneratorTests.ClassWithNullableProperties.verified.txt │ ├── ReactiveGeneratorTests.ClassWithNullableReferenceConstraint.verified.txt │ ├── ReactiveGeneratorTests.ClassWithPropertyAccessorModifiers.verified.txt │ ├── ReactiveGeneratorTests.ClassWithPropertyImplementation.verified.txt │ ├── ReactiveGeneratorTests.ClassWithReactiveAttributeInDifferentNamespace.verified.txt │ ├── ReactiveGeneratorTests.ClassWithReactiveObjectInheritance.verified.txt │ ├── ReactiveGeneratorTests.ClassWithReadOnlyProperties.verified.txt │ ├── ReactiveGeneratorTests.ClassWithStaticProperties.verified.txt │ ├── ReactiveGeneratorTests.ClassWithTupleProperties.verified.txt │ ├── ReactiveGeneratorTests.ClassWithUnmanagedConstraint.verified.txt │ ├── ReactiveGeneratorTests.ClassWithVirtualProperties.verified.txt │ ├── ReactiveGeneratorTests.GenericClassWithConstraints.verified.txt │ ├── ReactiveGeneratorTests.GenericPropertyImplementation.verified.txt │ ├── ReactiveGeneratorTests.GenericPropertyWithConstraints.verified.txt │ ├── ReactiveGeneratorTests.GenericPropertyWithCustomAccessibility.verified.txt │ ├── ReactiveGeneratorTests.GenericPropertyWithInitSetter.verified.txt │ ├── ReactiveGeneratorTests.GenericPropertyWithMultipleTypeParameters.verified.txt │ ├── ReactiveGeneratorTests.GenericPropertyWithNestedTypes.verified.txt │ ├── ReactiveGeneratorTests.GenericPropertyWithNullableType.verified.txt │ ├── ReactiveGeneratorTests.GenericPropertyWithReactiveObjectBase.verified.txt │ ├── ReactiveGeneratorTests.GenericPropertyWithReadOnlyAccess.verified.txt │ ├── ReactiveGeneratorTests.InheritanceModifiersTest.verified.txt │ ├── ReactiveGeneratorTests.InheritedReactiveAttribute.verified.txt │ ├── ReactiveGeneratorTests.InitAccessorTest.verified.txt │ ├── ReactiveGeneratorTests.MixedModifiersTest.verified.txt │ ├── ReactiveGeneratorTests.ModifierOrderingTest.verified.txt │ ├── ReactiveGeneratorTests.MultiLevelInheritanceWithMixedReactiveAttributes.verified.txt │ ├── ReactiveGeneratorTests.MultiLevelNestedClassesWithReactiveProperties.verified.txt │ ├── ReactiveGeneratorTests.MultipleClassesWithInheritance.verified.txt │ ├── ReactiveGeneratorTests.NestedClassWithInheritance.verified.txt │ ├── ReactiveGeneratorTests.NestedClassesWithCustomPropertyImplementation.verified.txt │ ├── ReactiveGeneratorTests.NestedClassesWithDifferentAccessModifiers.verified.txt │ ├── ReactiveGeneratorTests.NestedClassesWithGenericConstraints.verified.txt │ ├── ReactiveGeneratorTests.NestedClassesWithInheritanceAndInterfaces.verified.txt │ ├── ReactiveGeneratorTests.NestedClassesWithInitOnlyProperties.verified.txt │ ├── ReactiveGeneratorTests.NestedClassesWithMixedReactiveScopes.verified.txt │ ├── ReactiveGeneratorTests.NestedClassesWithReactiveObjectInheritance.verified.txt │ ├── ReactiveGeneratorTests.NestedClassesWithStaticAndInstanceMembers.verified.txt │ ├── ReactiveGeneratorTests.NestedPrivateClassWithReactiveProperties.verified.txt │ ├── ReactiveGeneratorTests.NewModifierTest.verified.txt │ ├── ReactiveGeneratorTests.NonReactiveObjectWithMixedProperties.verified.txt │ ├── ReactiveGeneratorTests.PropertyLevelReactiveWithCustomAccessors.verified.txt │ ├── ReactiveGeneratorTests.PropertyLevelReactiveWithGenericType.verified.txt │ ├── ReactiveGeneratorTests.PropertyLevelReactiveWithInheritance.verified.txt │ ├── ReactiveGeneratorTests.PropertyLevelReactiveWithMixedProperties.verified.txt │ ├── ReactiveGeneratorTests.ReactiveObjectDerivedWithComplexProperties.verified.txt │ ├── ReactiveGeneratorTests.ReactiveObjectDerivedWithCustomImplementations.verified.txt │ ├── ReactiveGeneratorTests.ReactiveObjectDerivedWithInheritance.verified.txt │ ├── ReactiveGeneratorTests.ReactiveObjectDerivedWithInitProperties.verified.txt │ ├── ReactiveGeneratorTests.ReactiveObjectDerivedWithObservableProperties.verified.txt │ ├── ReactiveGeneratorTests.ReactiveObjectWithClassLevelReactive.verified.txt │ ├── ReactiveGeneratorTests.ReactiveObjectWithClassLevelReactiveAndIgnoreOverride.verified.txt │ ├── ReactiveGeneratorTests.ReactiveObjectWithMixedReactiveProperties.verified.txt │ ├── ReactiveGeneratorTests.ReactiveObjectWithNullableGenerics.verified.txt │ ├── ReactiveGeneratorTests.ReactiveObjectWithPropertyInitializer.verified.txt │ ├── ReactiveGeneratorTests.ReactiveObjectWithSingleReactiveProperty.verified.txt │ ├── ReactiveGeneratorTests.ReactiveObjectWithoutAnyReactiveAttribute.verified.txt │ ├── ReactiveGeneratorTests.RequiredModifierTest.verified.txt │ ├── ReactiveGeneratorTests.RequiredPropertyTest.verified.txt │ ├── ReactiveGeneratorTests.RequiredPropertyWithInheritanceTest.verified.txt │ ├── ReactiveGeneratorTests.RequiredPropertyWithMixedModifiersTest.verified.txt │ ├── ReactiveGeneratorTests.RequiredPropertyWithReactiveObjectTest.verified.txt │ ├── ReactiveGeneratorTests.SealedOverrideTest.verified.txt │ ├── ReactiveGeneratorTests.SimpleClassWithReactiveAttribute.verified.txt │ ├── ReactiveGeneratorTests.StaticPropertyTest.verified.txt │ ├── ReactiveGeneratorTests.UseLegacyModeTest.verified.txt │ ├── ReactivePropertyAnalyzerTests.BackingFieldUsedElsewhereTest.verified.txt │ ├── ReactivePropertyAnalyzerTests.CustomAccessibilityFixTest.verified.txt │ ├── ReactivePropertyAnalyzerTests.CustomAccessorAccessibilityTest.verified.txt │ ├── ReactivePropertyAnalyzerTests.DocumentWideFixTest.verified.txt │ ├── ReactivePropertyAnalyzerTests.FieldRemovalTest.verified.txt │ ├── ReactivePropertyAnalyzerTests.GenericClassWithReactivePropertyTest.verified.txt │ ├── ReactivePropertyAnalyzerTests.HandlesGenericsFixTest.verified.txt │ ├── ReactivePropertyAnalyzerTests.MixedPropertyTypesFixTest.verified.txt │ ├── ReactivePropertyAnalyzerTests.MultipleClassesFixTest.received.txt │ ├── ReactivePropertyAnalyzerTests.MultipleClassesFixTest.verified.txt │ ├── ReactivePropertyAnalyzerTests.MultiplePropertiesDocumentFixTest.received.txt │ ├── ReactivePropertyAnalyzerTests.MultiplePropertiesDocumentFixTest.verified.txt │ ├── ReactivePropertyAnalyzerTests.MultipleReactivePropertiesTest.verified.txt │ ├── ReactivePropertyAnalyzerTests.NonReactiveObjectShouldNotTriggerAnalyzer.verified.txt │ ├── ReactivePropertyAnalyzerTests.NullablePropertiesTest.verified.txt │ ├── ReactivePropertyAnalyzerTests.OnlyConvertsReactiveObjectsFixTest.verified.txt │ ├── ReactivePropertyAnalyzerTests.PreservesExistingReactivesFixTest.verified.txt │ ├── ReactivePropertyAnalyzerTests.ProjectWideFixTest.verified.txt │ ├── ReactivePropertyAnalyzerTests.PropertyWithoutSetterShouldNotTriggerAnalyzer.verified.txt │ ├── ReactivePropertyAnalyzerTests.SimpleReactivePropertyTest.verified.txt │ ├── ReactivePropertyAnalyzerTests.SinglePropertyFixTest.verified.txt │ ├── ReactivePropertyAnalyzerTests.SkipsPropertiesWithoutRaiseAndSetFixTest.received.txt │ ├── ReactivePropertyAnalyzerTests.SkipsPropertiesWithoutRaiseAndSetFixTest.verified.txt │ ├── ReactivePropertyAnalyzerTests.SolutionWideFixTest.verified.txt │ ├── UseBackingFieldsConfigurationTests.UseBackingFields_BothFormats_BothTrue.verified.txt │ ├── UseBackingFieldsConfigurationTests.UseBackingFields_BothFormats_NewTakesPrecedence.verified.txt │ ├── UseBackingFieldsConfigurationTests.UseBackingFields_CrossAssembly_LegacyFormat.verified.txt │ ├── UseBackingFieldsConfigurationTests.UseBackingFields_CrossAssembly_NewFormat.verified.txt │ ├── UseBackingFieldsConfigurationTests.UseBackingFields_EmptyValue_DefaultsToFalse.verified.txt │ ├── UseBackingFieldsConfigurationTests.UseBackingFields_InvalidValue_DefaultsToFalse.verified.txt │ ├── UseBackingFieldsConfigurationTests.UseBackingFields_LegacyFormat.verified.txt │ ├── UseBackingFieldsConfigurationTests.UseBackingFields_NewFormat.verified.txt │ ├── UseBackingFieldsConfigurationTests.UseBackingFields_NoConfig_DefaultsToFalse.verified.txt │ ├── UseBackingFieldsConfigurationTests.UseBackingFields_WithComplexProperties.verified.txt │ ├── UseBackingFieldsConfigurationTests.UseBackingFields_WithGenericClass.verified.txt │ ├── UseBackingFieldsConfigurationTests.UseBackingFields_WithInheritance.verified.txt │ ├── UseBackingFieldsConfigurationTests.UseBackingFields_WithNestedClasses.verified.txt │ ├── UseBackingFieldsConfigurationTests.UseBackingFields_WithOverrideProperties.verified.txt │ ├── UseBackingFieldsConfigurationTests.UseBackingFields_WithReactiveObjectInheritance.verified.txt │ ├── WhenAnyValueGeneratorTests.ClassInheritingFromReactiveObject.verified.txt │ ├── WhenAnyValueGeneratorTests.ClassWithComplexPropertyTypes.verified.txt │ ├── WhenAnyValueGeneratorTests.ClassWithDifferentAccessibilities.verified.txt │ ├── WhenAnyValueGeneratorTests.ClassWithMixedReactiveAttributes.verified.txt │ ├── WhenAnyValueGeneratorTests.ClassWithNestedGenerics.verified.txt │ ├── WhenAnyValueGeneratorTests.ClassWithNullableProperties.verified.txt │ ├── WhenAnyValueGeneratorTests.ClassWithPropertyLevelReactiveAttribute.verified.txt │ ├── WhenAnyValueGeneratorTests.CrossAssemblyInheritanceTest.verified.txt │ ├── WhenAnyValueGeneratorTests.GenericClassWithConstraints.verified.txt │ ├── WhenAnyValueGeneratorTests.GenericInheritanceWithReactiveAttribute.verified.txt │ ├── WhenAnyValueGeneratorTests.InheritedReactiveAttribute.verified.txt │ ├── WhenAnyValueGeneratorTests.InterfaceImplementationWithReactiveAttribute.verified.txt │ ├── WhenAnyValueGeneratorTests.MixedPropertyAndClassLevelReactiveInheritance.verified.txt │ ├── WhenAnyValueGeneratorTests.MultiLevelInheritanceWithMixedReactiveAttributes.verified.txt │ ├── WhenAnyValueGeneratorTests.MultipleClassesInDifferentNamespaces.verified.txt │ ├── WhenAnyValueGeneratorTests.MultipleClassesWithInheritance.verified.txt │ ├── WhenAnyValueGeneratorTests.NestedClassWithReactiveProperties.verified.txt │ ├── WhenAnyValueGeneratorTests.NestedInheritanceWithReactiveAttribute.verified.txt │ └── WhenAnyValueGeneratorTests.SimpleClassWithReactiveAttribute.verified.txt ├── SourceGeneratorTestHelper.cs └── WhenAnyValueGenerator │ └── WhenAnyValueGeneratorTests.cs ├── ReactiveGenerator.sln ├── ReactiveGenerator ├── IsExternalInit.cs ├── ObservableAsPropertyHelperGenerator.cs ├── ReactiveGenerator.cs ├── ReactiveGenerator.csproj ├── ReactivePropertyAnalyzer.cs ├── ReactivePropertyCodeFixProvider.cs ├── TypeHelper.cs ├── WhenAnyValueGenerator.cs └── build │ └── ReactiveGenerator.props ├── ReactiveGeneratorDemo ├── App.axaml ├── App.axaml.cs ├── MainWindow.axaml ├── MainWindow.axaml.cs ├── Program.cs ├── ReactiveGeneratorDemo.csproj ├── ViewModels │ ├── Advanced.cs │ ├── Car.cs │ ├── MainViewModel.cs │ ├── NullableGenericsTest.cs │ ├── NullableTest.cs │ ├── OaphViewModel.cs │ ├── Person.cs │ ├── Shape.cs │ ├── Student.cs │ ├── Teacher.cs │ ├── Test.cs │ ├── UsedCar.cs │ ├── ValidatingViewModel.cs │ └── ViewModelBase.cs └── app.manifest └── global.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: [wieslawsoltes] 2 | -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/.gitignore -------------------------------------------------------------------------------- /AnalyzerDemo/AnalyzerDemo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/AnalyzerDemo/AnalyzerDemo.csproj -------------------------------------------------------------------------------- /AnalyzerDemo/ItemViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/AnalyzerDemo/ItemViewModel.cs -------------------------------------------------------------------------------- /AnalyzerDemo/MainWindowViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/AnalyzerDemo/MainWindowViewModel.cs -------------------------------------------------------------------------------- /AnalyzerDemo/Program.cs: -------------------------------------------------------------------------------- 1 | Console.WriteLine("Hello, World!"); 2 | -------------------------------------------------------------------------------- /AnalyzerDemo/ViewModelBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/AnalyzerDemo/ViewModelBase.cs -------------------------------------------------------------------------------- /LICENSE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/LICENSE.TXT -------------------------------------------------------------------------------- /MultiTargetingDemo/App.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/MultiTargetingDemo/App.axaml -------------------------------------------------------------------------------- /MultiTargetingDemo/App.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/MultiTargetingDemo/App.axaml.cs -------------------------------------------------------------------------------- /MultiTargetingDemo/MainWindow.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/MultiTargetingDemo/MainWindow.axaml -------------------------------------------------------------------------------- /MultiTargetingDemo/MainWindow.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/MultiTargetingDemo/MainWindow.axaml.cs -------------------------------------------------------------------------------- /MultiTargetingDemo/MultiTargetingDemo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/MultiTargetingDemo/MultiTargetingDemo.csproj -------------------------------------------------------------------------------- /MultiTargetingDemo/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/MultiTargetingDemo/Program.cs -------------------------------------------------------------------------------- /MultiTargetingDemo/ViewModels/ViewModelBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/MultiTargetingDemo/ViewModels/ViewModelBase.cs -------------------------------------------------------------------------------- /MultiTargetingDemo/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/MultiTargetingDemo/app.manifest -------------------------------------------------------------------------------- /NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/NuGet.Config -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/README.md -------------------------------------------------------------------------------- /ReactiveGenerator.Integration.Tests/ObservableAsPropertyHelperIntegrationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGenerator.Integration.Tests/ObservableAsPropertyHelperIntegrationTests.cs -------------------------------------------------------------------------------- /ReactiveGenerator.Integration.Tests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGenerator.Integration.Tests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /ReactiveGenerator.Integration.Tests/ReactiveGenerator.Integration.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGenerator.Integration.Tests/ReactiveGenerator.Integration.Tests.csproj -------------------------------------------------------------------------------- /ReactiveGenerator.Integration.Tests/ReactiveGeneratorIntegrationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGenerator.Integration.Tests/ReactiveGeneratorIntegrationTests.cs -------------------------------------------------------------------------------- /ReactiveGenerator.Tests/AnalyzerTestHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGenerator.Tests/AnalyzerTestHelper.cs -------------------------------------------------------------------------------- /ReactiveGenerator.Tests/ModuleInitializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGenerator.Tests/ModuleInitializer.cs -------------------------------------------------------------------------------- /ReactiveGenerator.Tests/ObservableAsPropertyHelperGenerator/ObservableAsPropertyHelperGeneratorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGenerator.Tests/ObservableAsPropertyHelperGenerator/ObservableAsPropertyHelperGeneratorTests.cs -------------------------------------------------------------------------------- /ReactiveGenerator.Tests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGenerator.Tests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /ReactiveGenerator.Tests/ReactiveGenerator.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGenerator.Tests/ReactiveGenerator.Tests.csproj -------------------------------------------------------------------------------- /ReactiveGenerator.Tests/ReactiveGenerator/CrossAssemblyTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGenerator.Tests/ReactiveGenerator/CrossAssemblyTests.cs -------------------------------------------------------------------------------- /ReactiveGenerator.Tests/ReactiveGenerator/ReactiveGeneratorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGenerator.Tests/ReactiveGenerator/ReactiveGeneratorTests.cs -------------------------------------------------------------------------------- /ReactiveGenerator.Tests/ReactiveGenerator/UseBackingFieldsConfigurationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGenerator.Tests/ReactiveGenerator/UseBackingFieldsConfigurationTests.cs -------------------------------------------------------------------------------- /ReactiveGenerator.Tests/ReactivePropertyAnalyzer/ReactivePropertyAnalyzerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGenerator.Tests/ReactivePropertyAnalyzer/ReactivePropertyAnalyzerTests.cs -------------------------------------------------------------------------------- /ReactiveGenerator.Tests/Snapshots/CrossAssemblyTests.BaseHasNoAttributes_DerivedHasPropertyReactive.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGenerator.Tests/Snapshots/CrossAssemblyTests.BaseHasNoAttributes_DerivedHasPropertyReactive.verified.txt -------------------------------------------------------------------------------- /ReactiveGenerator.Tests/Snapshots/CrossAssemblyTests.BaseHasNoAttributes_DerivedHasReactive.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGenerator.Tests/Snapshots/CrossAssemblyTests.BaseHasNoAttributes_DerivedHasReactive.verified.txt -------------------------------------------------------------------------------- /ReactiveGenerator.Tests/Snapshots/CrossAssemblyTests.BaseHasPartialReactive_DerivedExtends.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGenerator.Tests/Snapshots/CrossAssemblyTests.BaseHasPartialReactive_DerivedExtends.verified.txt -------------------------------------------------------------------------------- /ReactiveGenerator.Tests/Snapshots/CrossAssemblyTests.BaseHasPropertyReactive_DerivedHasNoAttributes.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGenerator.Tests/Snapshots/CrossAssemblyTests.BaseHasPropertyReactive_DerivedHasNoAttributes.verified.txt -------------------------------------------------------------------------------- /ReactiveGenerator.Tests/Snapshots/CrossAssemblyTests.BaseHasReactive_DerivedHasIgnoreReactive.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGenerator.Tests/Snapshots/CrossAssemblyTests.BaseHasReactive_DerivedHasIgnoreReactive.verified.txt -------------------------------------------------------------------------------- /ReactiveGenerator.Tests/Snapshots/CrossAssemblyTests.BaseHasReactive_DerivedHasMixedPropertyAttributes.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGenerator.Tests/Snapshots/CrossAssemblyTests.BaseHasReactive_DerivedHasMixedPropertyAttributes.verified.txt -------------------------------------------------------------------------------- /ReactiveGenerator.Tests/Snapshots/CrossAssemblyTests.BaseHasReactive_DerivedHasNoAttributes.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGenerator.Tests/Snapshots/CrossAssemblyTests.BaseHasReactive_DerivedHasNoAttributes.verified.txt -------------------------------------------------------------------------------- /ReactiveGenerator.Tests/Snapshots/CrossAssemblyTests.ExternalBaseDerivedFromReactiveObject_ThenNoDoubleINPCInDerived.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGenerator.Tests/Snapshots/CrossAssemblyTests.ExternalBaseDerivedFromReactiveObject_ThenNoDoubleINPCInDerived.verified.txt -------------------------------------------------------------------------------- /ReactiveGenerator.Tests/Snapshots/CrossAssemblyTests.ExternalBaseHasIgnoreReactive_ThenDerivedIgnoresItToo.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGenerator.Tests/Snapshots/CrossAssemblyTests.ExternalBaseHasIgnoreReactive_ThenDerivedIgnoresItToo.verified.txt -------------------------------------------------------------------------------- /ReactiveGenerator.Tests/Snapshots/CrossAssemblyTests.ExternalBaseHasPropertyLevelReactive_ThenNoExtraINPCInDerived.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGenerator.Tests/Snapshots/CrossAssemblyTests.ExternalBaseHasPropertyLevelReactive_ThenNoExtraINPCInDerived.verified.txt -------------------------------------------------------------------------------- /ReactiveGenerator.Tests/Snapshots/CrossAssemblyTests.ExternalBaseHasReactiveClass_ThenNoDoubleINPCInDerived.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGenerator.Tests/Snapshots/CrossAssemblyTests.ExternalBaseHasReactiveClass_ThenNoDoubleINPCInDerived.verified.txt -------------------------------------------------------------------------------- /ReactiveGenerator.Tests/Snapshots/CrossAssemblyTests.MultipleInheritanceLevels_MixedReactiveAttributes.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGenerator.Tests/Snapshots/CrossAssemblyTests.MultipleInheritanceLevels_MixedReactiveAttributes.verified.txt -------------------------------------------------------------------------------- /ReactiveGenerator.Tests/Snapshots/ObservableAsPropertyHelperGeneratorTests.ComplexTypesTest.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGenerator.Tests/Snapshots/ObservableAsPropertyHelperGeneratorTests.ComplexTypesTest.verified.txt -------------------------------------------------------------------------------- /ReactiveGenerator.Tests/Snapshots/ObservableAsPropertyHelperGeneratorTests.DifferentAccessibilityLevelsTest.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGenerator.Tests/Snapshots/ObservableAsPropertyHelperGeneratorTests.DifferentAccessibilityLevelsTest.verified.txt -------------------------------------------------------------------------------- /ReactiveGenerator.Tests/Snapshots/ObservableAsPropertyHelperGeneratorTests.GenericClassWithObservableAsPropertyTest.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGenerator.Tests/Snapshots/ObservableAsPropertyHelperGeneratorTests.GenericClassWithObservableAsPropertyTest.verified.txt -------------------------------------------------------------------------------- /ReactiveGenerator.Tests/Snapshots/ObservableAsPropertyHelperGeneratorTests.GenericConstraintsTest.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGenerator.Tests/Snapshots/ObservableAsPropertyHelperGeneratorTests.GenericConstraintsTest.verified.txt -------------------------------------------------------------------------------- /ReactiveGenerator.Tests/Snapshots/ObservableAsPropertyHelperGeneratorTests.InheritanceTest.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGenerator.Tests/Snapshots/ObservableAsPropertyHelperGeneratorTests.InheritanceTest.verified.txt -------------------------------------------------------------------------------- /ReactiveGenerator.Tests/Snapshots/ObservableAsPropertyHelperGeneratorTests.MixedAttributesTest.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGenerator.Tests/Snapshots/ObservableAsPropertyHelperGeneratorTests.MixedAttributesTest.verified.txt -------------------------------------------------------------------------------- /ReactiveGenerator.Tests/Snapshots/ObservableAsPropertyHelperGeneratorTests.MultiLevelInheritanceTest.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGenerator.Tests/Snapshots/ObservableAsPropertyHelperGeneratorTests.MultiLevelInheritanceTest.verified.txt -------------------------------------------------------------------------------- /ReactiveGenerator.Tests/Snapshots/ObservableAsPropertyHelperGeneratorTests.MultipleNamespacesTest.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGenerator.Tests/Snapshots/ObservableAsPropertyHelperGeneratorTests.MultipleNamespacesTest.verified.txt -------------------------------------------------------------------------------- /ReactiveGenerator.Tests/Snapshots/ObservableAsPropertyHelperGeneratorTests.MultipleObservableAsPropertiesTest.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGenerator.Tests/Snapshots/ObservableAsPropertyHelperGeneratorTests.MultipleObservableAsPropertiesTest.verified.txt -------------------------------------------------------------------------------- /ReactiveGenerator.Tests/Snapshots/ObservableAsPropertyHelperGeneratorTests.NestedClassWithObservableAsPropertyTest.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGenerator.Tests/Snapshots/ObservableAsPropertyHelperGeneratorTests.NestedClassWithObservableAsPropertyTest.verified.txt -------------------------------------------------------------------------------- /ReactiveGenerator.Tests/Snapshots/ObservableAsPropertyHelperGeneratorTests.NestedGenericTypesTest.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGenerator.Tests/Snapshots/ObservableAsPropertyHelperGeneratorTests.NestedGenericTypesTest.verified.txt -------------------------------------------------------------------------------- /ReactiveGenerator.Tests/Snapshots/ObservableAsPropertyHelperGeneratorTests.NestedPrivateClassTest.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGenerator.Tests/Snapshots/ObservableAsPropertyHelperGeneratorTests.NestedPrivateClassTest.verified.txt -------------------------------------------------------------------------------- /ReactiveGenerator.Tests/Snapshots/ObservableAsPropertyHelperGeneratorTests.NullablePropertiesTest.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGenerator.Tests/Snapshots/ObservableAsPropertyHelperGeneratorTests.NullablePropertiesTest.verified.txt -------------------------------------------------------------------------------- /ReactiveGenerator.Tests/Snapshots/ObservableAsPropertyHelperGeneratorTests.ObservableAsPropertyWithComplexConstraints.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGenerator.Tests/Snapshots/ObservableAsPropertyHelperGeneratorTests.ObservableAsPropertyWithComplexConstraints.verified.txt -------------------------------------------------------------------------------- /ReactiveGenerator.Tests/Snapshots/ObservableAsPropertyHelperGeneratorTests.ObservableAsPropertyWithConstraints.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGenerator.Tests/Snapshots/ObservableAsPropertyHelperGeneratorTests.ObservableAsPropertyWithConstraints.verified.txt -------------------------------------------------------------------------------- /ReactiveGenerator.Tests/Snapshots/ObservableAsPropertyHelperGeneratorTests.ObservableAsPropertyWithNestedGenerics.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGenerator.Tests/Snapshots/ObservableAsPropertyHelperGeneratorTests.ObservableAsPropertyWithNestedGenerics.verified.txt -------------------------------------------------------------------------------- /ReactiveGenerator.Tests/Snapshots/ObservableAsPropertyHelperGeneratorTests.SimpleObservableAsPropertyTest.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGenerator.Tests/Snapshots/ObservableAsPropertyHelperGeneratorTests.SimpleObservableAsPropertyTest.verified.txt -------------------------------------------------------------------------------- /ReactiveGenerator.Tests/Snapshots/ObservableAsPropertyHelperGeneratorTests.StaticPropertyTest.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGenerator.Tests/Snapshots/ObservableAsPropertyHelperGeneratorTests.StaticPropertyTest.verified.txt -------------------------------------------------------------------------------- /ReactiveGenerator.Tests/Snapshots/ReactiveGeneratorTests.AccessorModifiersTest.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGenerator.Tests/Snapshots/ReactiveGeneratorTests.AccessorModifiersTest.verified.txt -------------------------------------------------------------------------------- /ReactiveGenerator.Tests/Snapshots/ReactiveGeneratorTests.AllPossibleConstraints.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGenerator.Tests/Snapshots/ReactiveGeneratorTests.AllPossibleConstraints.verified.txt -------------------------------------------------------------------------------- /ReactiveGenerator.Tests/Snapshots/ReactiveGeneratorTests.AllPropertyModifiersTest.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGenerator.Tests/Snapshots/ReactiveGeneratorTests.AllPropertyModifiersTest.verified.txt -------------------------------------------------------------------------------- /ReactiveGenerator.Tests/Snapshots/ReactiveGeneratorTests.ClassInGlobalNamespace.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGenerator.Tests/Snapshots/ReactiveGeneratorTests.ClassInGlobalNamespace.verified.txt -------------------------------------------------------------------------------- /ReactiveGenerator.Tests/Snapshots/ReactiveGeneratorTests.ClassWithAbstractProperties.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGenerator.Tests/Snapshots/ReactiveGeneratorTests.ClassWithAbstractProperties.verified.txt -------------------------------------------------------------------------------- /ReactiveGenerator.Tests/Snapshots/ReactiveGeneratorTests.ClassWithCustomAccessorAccessibility.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGenerator.Tests/Snapshots/ReactiveGeneratorTests.ClassWithCustomAccessorAccessibility.verified.txt -------------------------------------------------------------------------------- /ReactiveGenerator.Tests/Snapshots/ReactiveGeneratorTests.ClassWithCustomPropertyImplementationAndReactiveAttribute.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGenerator.Tests/Snapshots/ReactiveGeneratorTests.ClassWithCustomPropertyImplementationAndReactiveAttribute.verified.txt -------------------------------------------------------------------------------- /ReactiveGenerator.Tests/Snapshots/ReactiveGeneratorTests.ClassWithDifferentPropertyAccessibilities.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGenerator.Tests/Snapshots/ReactiveGeneratorTests.ClassWithDifferentPropertyAccessibilities.verified.txt -------------------------------------------------------------------------------- /ReactiveGenerator.Tests/Snapshots/ReactiveGeneratorTests.ClassWithExplicitInterfaceImplementation.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGenerator.Tests/Snapshots/ReactiveGeneratorTests.ClassWithExplicitInterfaceImplementation.verified.txt -------------------------------------------------------------------------------- /ReactiveGenerator.Tests/Snapshots/ReactiveGeneratorTests.ClassWithExpressionBodiedProperties.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGenerator.Tests/Snapshots/ReactiveGeneratorTests.ClassWithExpressionBodiedProperties.verified.txt -------------------------------------------------------------------------------- /ReactiveGenerator.Tests/Snapshots/ReactiveGeneratorTests.ClassWithGenericConstraintsAndNullableProperties.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGenerator.Tests/Snapshots/ReactiveGeneratorTests.ClassWithGenericConstraintsAndNullableProperties.verified.txt -------------------------------------------------------------------------------- /ReactiveGenerator.Tests/Snapshots/ReactiveGeneratorTests.ClassWithIgnoreReactiveAttribute.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGenerator.Tests/Snapshots/ReactiveGeneratorTests.ClassWithIgnoreReactiveAttribute.verified.txt -------------------------------------------------------------------------------- /ReactiveGenerator.Tests/Snapshots/ReactiveGeneratorTests.ClassWithIndexers.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGenerator.Tests/Snapshots/ReactiveGeneratorTests.ClassWithIndexers.verified.txt -------------------------------------------------------------------------------- /ReactiveGenerator.Tests/Snapshots/ReactiveGeneratorTests.ClassWithInitOnlySetters.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGenerator.Tests/Snapshots/ReactiveGeneratorTests.ClassWithInitOnlySetters.verified.txt -------------------------------------------------------------------------------- /ReactiveGenerator.Tests/Snapshots/ReactiveGeneratorTests.ClassWithMultipleComplexConstraints.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGenerator.Tests/Snapshots/ReactiveGeneratorTests.ClassWithMultipleComplexConstraints.verified.txt -------------------------------------------------------------------------------- /ReactiveGenerator.Tests/Snapshots/ReactiveGeneratorTests.ClassWithMultipleInheritanceLevels.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGenerator.Tests/Snapshots/ReactiveGeneratorTests.ClassWithMultipleInheritanceLevels.verified.txt -------------------------------------------------------------------------------- /ReactiveGenerator.Tests/Snapshots/ReactiveGeneratorTests.ClassWithMultipleReactiveAttributes.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGenerator.Tests/Snapshots/ReactiveGeneratorTests.ClassWithMultipleReactiveAttributes.verified.txt -------------------------------------------------------------------------------- /ReactiveGenerator.Tests/Snapshots/ReactiveGeneratorTests.ClassWithNestedGenerics.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGenerator.Tests/Snapshots/ReactiveGeneratorTests.ClassWithNestedGenerics.verified.txt -------------------------------------------------------------------------------- /ReactiveGenerator.Tests/Snapshots/ReactiveGeneratorTests.ClassWithNestedTypes.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGenerator.Tests/Snapshots/ReactiveGeneratorTests.ClassWithNestedTypes.verified.txt -------------------------------------------------------------------------------- /ReactiveGenerator.Tests/Snapshots/ReactiveGeneratorTests.ClassWithNotNullConstraint.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGenerator.Tests/Snapshots/ReactiveGeneratorTests.ClassWithNotNullConstraint.verified.txt -------------------------------------------------------------------------------- /ReactiveGenerator.Tests/Snapshots/ReactiveGeneratorTests.ClassWithNullableProperties.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGenerator.Tests/Snapshots/ReactiveGeneratorTests.ClassWithNullableProperties.verified.txt -------------------------------------------------------------------------------- /ReactiveGenerator.Tests/Snapshots/ReactiveGeneratorTests.ClassWithNullableReferenceConstraint.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGenerator.Tests/Snapshots/ReactiveGeneratorTests.ClassWithNullableReferenceConstraint.verified.txt -------------------------------------------------------------------------------- /ReactiveGenerator.Tests/Snapshots/ReactiveGeneratorTests.ClassWithPropertyAccessorModifiers.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGenerator.Tests/Snapshots/ReactiveGeneratorTests.ClassWithPropertyAccessorModifiers.verified.txt -------------------------------------------------------------------------------- /ReactiveGenerator.Tests/Snapshots/ReactiveGeneratorTests.ClassWithPropertyImplementation.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGenerator.Tests/Snapshots/ReactiveGeneratorTests.ClassWithPropertyImplementation.verified.txt -------------------------------------------------------------------------------- /ReactiveGenerator.Tests/Snapshots/ReactiveGeneratorTests.ClassWithReactiveAttributeInDifferentNamespace.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGenerator.Tests/Snapshots/ReactiveGeneratorTests.ClassWithReactiveAttributeInDifferentNamespace.verified.txt -------------------------------------------------------------------------------- /ReactiveGenerator.Tests/Snapshots/ReactiveGeneratorTests.ClassWithReactiveObjectInheritance.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGenerator.Tests/Snapshots/ReactiveGeneratorTests.ClassWithReactiveObjectInheritance.verified.txt -------------------------------------------------------------------------------- /ReactiveGenerator.Tests/Snapshots/ReactiveGeneratorTests.ClassWithReadOnlyProperties.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGenerator.Tests/Snapshots/ReactiveGeneratorTests.ClassWithReadOnlyProperties.verified.txt -------------------------------------------------------------------------------- /ReactiveGenerator.Tests/Snapshots/ReactiveGeneratorTests.ClassWithStaticProperties.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGenerator.Tests/Snapshots/ReactiveGeneratorTests.ClassWithStaticProperties.verified.txt -------------------------------------------------------------------------------- /ReactiveGenerator.Tests/Snapshots/ReactiveGeneratorTests.ClassWithTupleProperties.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGenerator.Tests/Snapshots/ReactiveGeneratorTests.ClassWithTupleProperties.verified.txt -------------------------------------------------------------------------------- /ReactiveGenerator.Tests/Snapshots/ReactiveGeneratorTests.ClassWithUnmanagedConstraint.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGenerator.Tests/Snapshots/ReactiveGeneratorTests.ClassWithUnmanagedConstraint.verified.txt -------------------------------------------------------------------------------- /ReactiveGenerator.Tests/Snapshots/ReactiveGeneratorTests.ClassWithVirtualProperties.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGenerator.Tests/Snapshots/ReactiveGeneratorTests.ClassWithVirtualProperties.verified.txt -------------------------------------------------------------------------------- /ReactiveGenerator.Tests/Snapshots/ReactiveGeneratorTests.GenericClassWithConstraints.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGenerator.Tests/Snapshots/ReactiveGeneratorTests.GenericClassWithConstraints.verified.txt -------------------------------------------------------------------------------- /ReactiveGenerator.Tests/Snapshots/ReactiveGeneratorTests.GenericPropertyImplementation.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGenerator.Tests/Snapshots/ReactiveGeneratorTests.GenericPropertyImplementation.verified.txt -------------------------------------------------------------------------------- /ReactiveGenerator.Tests/Snapshots/ReactiveGeneratorTests.GenericPropertyWithConstraints.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGenerator.Tests/Snapshots/ReactiveGeneratorTests.GenericPropertyWithConstraints.verified.txt -------------------------------------------------------------------------------- /ReactiveGenerator.Tests/Snapshots/ReactiveGeneratorTests.GenericPropertyWithCustomAccessibility.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGenerator.Tests/Snapshots/ReactiveGeneratorTests.GenericPropertyWithCustomAccessibility.verified.txt -------------------------------------------------------------------------------- /ReactiveGenerator.Tests/Snapshots/ReactiveGeneratorTests.GenericPropertyWithInitSetter.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGenerator.Tests/Snapshots/ReactiveGeneratorTests.GenericPropertyWithInitSetter.verified.txt -------------------------------------------------------------------------------- /ReactiveGenerator.Tests/Snapshots/ReactiveGeneratorTests.GenericPropertyWithMultipleTypeParameters.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGenerator.Tests/Snapshots/ReactiveGeneratorTests.GenericPropertyWithMultipleTypeParameters.verified.txt -------------------------------------------------------------------------------- /ReactiveGenerator.Tests/Snapshots/ReactiveGeneratorTests.GenericPropertyWithNestedTypes.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGenerator.Tests/Snapshots/ReactiveGeneratorTests.GenericPropertyWithNestedTypes.verified.txt -------------------------------------------------------------------------------- /ReactiveGenerator.Tests/Snapshots/ReactiveGeneratorTests.GenericPropertyWithNullableType.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGenerator.Tests/Snapshots/ReactiveGeneratorTests.GenericPropertyWithNullableType.verified.txt -------------------------------------------------------------------------------- /ReactiveGenerator.Tests/Snapshots/ReactiveGeneratorTests.GenericPropertyWithReactiveObjectBase.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGenerator.Tests/Snapshots/ReactiveGeneratorTests.GenericPropertyWithReactiveObjectBase.verified.txt -------------------------------------------------------------------------------- /ReactiveGenerator.Tests/Snapshots/ReactiveGeneratorTests.GenericPropertyWithReadOnlyAccess.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGenerator.Tests/Snapshots/ReactiveGeneratorTests.GenericPropertyWithReadOnlyAccess.verified.txt -------------------------------------------------------------------------------- /ReactiveGenerator.Tests/Snapshots/ReactiveGeneratorTests.InheritanceModifiersTest.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGenerator.Tests/Snapshots/ReactiveGeneratorTests.InheritanceModifiersTest.verified.txt -------------------------------------------------------------------------------- /ReactiveGenerator.Tests/Snapshots/ReactiveGeneratorTests.InheritedReactiveAttribute.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGenerator.Tests/Snapshots/ReactiveGeneratorTests.InheritedReactiveAttribute.verified.txt -------------------------------------------------------------------------------- /ReactiveGenerator.Tests/Snapshots/ReactiveGeneratorTests.InitAccessorTest.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGenerator.Tests/Snapshots/ReactiveGeneratorTests.InitAccessorTest.verified.txt -------------------------------------------------------------------------------- /ReactiveGenerator.Tests/Snapshots/ReactiveGeneratorTests.MixedModifiersTest.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGenerator.Tests/Snapshots/ReactiveGeneratorTests.MixedModifiersTest.verified.txt -------------------------------------------------------------------------------- /ReactiveGenerator.Tests/Snapshots/ReactiveGeneratorTests.ModifierOrderingTest.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGenerator.Tests/Snapshots/ReactiveGeneratorTests.ModifierOrderingTest.verified.txt -------------------------------------------------------------------------------- /ReactiveGenerator.Tests/Snapshots/ReactiveGeneratorTests.MultiLevelInheritanceWithMixedReactiveAttributes.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGenerator.Tests/Snapshots/ReactiveGeneratorTests.MultiLevelInheritanceWithMixedReactiveAttributes.verified.txt -------------------------------------------------------------------------------- /ReactiveGenerator.Tests/Snapshots/ReactiveGeneratorTests.MultiLevelNestedClassesWithReactiveProperties.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGenerator.Tests/Snapshots/ReactiveGeneratorTests.MultiLevelNestedClassesWithReactiveProperties.verified.txt -------------------------------------------------------------------------------- /ReactiveGenerator.Tests/Snapshots/ReactiveGeneratorTests.MultipleClassesWithInheritance.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGenerator.Tests/Snapshots/ReactiveGeneratorTests.MultipleClassesWithInheritance.verified.txt -------------------------------------------------------------------------------- /ReactiveGenerator.Tests/Snapshots/ReactiveGeneratorTests.NestedClassWithInheritance.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGenerator.Tests/Snapshots/ReactiveGeneratorTests.NestedClassWithInheritance.verified.txt -------------------------------------------------------------------------------- /ReactiveGenerator.Tests/Snapshots/ReactiveGeneratorTests.NestedClassesWithCustomPropertyImplementation.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGenerator.Tests/Snapshots/ReactiveGeneratorTests.NestedClassesWithCustomPropertyImplementation.verified.txt -------------------------------------------------------------------------------- /ReactiveGenerator.Tests/Snapshots/ReactiveGeneratorTests.NestedClassesWithDifferentAccessModifiers.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGenerator.Tests/Snapshots/ReactiveGeneratorTests.NestedClassesWithDifferentAccessModifiers.verified.txt -------------------------------------------------------------------------------- /ReactiveGenerator.Tests/Snapshots/ReactiveGeneratorTests.NestedClassesWithGenericConstraints.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGenerator.Tests/Snapshots/ReactiveGeneratorTests.NestedClassesWithGenericConstraints.verified.txt -------------------------------------------------------------------------------- /ReactiveGenerator.Tests/Snapshots/ReactiveGeneratorTests.NestedClassesWithInheritanceAndInterfaces.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGenerator.Tests/Snapshots/ReactiveGeneratorTests.NestedClassesWithInheritanceAndInterfaces.verified.txt -------------------------------------------------------------------------------- /ReactiveGenerator.Tests/Snapshots/ReactiveGeneratorTests.NestedClassesWithInitOnlyProperties.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGenerator.Tests/Snapshots/ReactiveGeneratorTests.NestedClassesWithInitOnlyProperties.verified.txt -------------------------------------------------------------------------------- /ReactiveGenerator.Tests/Snapshots/ReactiveGeneratorTests.NestedClassesWithMixedReactiveScopes.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGenerator.Tests/Snapshots/ReactiveGeneratorTests.NestedClassesWithMixedReactiveScopes.verified.txt -------------------------------------------------------------------------------- /ReactiveGenerator.Tests/Snapshots/ReactiveGeneratorTests.NestedClassesWithReactiveObjectInheritance.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGenerator.Tests/Snapshots/ReactiveGeneratorTests.NestedClassesWithReactiveObjectInheritance.verified.txt -------------------------------------------------------------------------------- /ReactiveGenerator.Tests/Snapshots/ReactiveGeneratorTests.NestedClassesWithStaticAndInstanceMembers.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGenerator.Tests/Snapshots/ReactiveGeneratorTests.NestedClassesWithStaticAndInstanceMembers.verified.txt -------------------------------------------------------------------------------- /ReactiveGenerator.Tests/Snapshots/ReactiveGeneratorTests.NestedPrivateClassWithReactiveProperties.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGenerator.Tests/Snapshots/ReactiveGeneratorTests.NestedPrivateClassWithReactiveProperties.verified.txt -------------------------------------------------------------------------------- /ReactiveGenerator.Tests/Snapshots/ReactiveGeneratorTests.NewModifierTest.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGenerator.Tests/Snapshots/ReactiveGeneratorTests.NewModifierTest.verified.txt -------------------------------------------------------------------------------- /ReactiveGenerator.Tests/Snapshots/ReactiveGeneratorTests.NonReactiveObjectWithMixedProperties.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGenerator.Tests/Snapshots/ReactiveGeneratorTests.NonReactiveObjectWithMixedProperties.verified.txt -------------------------------------------------------------------------------- /ReactiveGenerator.Tests/Snapshots/ReactiveGeneratorTests.PropertyLevelReactiveWithCustomAccessors.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGenerator.Tests/Snapshots/ReactiveGeneratorTests.PropertyLevelReactiveWithCustomAccessors.verified.txt -------------------------------------------------------------------------------- /ReactiveGenerator.Tests/Snapshots/ReactiveGeneratorTests.PropertyLevelReactiveWithGenericType.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGenerator.Tests/Snapshots/ReactiveGeneratorTests.PropertyLevelReactiveWithGenericType.verified.txt -------------------------------------------------------------------------------- /ReactiveGenerator.Tests/Snapshots/ReactiveGeneratorTests.PropertyLevelReactiveWithInheritance.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGenerator.Tests/Snapshots/ReactiveGeneratorTests.PropertyLevelReactiveWithInheritance.verified.txt -------------------------------------------------------------------------------- /ReactiveGenerator.Tests/Snapshots/ReactiveGeneratorTests.PropertyLevelReactiveWithMixedProperties.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGenerator.Tests/Snapshots/ReactiveGeneratorTests.PropertyLevelReactiveWithMixedProperties.verified.txt -------------------------------------------------------------------------------- /ReactiveGenerator.Tests/Snapshots/ReactiveGeneratorTests.ReactiveObjectDerivedWithComplexProperties.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGenerator.Tests/Snapshots/ReactiveGeneratorTests.ReactiveObjectDerivedWithComplexProperties.verified.txt -------------------------------------------------------------------------------- /ReactiveGenerator.Tests/Snapshots/ReactiveGeneratorTests.ReactiveObjectDerivedWithCustomImplementations.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGenerator.Tests/Snapshots/ReactiveGeneratorTests.ReactiveObjectDerivedWithCustomImplementations.verified.txt -------------------------------------------------------------------------------- /ReactiveGenerator.Tests/Snapshots/ReactiveGeneratorTests.ReactiveObjectDerivedWithInheritance.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGenerator.Tests/Snapshots/ReactiveGeneratorTests.ReactiveObjectDerivedWithInheritance.verified.txt -------------------------------------------------------------------------------- /ReactiveGenerator.Tests/Snapshots/ReactiveGeneratorTests.ReactiveObjectDerivedWithInitProperties.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGenerator.Tests/Snapshots/ReactiveGeneratorTests.ReactiveObjectDerivedWithInitProperties.verified.txt -------------------------------------------------------------------------------- /ReactiveGenerator.Tests/Snapshots/ReactiveGeneratorTests.ReactiveObjectDerivedWithObservableProperties.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGenerator.Tests/Snapshots/ReactiveGeneratorTests.ReactiveObjectDerivedWithObservableProperties.verified.txt -------------------------------------------------------------------------------- /ReactiveGenerator.Tests/Snapshots/ReactiveGeneratorTests.ReactiveObjectWithClassLevelReactive.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGenerator.Tests/Snapshots/ReactiveGeneratorTests.ReactiveObjectWithClassLevelReactive.verified.txt -------------------------------------------------------------------------------- /ReactiveGenerator.Tests/Snapshots/ReactiveGeneratorTests.ReactiveObjectWithClassLevelReactiveAndIgnoreOverride.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGenerator.Tests/Snapshots/ReactiveGeneratorTests.ReactiveObjectWithClassLevelReactiveAndIgnoreOverride.verified.txt -------------------------------------------------------------------------------- /ReactiveGenerator.Tests/Snapshots/ReactiveGeneratorTests.ReactiveObjectWithMixedReactiveProperties.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGenerator.Tests/Snapshots/ReactiveGeneratorTests.ReactiveObjectWithMixedReactiveProperties.verified.txt -------------------------------------------------------------------------------- /ReactiveGenerator.Tests/Snapshots/ReactiveGeneratorTests.ReactiveObjectWithNullableGenerics.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGenerator.Tests/Snapshots/ReactiveGeneratorTests.ReactiveObjectWithNullableGenerics.verified.txt -------------------------------------------------------------------------------- /ReactiveGenerator.Tests/Snapshots/ReactiveGeneratorTests.ReactiveObjectWithPropertyInitializer.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGenerator.Tests/Snapshots/ReactiveGeneratorTests.ReactiveObjectWithPropertyInitializer.verified.txt -------------------------------------------------------------------------------- /ReactiveGenerator.Tests/Snapshots/ReactiveGeneratorTests.ReactiveObjectWithSingleReactiveProperty.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGenerator.Tests/Snapshots/ReactiveGeneratorTests.ReactiveObjectWithSingleReactiveProperty.verified.txt -------------------------------------------------------------------------------- /ReactiveGenerator.Tests/Snapshots/ReactiveGeneratorTests.ReactiveObjectWithoutAnyReactiveAttribute.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGenerator.Tests/Snapshots/ReactiveGeneratorTests.ReactiveObjectWithoutAnyReactiveAttribute.verified.txt -------------------------------------------------------------------------------- /ReactiveGenerator.Tests/Snapshots/ReactiveGeneratorTests.RequiredModifierTest.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGenerator.Tests/Snapshots/ReactiveGeneratorTests.RequiredModifierTest.verified.txt -------------------------------------------------------------------------------- /ReactiveGenerator.Tests/Snapshots/ReactiveGeneratorTests.RequiredPropertyTest.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGenerator.Tests/Snapshots/ReactiveGeneratorTests.RequiredPropertyTest.verified.txt -------------------------------------------------------------------------------- /ReactiveGenerator.Tests/Snapshots/ReactiveGeneratorTests.RequiredPropertyWithInheritanceTest.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGenerator.Tests/Snapshots/ReactiveGeneratorTests.RequiredPropertyWithInheritanceTest.verified.txt -------------------------------------------------------------------------------- /ReactiveGenerator.Tests/Snapshots/ReactiveGeneratorTests.RequiredPropertyWithMixedModifiersTest.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGenerator.Tests/Snapshots/ReactiveGeneratorTests.RequiredPropertyWithMixedModifiersTest.verified.txt -------------------------------------------------------------------------------- /ReactiveGenerator.Tests/Snapshots/ReactiveGeneratorTests.RequiredPropertyWithReactiveObjectTest.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGenerator.Tests/Snapshots/ReactiveGeneratorTests.RequiredPropertyWithReactiveObjectTest.verified.txt -------------------------------------------------------------------------------- /ReactiveGenerator.Tests/Snapshots/ReactiveGeneratorTests.SealedOverrideTest.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGenerator.Tests/Snapshots/ReactiveGeneratorTests.SealedOverrideTest.verified.txt -------------------------------------------------------------------------------- /ReactiveGenerator.Tests/Snapshots/ReactiveGeneratorTests.SimpleClassWithReactiveAttribute.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGenerator.Tests/Snapshots/ReactiveGeneratorTests.SimpleClassWithReactiveAttribute.verified.txt -------------------------------------------------------------------------------- /ReactiveGenerator.Tests/Snapshots/ReactiveGeneratorTests.StaticPropertyTest.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGenerator.Tests/Snapshots/ReactiveGeneratorTests.StaticPropertyTest.verified.txt -------------------------------------------------------------------------------- /ReactiveGenerator.Tests/Snapshots/ReactiveGeneratorTests.UseLegacyModeTest.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGenerator.Tests/Snapshots/ReactiveGeneratorTests.UseLegacyModeTest.verified.txt -------------------------------------------------------------------------------- /ReactiveGenerator.Tests/Snapshots/ReactivePropertyAnalyzerTests.BackingFieldUsedElsewhereTest.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGenerator.Tests/Snapshots/ReactivePropertyAnalyzerTests.BackingFieldUsedElsewhereTest.verified.txt -------------------------------------------------------------------------------- /ReactiveGenerator.Tests/Snapshots/ReactivePropertyAnalyzerTests.CustomAccessibilityFixTest.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGenerator.Tests/Snapshots/ReactivePropertyAnalyzerTests.CustomAccessibilityFixTest.verified.txt -------------------------------------------------------------------------------- /ReactiveGenerator.Tests/Snapshots/ReactivePropertyAnalyzerTests.CustomAccessorAccessibilityTest.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGenerator.Tests/Snapshots/ReactivePropertyAnalyzerTests.CustomAccessorAccessibilityTest.verified.txt -------------------------------------------------------------------------------- /ReactiveGenerator.Tests/Snapshots/ReactivePropertyAnalyzerTests.DocumentWideFixTest.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGenerator.Tests/Snapshots/ReactivePropertyAnalyzerTests.DocumentWideFixTest.verified.txt -------------------------------------------------------------------------------- /ReactiveGenerator.Tests/Snapshots/ReactivePropertyAnalyzerTests.FieldRemovalTest.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGenerator.Tests/Snapshots/ReactivePropertyAnalyzerTests.FieldRemovalTest.verified.txt -------------------------------------------------------------------------------- /ReactiveGenerator.Tests/Snapshots/ReactivePropertyAnalyzerTests.GenericClassWithReactivePropertyTest.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGenerator.Tests/Snapshots/ReactivePropertyAnalyzerTests.GenericClassWithReactivePropertyTest.verified.txt -------------------------------------------------------------------------------- /ReactiveGenerator.Tests/Snapshots/ReactivePropertyAnalyzerTests.HandlesGenericsFixTest.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGenerator.Tests/Snapshots/ReactivePropertyAnalyzerTests.HandlesGenericsFixTest.verified.txt -------------------------------------------------------------------------------- /ReactiveGenerator.Tests/Snapshots/ReactivePropertyAnalyzerTests.MixedPropertyTypesFixTest.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGenerator.Tests/Snapshots/ReactivePropertyAnalyzerTests.MixedPropertyTypesFixTest.verified.txt -------------------------------------------------------------------------------- /ReactiveGenerator.Tests/Snapshots/ReactivePropertyAnalyzerTests.MultipleClassesFixTest.received.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGenerator.Tests/Snapshots/ReactivePropertyAnalyzerTests.MultipleClassesFixTest.received.txt -------------------------------------------------------------------------------- /ReactiveGenerator.Tests/Snapshots/ReactivePropertyAnalyzerTests.MultipleClassesFixTest.verified.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ReactiveGenerator.Tests/Snapshots/ReactivePropertyAnalyzerTests.MultiplePropertiesDocumentFixTest.received.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGenerator.Tests/Snapshots/ReactivePropertyAnalyzerTests.MultiplePropertiesDocumentFixTest.received.txt -------------------------------------------------------------------------------- /ReactiveGenerator.Tests/Snapshots/ReactivePropertyAnalyzerTests.MultiplePropertiesDocumentFixTest.verified.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ReactiveGenerator.Tests/Snapshots/ReactivePropertyAnalyzerTests.MultipleReactivePropertiesTest.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGenerator.Tests/Snapshots/ReactivePropertyAnalyzerTests.MultipleReactivePropertiesTest.verified.txt -------------------------------------------------------------------------------- /ReactiveGenerator.Tests/Snapshots/ReactivePropertyAnalyzerTests.NonReactiveObjectShouldNotTriggerAnalyzer.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGenerator.Tests/Snapshots/ReactivePropertyAnalyzerTests.NonReactiveObjectShouldNotTriggerAnalyzer.verified.txt -------------------------------------------------------------------------------- /ReactiveGenerator.Tests/Snapshots/ReactivePropertyAnalyzerTests.NullablePropertiesTest.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGenerator.Tests/Snapshots/ReactivePropertyAnalyzerTests.NullablePropertiesTest.verified.txt -------------------------------------------------------------------------------- /ReactiveGenerator.Tests/Snapshots/ReactivePropertyAnalyzerTests.OnlyConvertsReactiveObjectsFixTest.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGenerator.Tests/Snapshots/ReactivePropertyAnalyzerTests.OnlyConvertsReactiveObjectsFixTest.verified.txt -------------------------------------------------------------------------------- /ReactiveGenerator.Tests/Snapshots/ReactivePropertyAnalyzerTests.PreservesExistingReactivesFixTest.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGenerator.Tests/Snapshots/ReactivePropertyAnalyzerTests.PreservesExistingReactivesFixTest.verified.txt -------------------------------------------------------------------------------- /ReactiveGenerator.Tests/Snapshots/ReactivePropertyAnalyzerTests.ProjectWideFixTest.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGenerator.Tests/Snapshots/ReactivePropertyAnalyzerTests.ProjectWideFixTest.verified.txt -------------------------------------------------------------------------------- /ReactiveGenerator.Tests/Snapshots/ReactivePropertyAnalyzerTests.PropertyWithoutSetterShouldNotTriggerAnalyzer.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGenerator.Tests/Snapshots/ReactivePropertyAnalyzerTests.PropertyWithoutSetterShouldNotTriggerAnalyzer.verified.txt -------------------------------------------------------------------------------- /ReactiveGenerator.Tests/Snapshots/ReactivePropertyAnalyzerTests.SimpleReactivePropertyTest.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGenerator.Tests/Snapshots/ReactivePropertyAnalyzerTests.SimpleReactivePropertyTest.verified.txt -------------------------------------------------------------------------------- /ReactiveGenerator.Tests/Snapshots/ReactivePropertyAnalyzerTests.SinglePropertyFixTest.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGenerator.Tests/Snapshots/ReactivePropertyAnalyzerTests.SinglePropertyFixTest.verified.txt -------------------------------------------------------------------------------- /ReactiveGenerator.Tests/Snapshots/ReactivePropertyAnalyzerTests.SkipsPropertiesWithoutRaiseAndSetFixTest.received.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGenerator.Tests/Snapshots/ReactivePropertyAnalyzerTests.SkipsPropertiesWithoutRaiseAndSetFixTest.received.txt -------------------------------------------------------------------------------- /ReactiveGenerator.Tests/Snapshots/ReactivePropertyAnalyzerTests.SkipsPropertiesWithoutRaiseAndSetFixTest.verified.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ReactiveGenerator.Tests/Snapshots/ReactivePropertyAnalyzerTests.SolutionWideFixTest.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGenerator.Tests/Snapshots/ReactivePropertyAnalyzerTests.SolutionWideFixTest.verified.txt -------------------------------------------------------------------------------- /ReactiveGenerator.Tests/Snapshots/UseBackingFieldsConfigurationTests.UseBackingFields_BothFormats_BothTrue.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGenerator.Tests/Snapshots/UseBackingFieldsConfigurationTests.UseBackingFields_BothFormats_BothTrue.verified.txt -------------------------------------------------------------------------------- /ReactiveGenerator.Tests/Snapshots/UseBackingFieldsConfigurationTests.UseBackingFields_BothFormats_NewTakesPrecedence.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGenerator.Tests/Snapshots/UseBackingFieldsConfigurationTests.UseBackingFields_BothFormats_NewTakesPrecedence.verified.txt -------------------------------------------------------------------------------- /ReactiveGenerator.Tests/Snapshots/UseBackingFieldsConfigurationTests.UseBackingFields_CrossAssembly_LegacyFormat.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGenerator.Tests/Snapshots/UseBackingFieldsConfigurationTests.UseBackingFields_CrossAssembly_LegacyFormat.verified.txt -------------------------------------------------------------------------------- /ReactiveGenerator.Tests/Snapshots/UseBackingFieldsConfigurationTests.UseBackingFields_CrossAssembly_NewFormat.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGenerator.Tests/Snapshots/UseBackingFieldsConfigurationTests.UseBackingFields_CrossAssembly_NewFormat.verified.txt -------------------------------------------------------------------------------- /ReactiveGenerator.Tests/Snapshots/UseBackingFieldsConfigurationTests.UseBackingFields_EmptyValue_DefaultsToFalse.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGenerator.Tests/Snapshots/UseBackingFieldsConfigurationTests.UseBackingFields_EmptyValue_DefaultsToFalse.verified.txt -------------------------------------------------------------------------------- /ReactiveGenerator.Tests/Snapshots/UseBackingFieldsConfigurationTests.UseBackingFields_InvalidValue_DefaultsToFalse.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGenerator.Tests/Snapshots/UseBackingFieldsConfigurationTests.UseBackingFields_InvalidValue_DefaultsToFalse.verified.txt -------------------------------------------------------------------------------- /ReactiveGenerator.Tests/Snapshots/UseBackingFieldsConfigurationTests.UseBackingFields_LegacyFormat.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGenerator.Tests/Snapshots/UseBackingFieldsConfigurationTests.UseBackingFields_LegacyFormat.verified.txt -------------------------------------------------------------------------------- /ReactiveGenerator.Tests/Snapshots/UseBackingFieldsConfigurationTests.UseBackingFields_NewFormat.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGenerator.Tests/Snapshots/UseBackingFieldsConfigurationTests.UseBackingFields_NewFormat.verified.txt -------------------------------------------------------------------------------- /ReactiveGenerator.Tests/Snapshots/UseBackingFieldsConfigurationTests.UseBackingFields_NoConfig_DefaultsToFalse.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGenerator.Tests/Snapshots/UseBackingFieldsConfigurationTests.UseBackingFields_NoConfig_DefaultsToFalse.verified.txt -------------------------------------------------------------------------------- /ReactiveGenerator.Tests/Snapshots/UseBackingFieldsConfigurationTests.UseBackingFields_WithComplexProperties.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGenerator.Tests/Snapshots/UseBackingFieldsConfigurationTests.UseBackingFields_WithComplexProperties.verified.txt -------------------------------------------------------------------------------- /ReactiveGenerator.Tests/Snapshots/UseBackingFieldsConfigurationTests.UseBackingFields_WithGenericClass.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGenerator.Tests/Snapshots/UseBackingFieldsConfigurationTests.UseBackingFields_WithGenericClass.verified.txt -------------------------------------------------------------------------------- /ReactiveGenerator.Tests/Snapshots/UseBackingFieldsConfigurationTests.UseBackingFields_WithInheritance.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGenerator.Tests/Snapshots/UseBackingFieldsConfigurationTests.UseBackingFields_WithInheritance.verified.txt -------------------------------------------------------------------------------- /ReactiveGenerator.Tests/Snapshots/UseBackingFieldsConfigurationTests.UseBackingFields_WithNestedClasses.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGenerator.Tests/Snapshots/UseBackingFieldsConfigurationTests.UseBackingFields_WithNestedClasses.verified.txt -------------------------------------------------------------------------------- /ReactiveGenerator.Tests/Snapshots/UseBackingFieldsConfigurationTests.UseBackingFields_WithOverrideProperties.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGenerator.Tests/Snapshots/UseBackingFieldsConfigurationTests.UseBackingFields_WithOverrideProperties.verified.txt -------------------------------------------------------------------------------- /ReactiveGenerator.Tests/Snapshots/UseBackingFieldsConfigurationTests.UseBackingFields_WithReactiveObjectInheritance.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGenerator.Tests/Snapshots/UseBackingFieldsConfigurationTests.UseBackingFields_WithReactiveObjectInheritance.verified.txt -------------------------------------------------------------------------------- /ReactiveGenerator.Tests/Snapshots/WhenAnyValueGeneratorTests.ClassInheritingFromReactiveObject.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGenerator.Tests/Snapshots/WhenAnyValueGeneratorTests.ClassInheritingFromReactiveObject.verified.txt -------------------------------------------------------------------------------- /ReactiveGenerator.Tests/Snapshots/WhenAnyValueGeneratorTests.ClassWithComplexPropertyTypes.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGenerator.Tests/Snapshots/WhenAnyValueGeneratorTests.ClassWithComplexPropertyTypes.verified.txt -------------------------------------------------------------------------------- /ReactiveGenerator.Tests/Snapshots/WhenAnyValueGeneratorTests.ClassWithDifferentAccessibilities.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGenerator.Tests/Snapshots/WhenAnyValueGeneratorTests.ClassWithDifferentAccessibilities.verified.txt -------------------------------------------------------------------------------- /ReactiveGenerator.Tests/Snapshots/WhenAnyValueGeneratorTests.ClassWithMixedReactiveAttributes.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGenerator.Tests/Snapshots/WhenAnyValueGeneratorTests.ClassWithMixedReactiveAttributes.verified.txt -------------------------------------------------------------------------------- /ReactiveGenerator.Tests/Snapshots/WhenAnyValueGeneratorTests.ClassWithNestedGenerics.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGenerator.Tests/Snapshots/WhenAnyValueGeneratorTests.ClassWithNestedGenerics.verified.txt -------------------------------------------------------------------------------- /ReactiveGenerator.Tests/Snapshots/WhenAnyValueGeneratorTests.ClassWithNullableProperties.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGenerator.Tests/Snapshots/WhenAnyValueGeneratorTests.ClassWithNullableProperties.verified.txt -------------------------------------------------------------------------------- /ReactiveGenerator.Tests/Snapshots/WhenAnyValueGeneratorTests.ClassWithPropertyLevelReactiveAttribute.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGenerator.Tests/Snapshots/WhenAnyValueGeneratorTests.ClassWithPropertyLevelReactiveAttribute.verified.txt -------------------------------------------------------------------------------- /ReactiveGenerator.Tests/Snapshots/WhenAnyValueGeneratorTests.CrossAssemblyInheritanceTest.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGenerator.Tests/Snapshots/WhenAnyValueGeneratorTests.CrossAssemblyInheritanceTest.verified.txt -------------------------------------------------------------------------------- /ReactiveGenerator.Tests/Snapshots/WhenAnyValueGeneratorTests.GenericClassWithConstraints.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGenerator.Tests/Snapshots/WhenAnyValueGeneratorTests.GenericClassWithConstraints.verified.txt -------------------------------------------------------------------------------- /ReactiveGenerator.Tests/Snapshots/WhenAnyValueGeneratorTests.GenericInheritanceWithReactiveAttribute.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGenerator.Tests/Snapshots/WhenAnyValueGeneratorTests.GenericInheritanceWithReactiveAttribute.verified.txt -------------------------------------------------------------------------------- /ReactiveGenerator.Tests/Snapshots/WhenAnyValueGeneratorTests.InheritedReactiveAttribute.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGenerator.Tests/Snapshots/WhenAnyValueGeneratorTests.InheritedReactiveAttribute.verified.txt -------------------------------------------------------------------------------- /ReactiveGenerator.Tests/Snapshots/WhenAnyValueGeneratorTests.InterfaceImplementationWithReactiveAttribute.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGenerator.Tests/Snapshots/WhenAnyValueGeneratorTests.InterfaceImplementationWithReactiveAttribute.verified.txt -------------------------------------------------------------------------------- /ReactiveGenerator.Tests/Snapshots/WhenAnyValueGeneratorTests.MixedPropertyAndClassLevelReactiveInheritance.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGenerator.Tests/Snapshots/WhenAnyValueGeneratorTests.MixedPropertyAndClassLevelReactiveInheritance.verified.txt -------------------------------------------------------------------------------- /ReactiveGenerator.Tests/Snapshots/WhenAnyValueGeneratorTests.MultiLevelInheritanceWithMixedReactiveAttributes.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGenerator.Tests/Snapshots/WhenAnyValueGeneratorTests.MultiLevelInheritanceWithMixedReactiveAttributes.verified.txt -------------------------------------------------------------------------------- /ReactiveGenerator.Tests/Snapshots/WhenAnyValueGeneratorTests.MultipleClassesInDifferentNamespaces.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGenerator.Tests/Snapshots/WhenAnyValueGeneratorTests.MultipleClassesInDifferentNamespaces.verified.txt -------------------------------------------------------------------------------- /ReactiveGenerator.Tests/Snapshots/WhenAnyValueGeneratorTests.MultipleClassesWithInheritance.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGenerator.Tests/Snapshots/WhenAnyValueGeneratorTests.MultipleClassesWithInheritance.verified.txt -------------------------------------------------------------------------------- /ReactiveGenerator.Tests/Snapshots/WhenAnyValueGeneratorTests.NestedClassWithReactiveProperties.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGenerator.Tests/Snapshots/WhenAnyValueGeneratorTests.NestedClassWithReactiveProperties.verified.txt -------------------------------------------------------------------------------- /ReactiveGenerator.Tests/Snapshots/WhenAnyValueGeneratorTests.NestedInheritanceWithReactiveAttribute.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGenerator.Tests/Snapshots/WhenAnyValueGeneratorTests.NestedInheritanceWithReactiveAttribute.verified.txt -------------------------------------------------------------------------------- /ReactiveGenerator.Tests/Snapshots/WhenAnyValueGeneratorTests.SimpleClassWithReactiveAttribute.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGenerator.Tests/Snapshots/WhenAnyValueGeneratorTests.SimpleClassWithReactiveAttribute.verified.txt -------------------------------------------------------------------------------- /ReactiveGenerator.Tests/SourceGeneratorTestHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGenerator.Tests/SourceGeneratorTestHelper.cs -------------------------------------------------------------------------------- /ReactiveGenerator.Tests/WhenAnyValueGenerator/WhenAnyValueGeneratorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGenerator.Tests/WhenAnyValueGenerator/WhenAnyValueGeneratorTests.cs -------------------------------------------------------------------------------- /ReactiveGenerator.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGenerator.sln -------------------------------------------------------------------------------- /ReactiveGenerator/IsExternalInit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGenerator/IsExternalInit.cs -------------------------------------------------------------------------------- /ReactiveGenerator/ObservableAsPropertyHelperGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGenerator/ObservableAsPropertyHelperGenerator.cs -------------------------------------------------------------------------------- /ReactiveGenerator/ReactiveGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGenerator/ReactiveGenerator.cs -------------------------------------------------------------------------------- /ReactiveGenerator/ReactiveGenerator.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGenerator/ReactiveGenerator.csproj -------------------------------------------------------------------------------- /ReactiveGenerator/ReactivePropertyAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGenerator/ReactivePropertyAnalyzer.cs -------------------------------------------------------------------------------- /ReactiveGenerator/ReactivePropertyCodeFixProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGenerator/ReactivePropertyCodeFixProvider.cs -------------------------------------------------------------------------------- /ReactiveGenerator/TypeHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGenerator/TypeHelper.cs -------------------------------------------------------------------------------- /ReactiveGenerator/WhenAnyValueGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGenerator/WhenAnyValueGenerator.cs -------------------------------------------------------------------------------- /ReactiveGenerator/build/ReactiveGenerator.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGenerator/build/ReactiveGenerator.props -------------------------------------------------------------------------------- /ReactiveGeneratorDemo/App.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGeneratorDemo/App.axaml -------------------------------------------------------------------------------- /ReactiveGeneratorDemo/App.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGeneratorDemo/App.axaml.cs -------------------------------------------------------------------------------- /ReactiveGeneratorDemo/MainWindow.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGeneratorDemo/MainWindow.axaml -------------------------------------------------------------------------------- /ReactiveGeneratorDemo/MainWindow.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGeneratorDemo/MainWindow.axaml.cs -------------------------------------------------------------------------------- /ReactiveGeneratorDemo/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGeneratorDemo/Program.cs -------------------------------------------------------------------------------- /ReactiveGeneratorDemo/ReactiveGeneratorDemo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGeneratorDemo/ReactiveGeneratorDemo.csproj -------------------------------------------------------------------------------- /ReactiveGeneratorDemo/ViewModels/Advanced.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGeneratorDemo/ViewModels/Advanced.cs -------------------------------------------------------------------------------- /ReactiveGeneratorDemo/ViewModels/Car.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGeneratorDemo/ViewModels/Car.cs -------------------------------------------------------------------------------- /ReactiveGeneratorDemo/ViewModels/MainViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGeneratorDemo/ViewModels/MainViewModel.cs -------------------------------------------------------------------------------- /ReactiveGeneratorDemo/ViewModels/NullableGenericsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGeneratorDemo/ViewModels/NullableGenericsTest.cs -------------------------------------------------------------------------------- /ReactiveGeneratorDemo/ViewModels/NullableTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGeneratorDemo/ViewModels/NullableTest.cs -------------------------------------------------------------------------------- /ReactiveGeneratorDemo/ViewModels/OaphViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGeneratorDemo/ViewModels/OaphViewModel.cs -------------------------------------------------------------------------------- /ReactiveGeneratorDemo/ViewModels/Person.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGeneratorDemo/ViewModels/Person.cs -------------------------------------------------------------------------------- /ReactiveGeneratorDemo/ViewModels/Shape.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGeneratorDemo/ViewModels/Shape.cs -------------------------------------------------------------------------------- /ReactiveGeneratorDemo/ViewModels/Student.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGeneratorDemo/ViewModels/Student.cs -------------------------------------------------------------------------------- /ReactiveGeneratorDemo/ViewModels/Teacher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGeneratorDemo/ViewModels/Teacher.cs -------------------------------------------------------------------------------- /ReactiveGeneratorDemo/ViewModels/Test.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGeneratorDemo/ViewModels/Test.cs -------------------------------------------------------------------------------- /ReactiveGeneratorDemo/ViewModels/UsedCar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGeneratorDemo/ViewModels/UsedCar.cs -------------------------------------------------------------------------------- /ReactiveGeneratorDemo/ViewModels/ValidatingViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGeneratorDemo/ViewModels/ValidatingViewModel.cs -------------------------------------------------------------------------------- /ReactiveGeneratorDemo/ViewModels/ViewModelBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGeneratorDemo/ViewModels/ViewModelBase.cs -------------------------------------------------------------------------------- /ReactiveGeneratorDemo/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/ReactiveGeneratorDemo/app.manifest -------------------------------------------------------------------------------- /global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/ReactiveGenerator/HEAD/global.json --------------------------------------------------------------------------------