├── .github ├── ISSUE_TEMPLATE │ └── bug-report.yaml ├── dependabot.yml └── workflows │ ├── auto-merge.yml │ ├── main.yml │ └── pull-request.yml ├── .gitignore ├── DependencyPropertyGenerator.sln ├── DependencyPropertyGenerator.sln.DotSettings ├── LICENSE ├── README.md ├── assets └── nuget_icon.png ├── global.json └── src ├── Directory.Build.props ├── Directory.Packages.props ├── key.snk ├── libs ├── DependencyPropertyGenerator.Attributes │ ├── AddOwnerAttribute.cs │ ├── AttachedDependencyPropertyAttribute.cs │ ├── DefaultBindingMode.cs │ ├── DependencyPropertyAttribute.cs │ ├── DependencyPropertyGenerator.Attributes.csproj │ ├── Localizability.cs │ ├── OverrideMetadataAttribute.cs │ ├── RoutedEventAttribute.cs │ ├── RoutedEventStrategy.cs │ ├── SourceTrigger.cs │ └── WeakEventAttribute.cs ├── DependencyPropertyGenerator │ ├── DependencyPropertyGenerator.csproj │ ├── DependencyPropertyGenerator.props │ ├── Generators │ │ ├── AddOwnerGenerator.cs │ │ ├── AttachedDependencyPropertyGenerator.cs │ │ ├── DependencyPropertyGenerator.cs │ │ ├── OverrideMetadataGenerator.cs │ │ ├── PrepareData.cs │ │ ├── RoutedEventGenerator.cs │ │ ├── StaticConstructorGenerator.cs │ │ └── WeakEventGenerator.cs │ ├── Models │ │ ├── ClassData.cs │ │ ├── DependencyPropertyData.cs │ │ └── EventData.cs │ └── Sources │ │ ├── Sources.AddOwner.cs │ │ ├── Sources.AttachedDependencyProperty.cs │ │ ├── Sources.Attributes.cs │ │ ├── Sources.Callbacks.cs │ │ ├── Sources.DependencyProperty.cs │ │ ├── Sources.Helpers.cs │ │ ├── Sources.OverrideMetadata.cs │ │ ├── Sources.RoutedEvent.cs │ │ ├── Sources.StaticConstructor.cs │ │ ├── Sources.WeakEvent.cs │ │ └── Sources.XmlDocumentation.cs └── Directory.Build.props └── tests ├── DependencyPropertyGenerator.IntegrationTests ├── DependencyPropertyGenerator.IntegrationTests.csproj ├── DependencyPropertyGeneratorTests.cs └── MainWindow.cs └── DependencyPropertyGenerator.SnapshotTests ├── DependencyPropertyGenerator.SnapshotTests.csproj ├── ModuleInitializer.cs ├── Snapshots ├── AddOwner │ ├── Avalonia │ │ ├── Tests.AddOwner_Diagnostics.verified.txt │ │ ├── _#AddOwnerAttribute.g.verified.cs │ │ ├── _#DefaultBindingMode.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.UnrelatedStateControl.AddOwner.Background.g.verified.cs │ │ ├── _#Localizability.g.verified.cs │ │ └── _#SourceTrigger.g.verified.cs │ ├── Maui │ │ ├── Tests.AddOwner_Diagnostics.verified.txt │ │ ├── _#AddOwnerAttribute.g.verified.cs │ │ ├── _#DefaultBindingMode.g.verified.cs │ │ ├── _#Localizability.g.verified.cs │ │ └── _#SourceTrigger.g.verified.cs │ ├── Uno │ │ ├── Tests.AddOwner_Diagnostics.verified.txt │ │ ├── _#AddOwnerAttribute.g.verified.cs │ │ ├── _#DefaultBindingMode.g.verified.cs │ │ ├── _#Localizability.g.verified.cs │ │ └── _#SourceTrigger.g.verified.cs │ ├── UnoWinUi │ │ ├── Tests.AddOwner_Diagnostics.verified.txt │ │ ├── _#AddOwnerAttribute.g.verified.cs │ │ ├── _#DefaultBindingMode.g.verified.cs │ │ ├── _#Localizability.g.verified.cs │ │ └── _#SourceTrigger.g.verified.cs │ └── Wpf │ │ ├── Tests.AddOwner_Diagnostics.verified.txt │ │ ├── _#AddOwnerAttribute.g.verified.cs │ │ ├── _#DefaultBindingMode.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.UnrelatedStateControl.AddOwner.Background.g.verified.cs │ │ ├── _#Localizability.g.verified.cs │ │ └── _#SourceTrigger.g.verified.cs ├── AddOwner2 │ ├── Avalonia │ │ ├── Tests.AddOwner2_Diagnostics.verified.txt │ │ ├── _#AddOwnerAttribute.g.verified.cs │ │ ├── _#DefaultBindingMode.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.UnrelatedStateControl.AddOwner.Text.g.verified.cs │ │ ├── _#Localizability.g.verified.cs │ │ └── _#SourceTrigger.g.verified.cs │ ├── Maui │ │ ├── Tests.AddOwner2_Diagnostics.verified.txt │ │ ├── _#AddOwnerAttribute.g.verified.cs │ │ ├── _#DefaultBindingMode.g.verified.cs │ │ ├── _#Localizability.g.verified.cs │ │ └── _#SourceTrigger.g.verified.cs │ ├── Uno │ │ ├── Tests.AddOwner2_Diagnostics.verified.txt │ │ ├── _#AddOwnerAttribute.g.verified.cs │ │ ├── _#DefaultBindingMode.g.verified.cs │ │ ├── _#Localizability.g.verified.cs │ │ └── _#SourceTrigger.g.verified.cs │ ├── UnoWinUi │ │ ├── Tests.AddOwner2_Diagnostics.verified.txt │ │ ├── _#AddOwnerAttribute.g.verified.cs │ │ ├── _#DefaultBindingMode.g.verified.cs │ │ ├── _#Localizability.g.verified.cs │ │ └── _#SourceTrigger.g.verified.cs │ └── Wpf │ │ ├── Tests.AddOwner2_Diagnostics.verified.txt │ │ ├── _#AddOwnerAttribute.g.verified.cs │ │ ├── _#DefaultBindingMode.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.UnrelatedStateControl.AddOwner.Text.g.verified.cs │ │ ├── _#Localizability.g.verified.cs │ │ └── _#SourceTrigger.g.verified.cs ├── AttachedPropertyWithoutSecondType │ ├── Avalonia │ │ ├── Tests.AttachedPropertyWithoutSecondType_Diagnostics.verified.txt │ │ ├── _#AttachedDependencyPropertyAttribute.g.verified.cs │ │ ├── _#DefaultBindingMode.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.GridExtensions.AttachedProperties.SomeProperty.g.verified.cs │ │ ├── _#Localizability.g.verified.cs │ │ └── _#SourceTrigger.g.verified.cs │ ├── Maui │ │ ├── Tests.AttachedPropertyWithoutSecondType_Diagnostics.verified.txt │ │ ├── _#AttachedDependencyPropertyAttribute.g.verified.cs │ │ ├── _#DefaultBindingMode.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.GridExtensions.AttachedProperties.SomeProperty.g.verified.cs │ │ ├── _#Localizability.g.verified.cs │ │ └── _#SourceTrigger.g.verified.cs │ ├── Uno │ │ ├── Tests.AttachedPropertyWithoutSecondType_Diagnostics.verified.txt │ │ ├── _#AttachedDependencyPropertyAttribute.g.verified.cs │ │ ├── _#DefaultBindingMode.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.GridExtensions.AttachedProperties.SomeProperty.g.verified.cs │ │ ├── _#Localizability.g.verified.cs │ │ └── _#SourceTrigger.g.verified.cs │ ├── UnoWinUi │ │ ├── Tests.AttachedPropertyWithoutSecondType_Diagnostics.verified.txt │ │ ├── _#AttachedDependencyPropertyAttribute.g.verified.cs │ │ ├── _#DefaultBindingMode.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.GridExtensions.AttachedProperties.SomeProperty.g.verified.cs │ │ ├── _#Localizability.g.verified.cs │ │ └── _#SourceTrigger.g.verified.cs │ └── Wpf │ │ ├── Tests.AttachedPropertyWithoutSecondType_Diagnostics.verified.txt │ │ ├── _#AttachedDependencyPropertyAttribute.g.verified.cs │ │ ├── _#DefaultBindingMode.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.GridExtensions.AttachedProperties.SomeProperty.g.verified.cs │ │ ├── _#Localizability.g.verified.cs │ │ └── _#SourceTrigger.g.verified.cs ├── AttachedReadOnlyProperty │ ├── Avalonia │ │ ├── Tests.AttachedReadOnlyProperty_Diagnostics.verified.txt │ │ ├── _#AttachedDependencyPropertyAttribute.g.verified.cs │ │ ├── _#DefaultBindingMode.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.GridExtensions.AttachedProperties.AttachedReadOnlyProperty.g.verified.cs │ │ ├── _#Localizability.g.verified.cs │ │ └── _#SourceTrigger.g.verified.cs │ ├── Maui │ │ ├── Tests.AttachedReadOnlyProperty_Diagnostics.verified.txt │ │ ├── _#AttachedDependencyPropertyAttribute.g.verified.cs │ │ ├── _#DefaultBindingMode.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.GridExtensions.AttachedProperties.AttachedReadOnlyProperty.g.verified.cs │ │ ├── _#Localizability.g.verified.cs │ │ └── _#SourceTrigger.g.verified.cs │ ├── Uno │ │ ├── Tests.AttachedReadOnlyProperty_Diagnostics.verified.txt │ │ ├── _#AttachedDependencyPropertyAttribute.g.verified.cs │ │ ├── _#DefaultBindingMode.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.GridExtensions.AttachedProperties.AttachedReadOnlyProperty.g.verified.cs │ │ ├── _#Localizability.g.verified.cs │ │ └── _#SourceTrigger.g.verified.cs │ ├── UnoWinUi │ │ ├── Tests.AttachedReadOnlyProperty_Diagnostics.verified.txt │ │ ├── _#AttachedDependencyPropertyAttribute.g.verified.cs │ │ ├── _#DefaultBindingMode.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.GridExtensions.AttachedProperties.AttachedReadOnlyProperty.g.verified.cs │ │ ├── _#Localizability.g.verified.cs │ │ └── _#SourceTrigger.g.verified.cs │ └── Wpf │ │ ├── Tests.AttachedReadOnlyProperty_Diagnostics.verified.txt │ │ ├── _#AttachedDependencyPropertyAttribute.g.verified.cs │ │ ├── _#DefaultBindingMode.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.GridExtensions.AttachedProperties.AttachedReadOnlyProperty.g.verified.cs │ │ ├── _#Localizability.g.verified.cs │ │ └── _#SourceTrigger.g.verified.cs ├── AttachedRoutedEvent │ ├── Avalonia │ │ ├── Tests.AttachedRoutedEvent_Diagnostics.verified.txt │ │ ├── _#RoutedEventAttribute.g.verified.cs │ │ └── _#RoutedEventStrategy.g.verified.cs │ ├── Maui │ │ ├── Tests.AttachedRoutedEvent_Diagnostics.verified.txt │ │ ├── _#RoutedEventAttribute.g.verified.cs │ │ └── _#RoutedEventStrategy.g.verified.cs │ ├── Uno │ │ ├── Tests.AttachedRoutedEvent_Diagnostics.verified.txt │ │ ├── _#RoutedEventAttribute.g.verified.cs │ │ └── _#RoutedEventStrategy.g.verified.cs │ ├── UnoWinUi │ │ ├── Tests.AttachedRoutedEvent_Diagnostics.verified.txt │ │ ├── _#RoutedEventAttribute.g.verified.cs │ │ └── _#RoutedEventStrategy.g.verified.cs │ └── Wpf │ │ ├── Tests.AttachedRoutedEvent_Diagnostics.verified.txt │ │ ├── _#H.Generators.IntegrationTests.MyControl.AttachedEvents.TrayLeftMouseDown.g.verified.cs │ │ ├── _#RoutedEventAttribute.g.verified.cs │ │ └── _#RoutedEventStrategy.g.verified.cs ├── Attributes │ ├── Avalonia │ │ ├── Tests.Attributes_Diagnostics.verified.txt │ │ ├── _#DefaultBindingMode.g.verified.cs │ │ ├── _#DependencyPropertyAttribute.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.MyControl.Properties.AttributedProperty.g.verified.cs │ │ ├── _#Localizability.g.verified.cs │ │ └── _#SourceTrigger.g.verified.cs │ ├── Maui │ │ ├── Tests.Attributes_Diagnostics.verified.txt │ │ ├── _#DefaultBindingMode.g.verified.cs │ │ ├── _#DependencyPropertyAttribute.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.MyGrid.Properties.AttributedProperty.g.verified.cs │ │ ├── _#Localizability.g.verified.cs │ │ └── _#SourceTrigger.g.verified.cs │ ├── Uno │ │ ├── Tests.Attributes_Diagnostics.verified.txt │ │ ├── _#DefaultBindingMode.g.verified.cs │ │ ├── _#DependencyPropertyAttribute.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.MyControl.Properties.AttributedProperty.g.verified.cs │ │ ├── _#Localizability.g.verified.cs │ │ └── _#SourceTrigger.g.verified.cs │ ├── UnoWinUi │ │ ├── Tests.Attributes_Diagnostics.verified.txt │ │ ├── _#DefaultBindingMode.g.verified.cs │ │ ├── _#DependencyPropertyAttribute.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.MyControl.Properties.AttributedProperty.g.verified.cs │ │ ├── _#Localizability.g.verified.cs │ │ └── _#SourceTrigger.g.verified.cs │ └── Wpf │ │ ├── Tests.Attributes_Diagnostics.verified.txt │ │ ├── _#DefaultBindingMode.g.verified.cs │ │ ├── _#DependencyPropertyAttribute.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.MyControl.Properties.AttributedProperty.g.verified.cs │ │ ├── _#Localizability.g.verified.cs │ │ └── _#SourceTrigger.g.verified.cs ├── BindEvent │ ├── Avalonia │ │ ├── Tests.BindEvent_Diagnostics.verified.txt │ │ ├── _#AttachedDependencyPropertyAttribute.g.verified.cs │ │ ├── _#DefaultBindingMode.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.UIElementExtensions.AttachedProperties.BindEventProperty.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.UIElementExtensions.StaticConstructor.g.verified.cs │ │ ├── _#Localizability.g.verified.cs │ │ └── _#SourceTrigger.g.verified.cs │ ├── Maui │ │ ├── Tests.BindEvent_Diagnostics.verified.txt │ │ ├── _#AttachedDependencyPropertyAttribute.g.verified.cs │ │ ├── _#DefaultBindingMode.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.VisualElementExtensions.AttachedProperties.BindEventProperty.g.verified.cs │ │ ├── _#Localizability.g.verified.cs │ │ └── _#SourceTrigger.g.verified.cs │ ├── Uno │ │ ├── Tests.BindEvent_Diagnostics.verified.txt │ │ ├── _#AttachedDependencyPropertyAttribute.g.verified.cs │ │ ├── _#DefaultBindingMode.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.UIElementExtensions.AttachedProperties.BindEventProperty.g.verified.cs │ │ ├── _#Localizability.g.verified.cs │ │ └── _#SourceTrigger.g.verified.cs │ ├── UnoWinUi │ │ ├── Tests.BindEvent_Diagnostics.verified.txt │ │ ├── _#AttachedDependencyPropertyAttribute.g.verified.cs │ │ ├── _#DefaultBindingMode.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.UIElementExtensions.AttachedProperties.BindEventProperty.g.verified.cs │ │ ├── _#Localizability.g.verified.cs │ │ └── _#SourceTrigger.g.verified.cs │ └── Wpf │ │ ├── Tests.BindEvent_Diagnostics.verified.txt │ │ ├── _#AttachedDependencyPropertyAttribute.g.verified.cs │ │ ├── _#DefaultBindingMode.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.UIElementExtensions.AttachedProperties.BindEventProperty.g.verified.cs │ │ ├── _#Localizability.g.verified.cs │ │ └── _#SourceTrigger.g.verified.cs ├── BindEvents │ ├── Avalonia │ │ ├── Tests.BindEvents_Diagnostics.verified.txt │ │ ├── _#DefaultBindingMode.g.verified.cs │ │ ├── _#DependencyPropertyAttribute.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.MyUIElement.Properties.BindEventsProperty.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.MyUIElement.StaticConstructor.g.verified.cs │ │ ├── _#Localizability.g.verified.cs │ │ └── _#SourceTrigger.g.verified.cs │ ├── Maui │ │ ├── Tests.BindEvents_Diagnostics.verified.txt │ │ ├── _#DefaultBindingMode.g.verified.cs │ │ ├── _#DependencyPropertyAttribute.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.MyVisualElement.Properties.BindEventsProperty.g.verified.cs │ │ ├── _#Localizability.g.verified.cs │ │ └── _#SourceTrigger.g.verified.cs │ ├── Uno │ │ ├── Tests.BindEvents_Diagnostics.verified.txt │ │ ├── _#DefaultBindingMode.g.verified.cs │ │ ├── _#DependencyPropertyAttribute.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.MyUIElement.Properties.BindEventsProperty.g.verified.cs │ │ ├── _#Localizability.g.verified.cs │ │ └── _#SourceTrigger.g.verified.cs │ ├── UnoWinUi │ │ ├── Tests.BindEvents_Diagnostics.verified.txt │ │ ├── _#DefaultBindingMode.g.verified.cs │ │ ├── _#DependencyPropertyAttribute.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.MyUIElement.Properties.BindEventsProperty.g.verified.cs │ │ ├── _#Localizability.g.verified.cs │ │ └── _#SourceTrigger.g.verified.cs │ └── Wpf │ │ ├── Tests.BindEvents_Diagnostics.verified.txt │ │ ├── _#DefaultBindingMode.g.verified.cs │ │ ├── _#DependencyPropertyAttribute.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.MyUIElement.Properties.BindEventsProperty.g.verified.cs │ │ ├── _#Localizability.g.verified.cs │ │ └── _#SourceTrigger.g.verified.cs ├── CreateDefaultValueCallback │ ├── Avalonia │ │ ├── Tests.CreateDefaultValueCallback_Diagnostics.verified.txt │ │ ├── _#DefaultBindingMode.g.verified.cs │ │ ├── _#DependencyPropertyAttribute.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.MyGrid.Properties.SomeProperty.g.verified.cs │ │ ├── _#Localizability.g.verified.cs │ │ └── _#SourceTrigger.g.verified.cs │ ├── Maui │ │ ├── Tests.CreateDefaultValueCallback_Diagnostics.verified.txt │ │ ├── _#DefaultBindingMode.g.verified.cs │ │ ├── _#DependencyPropertyAttribute.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.MyGrid.Properties.SomeProperty.g.verified.cs │ │ ├── _#Localizability.g.verified.cs │ │ └── _#SourceTrigger.g.verified.cs │ ├── Uno │ │ ├── Tests.CreateDefaultValueCallback_Diagnostics.verified.txt │ │ ├── _#DefaultBindingMode.g.verified.cs │ │ ├── _#DependencyPropertyAttribute.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.MyGrid.Properties.SomeProperty.g.verified.cs │ │ ├── _#Localizability.g.verified.cs │ │ └── _#SourceTrigger.g.verified.cs │ ├── UnoWinUi │ │ ├── Tests.CreateDefaultValueCallback_Diagnostics.verified.txt │ │ ├── _#DefaultBindingMode.g.verified.cs │ │ ├── _#DependencyPropertyAttribute.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.MyGrid.Properties.SomeProperty.g.verified.cs │ │ ├── _#Localizability.g.verified.cs │ │ └── _#SourceTrigger.g.verified.cs │ └── Wpf │ │ ├── Tests.CreateDefaultValueCallback_Diagnostics.verified.txt │ │ ├── _#DefaultBindingMode.g.verified.cs │ │ ├── _#DependencyPropertyAttribute.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.MyGrid.Properties.SomeProperty.g.verified.cs │ │ ├── _#Localizability.g.verified.cs │ │ └── _#SourceTrigger.g.verified.cs ├── CustomOnChanged │ ├── Avalonia │ │ ├── Tests.CustomOnChanged_Diagnostics.verified.txt │ │ ├── _#DefaultBindingMode.g.verified.cs │ │ ├── _#DependencyPropertyAttribute.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.Generatable.Properties.Text.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.Generatable.StaticConstructor.g.verified.cs │ │ ├── _#Localizability.g.verified.cs │ │ └── _#SourceTrigger.g.verified.cs │ ├── Maui │ │ ├── Tests.CustomOnChanged_Diagnostics.verified.txt │ │ ├── _#DefaultBindingMode.g.verified.cs │ │ ├── _#DependencyPropertyAttribute.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.Generatable.Properties.Text.g.verified.cs │ │ ├── _#Localizability.g.verified.cs │ │ └── _#SourceTrigger.g.verified.cs │ ├── Uno │ │ ├── Tests.CustomOnChanged_Diagnostics.verified.txt │ │ ├── _#DefaultBindingMode.g.verified.cs │ │ ├── _#DependencyPropertyAttribute.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.Generatable.Properties.Text.g.verified.cs │ │ ├── _#Localizability.g.verified.cs │ │ └── _#SourceTrigger.g.verified.cs │ ├── UnoWinUi │ │ ├── Tests.CustomOnChanged_Diagnostics.verified.txt │ │ ├── _#DefaultBindingMode.g.verified.cs │ │ ├── _#DependencyPropertyAttribute.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.Generatable.Properties.Text.g.verified.cs │ │ ├── _#Localizability.g.verified.cs │ │ └── _#SourceTrigger.g.verified.cs │ └── Wpf │ │ ├── Tests.CustomOnChanged_Diagnostics.verified.txt │ │ ├── _#DefaultBindingMode.g.verified.cs │ │ ├── _#DependencyPropertyAttribute.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.Generatable.Properties.Text.g.verified.cs │ │ ├── _#Localizability.g.verified.cs │ │ └── _#SourceTrigger.g.verified.cs ├── CustomOnChangedAttached │ ├── Avalonia │ │ ├── Tests.CustomOnChangedAttached_Diagnostics.verified.txt │ │ ├── _#AttachedDependencyPropertyAttribute.g.verified.cs │ │ ├── _#DefaultBindingMode.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.GridHelpers.AttachedProperties.RowCount.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.GridHelpers.StaticConstructor.g.verified.cs │ │ ├── _#Localizability.g.verified.cs │ │ └── _#SourceTrigger.g.verified.cs │ ├── Maui │ │ ├── Tests.CustomOnChangedAttached_Diagnostics.verified.txt │ │ ├── _#AttachedDependencyPropertyAttribute.g.verified.cs │ │ ├── _#DefaultBindingMode.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.GridHelpers.AttachedProperties.RowCount.g.verified.cs │ │ ├── _#Localizability.g.verified.cs │ │ └── _#SourceTrigger.g.verified.cs │ ├── Uno │ │ ├── Tests.CustomOnChangedAttached_Diagnostics.verified.txt │ │ ├── _#AttachedDependencyPropertyAttribute.g.verified.cs │ │ ├── _#DefaultBindingMode.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.GridHelpers.AttachedProperties.RowCount.g.verified.cs │ │ ├── _#Localizability.g.verified.cs │ │ └── _#SourceTrigger.g.verified.cs │ ├── UnoWinUi │ │ ├── Tests.CustomOnChangedAttached_Diagnostics.verified.txt │ │ ├── _#AttachedDependencyPropertyAttribute.g.verified.cs │ │ ├── _#DefaultBindingMode.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.GridHelpers.AttachedProperties.RowCount.g.verified.cs │ │ ├── _#Localizability.g.verified.cs │ │ └── _#SourceTrigger.g.verified.cs │ └── Wpf │ │ ├── Tests.CustomOnChangedAttached_Diagnostics.verified.txt │ │ ├── _#AttachedDependencyPropertyAttribute.g.verified.cs │ │ ├── _#DefaultBindingMode.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.GridHelpers.AttachedProperties.RowCount.g.verified.cs │ │ ├── _#Localizability.g.verified.cs │ │ └── _#SourceTrigger.g.verified.cs ├── DefaultBindingMode │ ├── Avalonia │ │ ├── Tests.DefaultBindingMode_Diagnostics.verified.txt │ │ ├── _#DefaultBindingMode.g.verified.cs │ │ ├── _#DependencyPropertyAttribute.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.MyGrid.Properties.IsSpinning.g.verified.cs │ │ ├── _#Localizability.g.verified.cs │ │ └── _#SourceTrigger.g.verified.cs │ ├── Maui │ │ ├── Tests.DefaultBindingMode_Diagnostics.verified.txt │ │ ├── _#DefaultBindingMode.g.verified.cs │ │ ├── _#DependencyPropertyAttribute.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.MyGrid.Properties.IsSpinning.g.verified.cs │ │ ├── _#Localizability.g.verified.cs │ │ └── _#SourceTrigger.g.verified.cs │ ├── Uno │ │ ├── Tests.DefaultBindingMode_Diagnostics.verified.txt │ │ ├── _#DefaultBindingMode.g.verified.cs │ │ ├── _#DependencyPropertyAttribute.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.MyGrid.Properties.IsSpinning.g.verified.cs │ │ ├── _#Localizability.g.verified.cs │ │ └── _#SourceTrigger.g.verified.cs │ ├── UnoWinUi │ │ ├── Tests.DefaultBindingMode_Diagnostics.verified.txt │ │ ├── _#DefaultBindingMode.g.verified.cs │ │ ├── _#DependencyPropertyAttribute.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.MyGrid.Properties.IsSpinning.g.verified.cs │ │ ├── _#Localizability.g.verified.cs │ │ └── _#SourceTrigger.g.verified.cs │ └── Wpf │ │ ├── Tests.DefaultBindingMode_Diagnostics.verified.txt │ │ ├── _#DefaultBindingMode.g.verified.cs │ │ ├── _#DependencyPropertyAttribute.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.MyGrid.Properties.IsSpinning.g.verified.cs │ │ ├── _#Localizability.g.verified.cs │ │ └── _#SourceTrigger.g.verified.cs ├── DefaultUpdateSourceTrigger │ ├── Avalonia │ │ ├── Tests.DefaultUpdateSourceTrigger_Diagnostics.verified.txt │ │ ├── _#DefaultBindingMode.g.verified.cs │ │ ├── _#DependencyPropertyAttribute.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.MyControl.Properties.ExplicitUpdateSourceTriggerProperty.g.verified.cs │ │ ├── _#Localizability.g.verified.cs │ │ └── _#SourceTrigger.g.verified.cs │ ├── Maui │ │ ├── Tests.DefaultUpdateSourceTrigger_Diagnostics.verified.txt │ │ ├── _#DefaultBindingMode.g.verified.cs │ │ ├── _#DependencyPropertyAttribute.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.MyGrid.Properties.ExplicitUpdateSourceTriggerProperty.g.verified.cs │ │ ├── _#Localizability.g.verified.cs │ │ └── _#SourceTrigger.g.verified.cs │ ├── Uno │ │ ├── Tests.DefaultUpdateSourceTrigger_Diagnostics.verified.txt │ │ ├── _#DefaultBindingMode.g.verified.cs │ │ ├── _#DependencyPropertyAttribute.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.MyControl.Properties.ExplicitUpdateSourceTriggerProperty.g.verified.cs │ │ ├── _#Localizability.g.verified.cs │ │ └── _#SourceTrigger.g.verified.cs │ ├── UnoWinUi │ │ ├── Tests.DefaultUpdateSourceTrigger_Diagnostics.verified.txt │ │ ├── _#DefaultBindingMode.g.verified.cs │ │ ├── _#DependencyPropertyAttribute.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.MyControl.Properties.ExplicitUpdateSourceTriggerProperty.g.verified.cs │ │ ├── _#Localizability.g.verified.cs │ │ └── _#SourceTrigger.g.verified.cs │ └── Wpf │ │ ├── Tests.DefaultUpdateSourceTrigger_Diagnostics.verified.txt │ │ ├── _#DefaultBindingMode.g.verified.cs │ │ ├── _#DependencyPropertyAttribute.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.MyControl.Properties.ExplicitUpdateSourceTriggerProperty.g.verified.cs │ │ ├── _#Localizability.g.verified.cs │ │ └── _#SourceTrigger.g.verified.cs ├── DescriptionWithCref │ ├── Avalonia │ │ ├── Tests.DescriptionWithCref_Diagnostics.verified.txt │ │ ├── _#DefaultBindingMode.g.verified.cs │ │ ├── _#DependencyPropertyAttribute.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.MyControl.Properties.IsSpinning.g.verified.cs │ │ ├── _#Localizability.g.verified.cs │ │ └── _#SourceTrigger.g.verified.cs │ ├── Maui │ │ ├── Tests.DescriptionWithCref_Diagnostics.verified.txt │ │ ├── _#DefaultBindingMode.g.verified.cs │ │ ├── _#DependencyPropertyAttribute.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.MyGrid.Properties.IsSpinning.g.verified.cs │ │ ├── _#Localizability.g.verified.cs │ │ └── _#SourceTrigger.g.verified.cs │ ├── Uno │ │ ├── Tests.DescriptionWithCref_Diagnostics.verified.txt │ │ ├── _#DefaultBindingMode.g.verified.cs │ │ ├── _#DependencyPropertyAttribute.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.MyControl.Properties.IsSpinning.g.verified.cs │ │ ├── _#Localizability.g.verified.cs │ │ └── _#SourceTrigger.g.verified.cs │ ├── UnoWinUi │ │ ├── Tests.DescriptionWithCref_Diagnostics.verified.txt │ │ ├── _#DefaultBindingMode.g.verified.cs │ │ ├── _#DependencyPropertyAttribute.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.MyControl.Properties.IsSpinning.g.verified.cs │ │ ├── _#Localizability.g.verified.cs │ │ └── _#SourceTrigger.g.verified.cs │ └── Wpf │ │ ├── Tests.DescriptionWithCref_Diagnostics.verified.txt │ │ ├── _#DefaultBindingMode.g.verified.cs │ │ ├── _#DependencyPropertyAttribute.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.MyControl.Properties.IsSpinning.g.verified.cs │ │ ├── _#Localizability.g.verified.cs │ │ └── _#SourceTrigger.g.verified.cs ├── Dictionary │ ├── Avalonia │ │ ├── Tests.Dictionary_Diagnostics.verified.txt │ │ ├── _#DefaultBindingMode.g.verified.cs │ │ ├── _#DependencyPropertyAttribute.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.Generatable.Properties.Headers.g.verified.cs │ │ ├── _#Localizability.g.verified.cs │ │ └── _#SourceTrigger.g.verified.cs │ ├── Maui │ │ ├── Tests.Dictionary_Diagnostics.verified.txt │ │ ├── _#DefaultBindingMode.g.verified.cs │ │ ├── _#DependencyPropertyAttribute.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.Generatable.Properties.Headers.g.verified.cs │ │ ├── _#Localizability.g.verified.cs │ │ └── _#SourceTrigger.g.verified.cs │ ├── Uno │ │ ├── Tests.Dictionary_Diagnostics.verified.txt │ │ ├── _#DefaultBindingMode.g.verified.cs │ │ ├── _#DependencyPropertyAttribute.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.Generatable.Properties.Headers.g.verified.cs │ │ ├── _#Localizability.g.verified.cs │ │ └── _#SourceTrigger.g.verified.cs │ ├── UnoWinUi │ │ ├── Tests.Dictionary_Diagnostics.verified.txt │ │ ├── _#DefaultBindingMode.g.verified.cs │ │ ├── _#DependencyPropertyAttribute.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.Generatable.Properties.Headers.g.verified.cs │ │ ├── _#Localizability.g.verified.cs │ │ └── _#SourceTrigger.g.verified.cs │ └── Wpf │ │ ├── Tests.Dictionary_Diagnostics.verified.txt │ │ ├── _#DefaultBindingMode.g.verified.cs │ │ ├── _#DependencyPropertyAttribute.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.Generatable.Properties.Headers.g.verified.cs │ │ ├── _#Localizability.g.verified.cs │ │ └── _#SourceTrigger.g.verified.cs ├── Direct │ ├── Avalonia │ │ ├── Tests.Direct_Diagnostics.verified.txt │ │ ├── _#DefaultBindingMode.g.verified.cs │ │ ├── _#DependencyPropertyAttribute.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.MyGrid.Properties.IsSpinning.g.verified.cs │ │ ├── _#Localizability.g.verified.cs │ │ └── _#SourceTrigger.g.verified.cs │ ├── Maui │ │ ├── Tests.Direct_Diagnostics.verified.txt │ │ ├── _#DefaultBindingMode.g.verified.cs │ │ ├── _#DependencyPropertyAttribute.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.MyGrid.Properties.IsSpinning.g.verified.cs │ │ ├── _#Localizability.g.verified.cs │ │ └── _#SourceTrigger.g.verified.cs │ ├── Uno │ │ ├── Tests.Direct_Diagnostics.verified.txt │ │ ├── _#DefaultBindingMode.g.verified.cs │ │ ├── _#DependencyPropertyAttribute.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.MyGrid.Properties.IsSpinning.g.verified.cs │ │ ├── _#Localizability.g.verified.cs │ │ └── _#SourceTrigger.g.verified.cs │ ├── UnoWinUi │ │ ├── Tests.Direct_Diagnostics.verified.txt │ │ ├── _#DefaultBindingMode.g.verified.cs │ │ ├── _#DependencyPropertyAttribute.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.MyGrid.Properties.IsSpinning.g.verified.cs │ │ ├── _#Localizability.g.verified.cs │ │ └── _#SourceTrigger.g.verified.cs │ └── Wpf │ │ ├── Tests.Direct_Diagnostics.verified.txt │ │ ├── _#DefaultBindingMode.g.verified.cs │ │ ├── _#DependencyPropertyAttribute.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.MyGrid.Properties.IsSpinning.g.verified.cs │ │ ├── _#Localizability.g.verified.cs │ │ └── _#SourceTrigger.g.verified.cs ├── DirectReadOnly │ ├── Avalonia │ │ ├── Tests.DirectReadOnly_Diagnostics.verified.txt │ │ ├── _#DefaultBindingMode.g.verified.cs │ │ ├── _#DependencyPropertyAttribute.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.MyGrid.Properties.IsSpinning.g.verified.cs │ │ ├── _#Localizability.g.verified.cs │ │ └── _#SourceTrigger.g.verified.cs │ ├── Maui │ │ ├── Tests.DirectReadOnly_Diagnostics.verified.txt │ │ ├── _#DefaultBindingMode.g.verified.cs │ │ ├── _#DependencyPropertyAttribute.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.MyGrid.Properties.IsSpinning.g.verified.cs │ │ ├── _#Localizability.g.verified.cs │ │ └── _#SourceTrigger.g.verified.cs │ ├── Uno │ │ ├── Tests.DirectReadOnly_Diagnostics.verified.txt │ │ ├── _#DefaultBindingMode.g.verified.cs │ │ ├── _#DependencyPropertyAttribute.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.MyGrid.Properties.IsSpinning.g.verified.cs │ │ ├── _#Localizability.g.verified.cs │ │ └── _#SourceTrigger.g.verified.cs │ ├── UnoWinUi │ │ ├── Tests.DirectReadOnly_Diagnostics.verified.txt │ │ ├── _#DefaultBindingMode.g.verified.cs │ │ ├── _#DependencyPropertyAttribute.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.MyGrid.Properties.IsSpinning.g.verified.cs │ │ ├── _#Localizability.g.verified.cs │ │ └── _#SourceTrigger.g.verified.cs │ └── Wpf │ │ ├── Tests.DirectReadOnly_Diagnostics.verified.txt │ │ ├── _#DefaultBindingMode.g.verified.cs │ │ ├── _#DependencyPropertyAttribute.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.MyGrid.Properties.IsSpinning.g.verified.cs │ │ ├── _#Localizability.g.verified.cs │ │ └── _#SourceTrigger.g.verified.cs ├── Enum │ ├── Avalonia │ │ ├── Tests.Enum_Diagnostics.verified.txt │ │ ├── _#AttachedDependencyPropertyAttribute.g.verified.cs │ │ ├── _#DefaultBindingMode.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.TreeViewExtensions.AttachedProperties.Mode.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.TreeViewExtensions.StaticConstructor.g.verified.cs │ │ ├── _#Localizability.g.verified.cs │ │ └── _#SourceTrigger.g.verified.cs │ ├── Maui │ │ ├── Tests.Enum_Diagnostics.verified.txt │ │ ├── _#AttachedDependencyPropertyAttribute.g.verified.cs │ │ ├── _#DefaultBindingMode.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.GridExtensions.AttachedProperties.Mode.g.verified.cs │ │ ├── _#Localizability.g.verified.cs │ │ └── _#SourceTrigger.g.verified.cs │ ├── Uno │ │ ├── Tests.Enum_Diagnostics.verified.txt │ │ ├── _#AttachedDependencyPropertyAttribute.g.verified.cs │ │ ├── _#DefaultBindingMode.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.TreeViewExtensions.AttachedProperties.Mode.g.verified.cs │ │ ├── _#Localizability.g.verified.cs │ │ └── _#SourceTrigger.g.verified.cs │ ├── UnoWinUi │ │ ├── Tests.Enum_Diagnostics.verified.txt │ │ ├── _#AttachedDependencyPropertyAttribute.g.verified.cs │ │ ├── _#DefaultBindingMode.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.TreeViewExtensions.AttachedProperties.Mode.g.verified.cs │ │ ├── _#Localizability.g.verified.cs │ │ └── _#SourceTrigger.g.verified.cs │ └── Wpf │ │ ├── Tests.Enum_Diagnostics.verified.txt │ │ ├── _#AttachedDependencyPropertyAttribute.g.verified.cs │ │ ├── _#DefaultBindingMode.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.TreeViewExtensions.AttachedProperties.Mode.g.verified.cs │ │ ├── _#Localizability.g.verified.cs │ │ └── _#SourceTrigger.g.verified.cs ├── FloatLiterals │ ├── Avalonia │ │ ├── Tests.FloatLiterals_Diagnostics.verified.txt │ │ ├── _#DefaultBindingMode.g.verified.cs │ │ ├── _#DependencyPropertyAttribute.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.MyControl.Properties.FloatProperty.g.verified.cs │ │ ├── _#Localizability.g.verified.cs │ │ └── _#SourceTrigger.g.verified.cs │ ├── Maui │ │ ├── Tests.FloatLiterals_Diagnostics.verified.txt │ │ ├── _#DefaultBindingMode.g.verified.cs │ │ ├── _#DependencyPropertyAttribute.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.MyGrid.Properties.FloatProperty.g.verified.cs │ │ ├── _#Localizability.g.verified.cs │ │ └── _#SourceTrigger.g.verified.cs │ ├── Uno │ │ ├── Tests.FloatLiterals_Diagnostics.verified.txt │ │ ├── _#DefaultBindingMode.g.verified.cs │ │ ├── _#DependencyPropertyAttribute.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.MyControl.Properties.FloatProperty.g.verified.cs │ │ ├── _#Localizability.g.verified.cs │ │ └── _#SourceTrigger.g.verified.cs │ ├── UnoWinUi │ │ ├── Tests.FloatLiterals_Diagnostics.verified.txt │ │ ├── _#DefaultBindingMode.g.verified.cs │ │ ├── _#DependencyPropertyAttribute.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.MyControl.Properties.FloatProperty.g.verified.cs │ │ ├── _#Localizability.g.verified.cs │ │ └── _#SourceTrigger.g.verified.cs │ └── Wpf │ │ ├── Tests.FloatLiterals_Diagnostics.verified.txt │ │ ├── _#DefaultBindingMode.g.verified.cs │ │ ├── _#DependencyPropertyAttribute.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.MyControl.Properties.FloatProperty.g.verified.cs │ │ ├── _#Localizability.g.verified.cs │ │ └── _#SourceTrigger.g.verified.cs ├── InheritClass │ ├── Avalonia │ │ ├── Tests.InheritClass_Diagnostics.verified.txt │ │ ├── _#AttachedDependencyPropertyAttribute.g.verified.cs │ │ ├── _#DefaultBindingMode.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.MyGird.AttachedProperties.MyColumn.g.verified.cs │ │ ├── _#Localizability.g.verified.cs │ │ └── _#SourceTrigger.g.verified.cs │ ├── Maui │ │ ├── Tests.InheritClass_Diagnostics.verified.txt │ │ ├── _#AttachedDependencyPropertyAttribute.g.verified.cs │ │ ├── _#DefaultBindingMode.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.MyGird.AttachedProperties.MyColumn.g.verified.cs │ │ ├── _#Localizability.g.verified.cs │ │ └── _#SourceTrigger.g.verified.cs │ ├── Uno │ │ ├── Tests.InheritClass_Diagnostics.verified.txt │ │ ├── _#AttachedDependencyPropertyAttribute.g.verified.cs │ │ ├── _#DefaultBindingMode.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.MyGird.AttachedProperties.MyColumn.g.verified.cs │ │ ├── _#Localizability.g.verified.cs │ │ └── _#SourceTrigger.g.verified.cs │ ├── UnoWinUi │ │ ├── Tests.InheritClass_Diagnostics.verified.txt │ │ ├── _#AttachedDependencyPropertyAttribute.g.verified.cs │ │ ├── _#DefaultBindingMode.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.MyGird.AttachedProperties.MyColumn.g.verified.cs │ │ ├── _#Localizability.g.verified.cs │ │ └── _#SourceTrigger.g.verified.cs │ └── Wpf │ │ ├── Tests.InheritClass_Diagnostics.verified.txt │ │ ├── _#AttachedDependencyPropertyAttribute.g.verified.cs │ │ ├── _#DefaultBindingMode.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.MyGird.AttachedProperties.MyColumn.g.verified.cs │ │ ├── _#Localizability.g.verified.cs │ │ └── _#SourceTrigger.g.verified.cs ├── MultiTypesInOne │ ├── Avalonia │ │ ├── Tests.MultiTypesInOne_Diagnostics.verified.txt │ │ ├── _#DefaultBindingMode.g.verified.cs │ │ ├── _#DependencyPropertyAttribute.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.AnotherControl.Properties.MyProperty.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.AnotherControl.Properties.MyProperty2.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.AnotherControl.Properties.MyProperty3.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.AnotherControl.StaticConstructor.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.MyControl.Properties.MyProperty.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.MyControl.Properties.MyProperty2.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.MyControl.Properties.MyProperty3.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.MyControl.StaticConstructor.g.verified.cs │ │ ├── _#Localizability.g.verified.cs │ │ └── _#SourceTrigger.g.verified.cs │ ├── Maui │ │ ├── Tests.MultiTypesInOne_Diagnostics.verified.txt │ │ ├── _#DefaultBindingMode.g.verified.cs │ │ ├── _#DependencyPropertyAttribute.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.AnotherControl.Properties.MyProperty.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.AnotherControl.Properties.MyProperty2.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.AnotherControl.Properties.MyProperty3.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.MyGrid.Properties.MyProperty.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.MyGrid.Properties.MyProperty2.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.MyGrid.Properties.MyProperty3.g.verified.cs │ │ ├── _#Localizability.g.verified.cs │ │ └── _#SourceTrigger.g.verified.cs │ ├── Uno │ │ ├── Tests.MultiTypesInOne_Diagnostics.verified.txt │ │ ├── _#DefaultBindingMode.g.verified.cs │ │ ├── _#DependencyPropertyAttribute.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.AnotherControl.Properties.MyProperty.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.AnotherControl.Properties.MyProperty2.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.AnotherControl.Properties.MyProperty3.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.MyControl.Properties.MyProperty.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.MyControl.Properties.MyProperty2.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.MyControl.Properties.MyProperty3.g.verified.cs │ │ ├── _#Localizability.g.verified.cs │ │ └── _#SourceTrigger.g.verified.cs │ ├── UnoWinUi │ │ ├── Tests.MultiTypesInOne_Diagnostics.verified.txt │ │ ├── _#DefaultBindingMode.g.verified.cs │ │ ├── _#DependencyPropertyAttribute.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.AnotherControl.Properties.MyProperty.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.AnotherControl.Properties.MyProperty2.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.AnotherControl.Properties.MyProperty3.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.MyControl.Properties.MyProperty.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.MyControl.Properties.MyProperty2.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.MyControl.Properties.MyProperty3.g.verified.cs │ │ ├── _#Localizability.g.verified.cs │ │ └── _#SourceTrigger.g.verified.cs │ └── Wpf │ │ ├── Tests.MultiTypesInOne_Diagnostics.verified.txt │ │ ├── _#DefaultBindingMode.g.verified.cs │ │ ├── _#DependencyPropertyAttribute.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.AnotherControl.Properties.MyProperty.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.AnotherControl.Properties.MyProperty2.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.AnotherControl.Properties.MyProperty3.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.MyControl.Properties.MyProperty.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.MyControl.Properties.MyProperty2.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.MyControl.Properties.MyProperty3.g.verified.cs │ │ ├── _#Localizability.g.verified.cs │ │ └── _#SourceTrigger.g.verified.cs ├── MultidimensionalArray │ ├── Avalonia │ │ ├── Tests.MultidimensionalArray_Diagnostics.verified.txt │ │ ├── _#DefaultBindingMode.g.verified.cs │ │ ├── _#DependencyPropertyAttribute.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.MyControl.Properties.Values3.g.verified.cs │ │ ├── _#Localizability.g.verified.cs │ │ └── _#SourceTrigger.g.verified.cs │ ├── Maui │ │ ├── Tests.MultidimensionalArray_Diagnostics.verified.txt │ │ ├── _#DefaultBindingMode.g.verified.cs │ │ ├── _#DependencyPropertyAttribute.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.MyGrid.Properties.Values3.g.verified.cs │ │ ├── _#Localizability.g.verified.cs │ │ └── _#SourceTrigger.g.verified.cs │ ├── Uno │ │ ├── Tests.MultidimensionalArray_Diagnostics.verified.txt │ │ ├── _#DefaultBindingMode.g.verified.cs │ │ ├── _#DependencyPropertyAttribute.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.MyControl.Properties.Values3.g.verified.cs │ │ ├── _#Localizability.g.verified.cs │ │ └── _#SourceTrigger.g.verified.cs │ ├── UnoWinUi │ │ ├── Tests.MultidimensionalArray_Diagnostics.verified.txt │ │ ├── _#DefaultBindingMode.g.verified.cs │ │ ├── _#DependencyPropertyAttribute.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.MyControl.Properties.Values3.g.verified.cs │ │ ├── _#Localizability.g.verified.cs │ │ └── _#SourceTrigger.g.verified.cs │ └── Wpf │ │ ├── Tests.MultidimensionalArray_Diagnostics.verified.txt │ │ ├── _#DefaultBindingMode.g.verified.cs │ │ ├── _#DependencyPropertyAttribute.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.MyControl.Properties.Values3.g.verified.cs │ │ ├── _#Localizability.g.verified.cs │ │ └── _#SourceTrigger.g.verified.cs ├── MultilineDescription │ ├── Avalonia │ │ ├── Tests.MultilineDescription_Diagnostics.verified.txt │ │ ├── _#AttachedDependencyPropertyAttribute.g.verified.cs │ │ ├── _#DefaultBindingMode.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.GridExtensions.AttachedProperties.UserAgentSuffix.g.verified.cs │ │ ├── _#Localizability.g.verified.cs │ │ └── _#SourceTrigger.g.verified.cs │ ├── Maui │ │ ├── Tests.MultilineDescription_Diagnostics.verified.txt │ │ ├── _#AttachedDependencyPropertyAttribute.g.verified.cs │ │ ├── _#DefaultBindingMode.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.GridExtensions.AttachedProperties.UserAgentSuffix.g.verified.cs │ │ ├── _#Localizability.g.verified.cs │ │ └── _#SourceTrigger.g.verified.cs │ ├── Uno │ │ ├── Tests.MultilineDescription_Diagnostics.verified.txt │ │ ├── _#AttachedDependencyPropertyAttribute.g.verified.cs │ │ ├── _#DefaultBindingMode.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.GridExtensions.AttachedProperties.UserAgentSuffix.g.verified.cs │ │ ├── _#Localizability.g.verified.cs │ │ └── _#SourceTrigger.g.verified.cs │ ├── UnoWinUi │ │ ├── Tests.MultilineDescription_Diagnostics.verified.txt │ │ ├── _#AttachedDependencyPropertyAttribute.g.verified.cs │ │ ├── _#DefaultBindingMode.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.GridExtensions.AttachedProperties.UserAgentSuffix.g.verified.cs │ │ ├── _#Localizability.g.verified.cs │ │ └── _#SourceTrigger.g.verified.cs │ └── Wpf │ │ ├── Tests.MultilineDescription_Diagnostics.verified.txt │ │ ├── _#AttachedDependencyPropertyAttribute.g.verified.cs │ │ ├── _#DefaultBindingMode.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.GridExtensions.AttachedProperties.UserAgentSuffix.g.verified.cs │ │ ├── _#Localizability.g.verified.cs │ │ └── _#SourceTrigger.g.verified.cs ├── MultipleClassDeclarations │ ├── Avalonia │ │ ├── Tests.MultipleClassDeclarations_Diagnostics.verified.txt │ │ ├── _#DefaultBindingMode.g.verified.cs │ │ ├── _#DependencyPropertyAttribute.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.MyControl.Properties.IsSpinning.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.MyControl.Properties.IsSpinning2.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.MyControl.StaticConstructor.g.verified.cs │ │ ├── _#Localizability.g.verified.cs │ │ └── _#SourceTrigger.g.verified.cs │ ├── Maui │ │ ├── Tests.MultipleClassDeclarations_Diagnostics.verified.txt │ │ ├── _#DefaultBindingMode.g.verified.cs │ │ ├── _#DependencyPropertyAttribute.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.MyGrid.Properties.IsSpinning.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.MyGrid.Properties.IsSpinning2.g.verified.cs │ │ ├── _#Localizability.g.verified.cs │ │ └── _#SourceTrigger.g.verified.cs │ ├── Uno │ │ ├── Tests.MultipleClassDeclarations_Diagnostics.verified.txt │ │ ├── _#DefaultBindingMode.g.verified.cs │ │ ├── _#DependencyPropertyAttribute.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.MyControl.Properties.IsSpinning.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.MyControl.Properties.IsSpinning2.g.verified.cs │ │ ├── _#Localizability.g.verified.cs │ │ └── _#SourceTrigger.g.verified.cs │ ├── UnoWinUi │ │ ├── Tests.MultipleClassDeclarations_Diagnostics.verified.txt │ │ ├── _#DefaultBindingMode.g.verified.cs │ │ ├── _#DependencyPropertyAttribute.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.MyControl.Properties.IsSpinning.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.MyControl.Properties.IsSpinning2.g.verified.cs │ │ ├── _#Localizability.g.verified.cs │ │ └── _#SourceTrigger.g.verified.cs │ └── Wpf │ │ ├── Tests.MultipleClassDeclarations_Diagnostics.verified.txt │ │ ├── _#DefaultBindingMode.g.verified.cs │ │ ├── _#DependencyPropertyAttribute.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.MyControl.Properties.IsSpinning.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.MyControl.Properties.IsSpinning2.g.verified.cs │ │ ├── _#Localizability.g.verified.cs │ │ └── _#SourceTrigger.g.verified.cs ├── NonGenericAttributes │ ├── Avalonia │ │ ├── Tests.NonGenericAttributes_Diagnostics.verified.txt │ │ ├── _#AttachedDependencyPropertyAttribute.g.verified.cs │ │ ├── _#DefaultBindingMode.g.verified.cs │ │ ├── _#DependencyPropertyAttribute.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.GridExtensions.AttachedProperties.AttachedProperty.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.MyControl.Properties.Text.g.verified.cs │ │ ├── _#Localizability.g.verified.cs │ │ └── _#SourceTrigger.g.verified.cs │ ├── Maui │ │ ├── Tests.NonGenericAttributes_Diagnostics.verified.txt │ │ ├── _#AttachedDependencyPropertyAttribute.g.verified.cs │ │ ├── _#DefaultBindingMode.g.verified.cs │ │ ├── _#DependencyPropertyAttribute.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.GridExtensions.AttachedProperties.AttachedProperty.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.MyGrid.Properties.Text.g.verified.cs │ │ ├── _#Localizability.g.verified.cs │ │ └── _#SourceTrigger.g.verified.cs │ ├── Uno │ │ ├── Tests.NonGenericAttributes_Diagnostics.verified.txt │ │ ├── _#AttachedDependencyPropertyAttribute.g.verified.cs │ │ ├── _#DefaultBindingMode.g.verified.cs │ │ ├── _#DependencyPropertyAttribute.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.GridExtensions.AttachedProperties.AttachedProperty.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.MyControl.Properties.Text.g.verified.cs │ │ ├── _#Localizability.g.verified.cs │ │ └── _#SourceTrigger.g.verified.cs │ ├── UnoWinUi │ │ ├── Tests.NonGenericAttributes_Diagnostics.verified.txt │ │ ├── _#AttachedDependencyPropertyAttribute.g.verified.cs │ │ ├── _#DefaultBindingMode.g.verified.cs │ │ ├── _#DependencyPropertyAttribute.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.GridExtensions.AttachedProperties.AttachedProperty.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.MyControl.Properties.Text.g.verified.cs │ │ ├── _#Localizability.g.verified.cs │ │ └── _#SourceTrigger.g.verified.cs │ └── Wpf │ │ ├── Tests.NonGenericAttributes_Diagnostics.verified.txt │ │ ├── _#AttachedDependencyPropertyAttribute.g.verified.cs │ │ ├── _#DefaultBindingMode.g.verified.cs │ │ ├── _#DependencyPropertyAttribute.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.GridExtensions.AttachedProperties.AttachedProperty.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.MyControl.Properties.Text.g.verified.cs │ │ ├── _#Localizability.g.verified.cs │ │ └── _#SourceTrigger.g.verified.cs ├── NoneFramework │ └── None │ │ ├── Tests.NoneFramework_Diagnostics.verified.txt │ │ ├── _#WeakEventAttribute.g.verified.cs │ │ └── _.verified.txt ├── NullableDisable │ ├── Avalonia │ │ ├── Tests.NullableDisable_Diagnostics.verified.txt │ │ ├── _#DefaultBindingMode.g.verified.cs │ │ ├── _#DependencyPropertyAttribute.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.Generatable.Properties.Text.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.Generatable.StaticConstructor.g.verified.cs │ │ ├── _#Localizability.g.verified.cs │ │ └── _#SourceTrigger.g.verified.cs │ ├── Maui │ │ ├── Tests.NullableDisable_Diagnostics.verified.txt │ │ ├── _#DefaultBindingMode.g.verified.cs │ │ ├── _#DependencyPropertyAttribute.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.Generatable.Properties.Text.g.verified.cs │ │ ├── _#Localizability.g.verified.cs │ │ └── _#SourceTrigger.g.verified.cs │ ├── Uno │ │ ├── Tests.NullableDisable_Diagnostics.verified.txt │ │ ├── _#DefaultBindingMode.g.verified.cs │ │ ├── _#DependencyPropertyAttribute.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.Generatable.Properties.Text.g.verified.cs │ │ ├── _#Localizability.g.verified.cs │ │ └── _#SourceTrigger.g.verified.cs │ ├── UnoWinUi │ │ ├── Tests.NullableDisable_Diagnostics.verified.txt │ │ ├── _#DefaultBindingMode.g.verified.cs │ │ ├── _#DependencyPropertyAttribute.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.Generatable.Properties.Text.g.verified.cs │ │ ├── _#Localizability.g.verified.cs │ │ └── _#SourceTrigger.g.verified.cs │ └── Wpf │ │ ├── Tests.NullableDisable_Diagnostics.verified.txt │ │ ├── _#DefaultBindingMode.g.verified.cs │ │ ├── _#DependencyPropertyAttribute.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.Generatable.Properties.Text.g.verified.cs │ │ ├── _#Localizability.g.verified.cs │ │ └── _#SourceTrigger.g.verified.cs ├── NullableValueType │ ├── Avalonia │ │ ├── Tests.NullableValueType_Diagnostics.verified.txt │ │ ├── _#DefaultBindingMode.g.verified.cs │ │ ├── _#DependencyPropertyAttribute.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.Generatable.Properties.Property.g.verified.cs │ │ ├── _#Localizability.g.verified.cs │ │ └── _#SourceTrigger.g.verified.cs │ ├── Maui │ │ ├── Tests.NullableValueType_Diagnostics.verified.txt │ │ ├── _#DefaultBindingMode.g.verified.cs │ │ ├── _#DependencyPropertyAttribute.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.Generatable.Properties.Property.g.verified.cs │ │ ├── _#Localizability.g.verified.cs │ │ └── _#SourceTrigger.g.verified.cs │ ├── Uno │ │ ├── Tests.NullableValueType_Diagnostics.verified.txt │ │ ├── _#DefaultBindingMode.g.verified.cs │ │ ├── _#DependencyPropertyAttribute.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.Generatable.Properties.Property.g.verified.cs │ │ ├── _#Localizability.g.verified.cs │ │ └── _#SourceTrigger.g.verified.cs │ ├── UnoWinUi │ │ ├── Tests.NullableValueType_Diagnostics.verified.txt │ │ ├── _#DefaultBindingMode.g.verified.cs │ │ ├── _#DependencyPropertyAttribute.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.Generatable.Properties.Property.g.verified.cs │ │ ├── _#Localizability.g.verified.cs │ │ └── _#SourceTrigger.g.verified.cs │ └── Wpf │ │ ├── Tests.NullableValueType_Diagnostics.verified.txt │ │ ├── _#DefaultBindingMode.g.verified.cs │ │ ├── _#DependencyPropertyAttribute.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.Generatable.Properties.Property.g.verified.cs │ │ ├── _#Localizability.g.verified.cs │ │ └── _#SourceTrigger.g.verified.cs ├── OverrideMetadata │ ├── Avalonia │ │ ├── Tests.OverrideMetadata_Diagnostics.verified.txt │ │ ├── _#DefaultBindingMode.g.verified.cs │ │ ├── _#DependencyPropertyAttribute.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.Aquarium.Properties.AquariumGraphic.g.verified.cs │ │ ├── _#Localizability.g.verified.cs │ │ ├── _#OverrideMetadataAttribute.g.verified.cs │ │ └── _#SourceTrigger.g.verified.cs │ ├── Maui │ │ ├── Tests.OverrideMetadata_Diagnostics.verified.txt │ │ ├── _#DefaultBindingMode.g.verified.cs │ │ ├── _#DependencyPropertyAttribute.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.Aquarium.Properties.AquariumGraphic.g.verified.cs │ │ ├── _#Localizability.g.verified.cs │ │ ├── _#OverrideMetadataAttribute.g.verified.cs │ │ └── _#SourceTrigger.g.verified.cs │ ├── Uno │ │ ├── Tests.OverrideMetadata_Diagnostics.verified.txt │ │ ├── _#DefaultBindingMode.g.verified.cs │ │ ├── _#DependencyPropertyAttribute.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.Aquarium.Properties.AquariumGraphic.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.TropicalAquarium.Methods.RegisterPropertyChangedCallbacks.g.verified.cs │ │ ├── _#Localizability.g.verified.cs │ │ ├── _#OverrideMetadataAttribute.g.verified.cs │ │ └── _#SourceTrigger.g.verified.cs │ ├── UnoWinUi │ │ ├── Tests.OverrideMetadata_Diagnostics.verified.txt │ │ ├── _#DefaultBindingMode.g.verified.cs │ │ ├── _#DependencyPropertyAttribute.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.Aquarium.Properties.AquariumGraphic.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.TropicalAquarium.Methods.RegisterPropertyChangedCallbacks.g.verified.cs │ │ ├── _#Localizability.g.verified.cs │ │ ├── _#OverrideMetadataAttribute.g.verified.cs │ │ └── _#SourceTrigger.g.verified.cs │ └── Wpf │ │ ├── Tests.OverrideMetadata_Diagnostics.verified.txt │ │ ├── _#DefaultBindingMode.g.verified.cs │ │ ├── _#DependencyPropertyAttribute.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.Aquarium.Properties.AquariumGraphic.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.TropicalAquarium.StaticConstructor.g.verified.cs │ │ ├── _#Localizability.g.verified.cs │ │ ├── _#OverrideMetadataAttribute.g.verified.cs │ │ └── _#SourceTrigger.g.verified.cs ├── OverrideMetadataForReadOnlyProperty │ ├── Avalonia │ │ ├── Tests.OverrideMetadataForReadOnlyProperty_Diagnostics.verified.txt │ │ ├── _#DefaultBindingMode.g.verified.cs │ │ ├── _#DependencyPropertyAttribute.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.Aquarium.Properties.AquariumGraphic.g.verified.cs │ │ ├── _#Localizability.g.verified.cs │ │ ├── _#OverrideMetadataAttribute.g.verified.cs │ │ └── _#SourceTrigger.g.verified.cs │ ├── Maui │ │ ├── Tests.OverrideMetadataForReadOnlyProperty_Diagnostics.verified.txt │ │ ├── _#DefaultBindingMode.g.verified.cs │ │ ├── _#DependencyPropertyAttribute.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.Aquarium.Properties.AquariumGraphic.g.verified.cs │ │ ├── _#Localizability.g.verified.cs │ │ ├── _#OverrideMetadataAttribute.g.verified.cs │ │ └── _#SourceTrigger.g.verified.cs │ ├── Uno │ │ ├── Tests.OverrideMetadataForReadOnlyProperty_Diagnostics.verified.txt │ │ ├── _#DefaultBindingMode.g.verified.cs │ │ ├── _#DependencyPropertyAttribute.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.Aquarium.Properties.AquariumGraphic.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.TropicalAquarium.Methods.RegisterPropertyChangedCallbacks.g.verified.cs │ │ ├── _#Localizability.g.verified.cs │ │ ├── _#OverrideMetadataAttribute.g.verified.cs │ │ └── _#SourceTrigger.g.verified.cs │ ├── UnoWinUi │ │ ├── Tests.OverrideMetadataForReadOnlyProperty_Diagnostics.verified.txt │ │ ├── _#DefaultBindingMode.g.verified.cs │ │ ├── _#DependencyPropertyAttribute.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.Aquarium.Properties.AquariumGraphic.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.TropicalAquarium.Methods.RegisterPropertyChangedCallbacks.g.verified.cs │ │ ├── _#Localizability.g.verified.cs │ │ ├── _#OverrideMetadataAttribute.g.verified.cs │ │ └── _#SourceTrigger.g.verified.cs │ └── Wpf │ │ ├── Tests.OverrideMetadataForReadOnlyProperty_Diagnostics.verified.txt │ │ ├── _#DefaultBindingMode.g.verified.cs │ │ ├── _#DependencyPropertyAttribute.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.Aquarium.Properties.AquariumGraphic.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.TropicalAquarium.StaticConstructor.g.verified.cs │ │ ├── _#Localizability.g.verified.cs │ │ ├── _#OverrideMetadataAttribute.g.verified.cs │ │ └── _#SourceTrigger.g.verified.cs ├── PrimitiveTypeArray │ ├── Avalonia │ │ ├── Tests.PrimitiveTypeArray_Diagnostics.verified.txt │ │ ├── _#DefaultBindingMode.g.verified.cs │ │ ├── _#DependencyPropertyAttribute.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.MyControl.Properties.Values.g.verified.cs │ │ ├── _#Localizability.g.verified.cs │ │ └── _#SourceTrigger.g.verified.cs │ ├── Maui │ │ ├── Tests.PrimitiveTypeArray_Diagnostics.verified.txt │ │ ├── _#DefaultBindingMode.g.verified.cs │ │ ├── _#DependencyPropertyAttribute.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.MyGrid.Properties.Values.g.verified.cs │ │ ├── _#Localizability.g.verified.cs │ │ └── _#SourceTrigger.g.verified.cs │ ├── Uno │ │ ├── Tests.PrimitiveTypeArray_Diagnostics.verified.txt │ │ ├── _#DefaultBindingMode.g.verified.cs │ │ ├── _#DependencyPropertyAttribute.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.MyControl.Properties.Values.g.verified.cs │ │ ├── _#Localizability.g.verified.cs │ │ └── _#SourceTrigger.g.verified.cs │ ├── UnoWinUi │ │ ├── Tests.PrimitiveTypeArray_Diagnostics.verified.txt │ │ ├── _#DefaultBindingMode.g.verified.cs │ │ ├── _#DependencyPropertyAttribute.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.MyControl.Properties.Values.g.verified.cs │ │ ├── _#Localizability.g.verified.cs │ │ └── _#SourceTrigger.g.verified.cs │ └── Wpf │ │ ├── Tests.PrimitiveTypeArray_Diagnostics.verified.txt │ │ ├── _#DefaultBindingMode.g.verified.cs │ │ ├── _#DependencyPropertyAttribute.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.MyControl.Properties.Values.g.verified.cs │ │ ├── _#Localizability.g.verified.cs │ │ └── _#SourceTrigger.g.verified.cs ├── ReadOnlyProperty │ ├── Avalonia │ │ ├── Tests.ReadOnlyProperty_Diagnostics.verified.txt │ │ ├── _#DefaultBindingMode.g.verified.cs │ │ ├── _#DependencyPropertyAttribute.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.MyControl.Properties.ReadOnlyProperty.g.verified.cs │ │ ├── _#Localizability.g.verified.cs │ │ └── _#SourceTrigger.g.verified.cs │ ├── Maui │ │ ├── Tests.ReadOnlyProperty_Diagnostics.verified.txt │ │ ├── _#DefaultBindingMode.g.verified.cs │ │ ├── _#DependencyPropertyAttribute.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.MyGrid.Properties.ReadOnlyProperty.g.verified.cs │ │ ├── _#Localizability.g.verified.cs │ │ └── _#SourceTrigger.g.verified.cs │ ├── Uno │ │ ├── Tests.ReadOnlyProperty_Diagnostics.verified.txt │ │ ├── _#DefaultBindingMode.g.verified.cs │ │ ├── _#DependencyPropertyAttribute.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.MyControl.Properties.ReadOnlyProperty.g.verified.cs │ │ ├── _#Localizability.g.verified.cs │ │ └── _#SourceTrigger.g.verified.cs │ ├── UnoWinUi │ │ ├── Tests.ReadOnlyProperty_Diagnostics.verified.txt │ │ ├── _#DefaultBindingMode.g.verified.cs │ │ ├── _#DependencyPropertyAttribute.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.MyControl.Properties.ReadOnlyProperty.g.verified.cs │ │ ├── _#Localizability.g.verified.cs │ │ └── _#SourceTrigger.g.verified.cs │ └── Wpf │ │ ├── Tests.ReadOnlyProperty_Diagnostics.verified.txt │ │ ├── _#DefaultBindingMode.g.verified.cs │ │ ├── _#DependencyPropertyAttribute.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.MyControl.Properties.ReadOnlyProperty.g.verified.cs │ │ ├── _#Localizability.g.verified.cs │ │ └── _#SourceTrigger.g.verified.cs ├── ReadmeExample │ ├── Avalonia │ │ ├── Tests.ReadmeExample_Diagnostics.verified.txt │ │ ├── _#AttachedDependencyPropertyAttribute.g.verified.cs │ │ ├── _#DefaultBindingMode.g.verified.cs │ │ ├── _#DependencyPropertyAttribute.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.MyControl.Properties.IsSpinning.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.MyControl.StaticConstructor.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.TreeViewExtensions.AttachedProperties.SelectedItem.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.TreeViewExtensions.StaticConstructor.g.verified.cs │ │ ├── _#Localizability.g.verified.cs │ │ └── _#SourceTrigger.g.verified.cs │ ├── Maui │ │ ├── Tests.ReadmeExample_Diagnostics.verified.txt │ │ ├── _#AttachedDependencyPropertyAttribute.g.verified.cs │ │ ├── _#DefaultBindingMode.g.verified.cs │ │ ├── _#DependencyPropertyAttribute.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.GridExtensions.AttachedProperties.SelectedItem.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.MyGrid.Properties.IsSpinning.g.verified.cs │ │ ├── _#Localizability.g.verified.cs │ │ └── _#SourceTrigger.g.verified.cs │ ├── Uno │ │ ├── Tests.ReadmeExample_Diagnostics.verified.txt │ │ ├── _#AttachedDependencyPropertyAttribute.g.verified.cs │ │ ├── _#DefaultBindingMode.g.verified.cs │ │ ├── _#DependencyPropertyAttribute.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.MyControl.Properties.IsSpinning.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.TreeViewExtensions.AttachedProperties.SelectedItem.g.verified.cs │ │ ├── _#Localizability.g.verified.cs │ │ └── _#SourceTrigger.g.verified.cs │ ├── UnoWinUi │ │ ├── Tests.ReadmeExample_Diagnostics.verified.txt │ │ ├── _#AttachedDependencyPropertyAttribute.g.verified.cs │ │ ├── _#DefaultBindingMode.g.verified.cs │ │ ├── _#DependencyPropertyAttribute.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.MyControl.Properties.IsSpinning.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.TreeViewExtensions.AttachedProperties.SelectedItem.g.verified.cs │ │ ├── _#Localizability.g.verified.cs │ │ └── _#SourceTrigger.g.verified.cs │ └── Wpf │ │ ├── Tests.ReadmeExample_Diagnostics.verified.txt │ │ ├── _#AttachedDependencyPropertyAttribute.g.verified.cs │ │ ├── _#DefaultBindingMode.g.verified.cs │ │ ├── _#DependencyPropertyAttribute.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.MyControl.Properties.IsSpinning.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.TreeViewExtensions.AttachedProperties.SelectedItem.g.verified.cs │ │ ├── _#Localizability.g.verified.cs │ │ └── _#SourceTrigger.g.verified.cs ├── RoutedEvent │ ├── Avalonia │ │ ├── Tests.RoutedEvent_Diagnostics.verified.txt │ │ ├── _#H.Generators.IntegrationTests.MyControl.Events.TrayLeftMouseDown.g.verified.cs │ │ ├── _#RoutedEventAttribute.g.verified.cs │ │ └── _#RoutedEventStrategy.g.verified.cs │ ├── Maui │ │ ├── Tests.RoutedEvent_Diagnostics.verified.txt │ │ ├── _#RoutedEventAttribute.g.verified.cs │ │ └── _#RoutedEventStrategy.g.verified.cs │ ├── Uno │ │ ├── Tests.RoutedEvent_Diagnostics.verified.txt │ │ ├── _#H.Generators.IntegrationTests.MyControl.Events.TrayLeftMouseDown.g.verified.cs │ │ ├── _#RoutedEventAttribute.g.verified.cs │ │ └── _#RoutedEventStrategy.g.verified.cs │ ├── UnoWinUi │ │ ├── Tests.RoutedEvent_Diagnostics.verified.txt │ │ ├── _#H.Generators.IntegrationTests.MyControl.Events.TrayLeftMouseDown.g.verified.cs │ │ ├── _#RoutedEventAttribute.g.verified.cs │ │ └── _#RoutedEventStrategy.g.verified.cs │ └── Wpf │ │ ├── Tests.RoutedEvent_Diagnostics.verified.txt │ │ ├── _#H.Generators.IntegrationTests.MyControl.Events.TrayLeftMouseDown.g.verified.cs │ │ ├── _#RoutedEventAttribute.g.verified.cs │ │ └── _#RoutedEventStrategy.g.verified.cs ├── SameClassAsTypeParameter │ ├── Avalonia │ │ ├── Tests.SameClassAsTypeParameter_Diagnostics.verified.txt │ │ ├── _#AttachedDependencyPropertyAttribute.g.verified.cs │ │ ├── _#DefaultBindingMode.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.Test.AttachedProperties.TestProp.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.Test.StaticConstructor.g.verified.cs │ │ ├── _#Localizability.g.verified.cs │ │ └── _#SourceTrigger.g.verified.cs │ ├── Maui │ │ ├── Tests.SameClassAsTypeParameter_Diagnostics.verified.txt │ │ ├── _#AttachedDependencyPropertyAttribute.g.verified.cs │ │ ├── _#DefaultBindingMode.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.Test.AttachedProperties.TestProp.g.verified.cs │ │ ├── _#Localizability.g.verified.cs │ │ └── _#SourceTrigger.g.verified.cs │ ├── Uno │ │ ├── Tests.SameClassAsTypeParameter_Diagnostics.verified.txt │ │ ├── _#AttachedDependencyPropertyAttribute.g.verified.cs │ │ ├── _#DefaultBindingMode.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.Test.AttachedProperties.TestProp.g.verified.cs │ │ ├── _#Localizability.g.verified.cs │ │ └── _#SourceTrigger.g.verified.cs │ ├── UnoWinUi │ │ ├── Tests.SameClassAsTypeParameter_Diagnostics.verified.txt │ │ ├── _#AttachedDependencyPropertyAttribute.g.verified.cs │ │ ├── _#DefaultBindingMode.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.Test.AttachedProperties.TestProp.g.verified.cs │ │ ├── _#Localizability.g.verified.cs │ │ └── _#SourceTrigger.g.verified.cs │ └── Wpf │ │ ├── Tests.SameClassAsTypeParameter_Diagnostics.verified.txt │ │ ├── _#AttachedDependencyPropertyAttribute.g.verified.cs │ │ ├── _#DefaultBindingMode.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.Test.AttachedProperties.TestProp.g.verified.cs │ │ ├── _#Localizability.g.verified.cs │ │ └── _#SourceTrigger.g.verified.cs ├── SameNameDifferentNamespaces │ ├── Avalonia │ │ ├── Tests.SameNameDifferentNamespaces_Diagnostics.verified.txt │ │ ├── _#DefaultBindingMode.g.verified.cs │ │ ├── _#DependencyPropertyAttribute.g.verified.cs │ │ ├── _#Localizability.g.verified.cs │ │ ├── _#Namespace1.MyControl.Properties.MyProperty.g.verified.cs │ │ ├── _#Namespace2.MyControl.Properties.MyProperty.g.verified.cs │ │ └── _#SourceTrigger.g.verified.cs │ ├── Maui │ │ ├── Tests.SameNameDifferentNamespaces_Diagnostics.verified.txt │ │ ├── _#DefaultBindingMode.g.verified.cs │ │ ├── _#DependencyPropertyAttribute.g.verified.cs │ │ ├── _#Localizability.g.verified.cs │ │ ├── _#Namespace1.MyGrid.Properties.MyProperty.g.verified.cs │ │ ├── _#Namespace2.MyGrid.Properties.MyProperty.g.verified.cs │ │ └── _#SourceTrigger.g.verified.cs │ ├── Uno │ │ ├── Tests.SameNameDifferentNamespaces_Diagnostics.verified.txt │ │ ├── _#DefaultBindingMode.g.verified.cs │ │ ├── _#DependencyPropertyAttribute.g.verified.cs │ │ ├── _#Localizability.g.verified.cs │ │ ├── _#Namespace1.MyControl.Properties.MyProperty.g.verified.cs │ │ ├── _#Namespace2.MyControl.Properties.MyProperty.g.verified.cs │ │ └── _#SourceTrigger.g.verified.cs │ ├── UnoWinUi │ │ ├── Tests.SameNameDifferentNamespaces_Diagnostics.verified.txt │ │ ├── _#DefaultBindingMode.g.verified.cs │ │ ├── _#DependencyPropertyAttribute.g.verified.cs │ │ ├── _#Localizability.g.verified.cs │ │ ├── _#Namespace1.MyControl.Properties.MyProperty.g.verified.cs │ │ ├── _#Namespace2.MyControl.Properties.MyProperty.g.verified.cs │ │ └── _#SourceTrigger.g.verified.cs │ └── Wpf │ │ ├── Tests.SameNameDifferentNamespaces_Diagnostics.verified.txt │ │ ├── _#DefaultBindingMode.g.verified.cs │ │ ├── _#DependencyPropertyAttribute.g.verified.cs │ │ ├── _#Localizability.g.verified.cs │ │ ├── _#Namespace1.MyControl.Properties.MyProperty.g.verified.cs │ │ ├── _#Namespace2.MyControl.Properties.MyProperty.g.verified.cs │ │ └── _#SourceTrigger.g.verified.cs ├── StaticWeakEvent │ ├── Avalonia │ │ ├── Tests.StaticWeakEvent_Diagnostics.verified.txt │ │ └── _#WeakEventAttribute.g.verified.cs │ ├── Maui │ │ ├── Tests.StaticWeakEvent_Diagnostics.verified.txt │ │ ├── _#H.Generators.IntegrationTests.MyGrid.WeakEvents.Completed.g.verified.cs │ │ └── _#WeakEventAttribute.g.verified.cs │ ├── Uno │ │ ├── Tests.StaticWeakEvent_Diagnostics.verified.txt │ │ └── _#WeakEventAttribute.g.verified.cs │ ├── UnoWinUi │ │ ├── Tests.StaticWeakEvent_Diagnostics.verified.txt │ │ └── _#WeakEventAttribute.g.verified.cs │ └── Wpf │ │ ├── Tests.StaticWeakEvent_Diagnostics.verified.txt │ │ ├── _#H.Generators.IntegrationTests.MyControl.WeakEvents.Completed.g.verified.cs │ │ └── _#WeakEventAttribute.g.verified.cs ├── StaticWeakEventWithType │ ├── Avalonia │ │ ├── Tests.StaticWeakEventWithType_Diagnostics.verified.txt │ │ └── _#WeakEventAttribute.g.verified.cs │ ├── Maui │ │ ├── Tests.StaticWeakEventWithType_Diagnostics.verified.txt │ │ ├── _#H.Generators.IntegrationTests.MyGrid.WeakEvents.UrlChanged.g.verified.cs │ │ └── _#WeakEventAttribute.g.verified.cs │ ├── Uno │ │ ├── Tests.StaticWeakEventWithType_Diagnostics.verified.txt │ │ └── _#WeakEventAttribute.g.verified.cs │ ├── UnoWinUi │ │ ├── Tests.StaticWeakEventWithType_Diagnostics.verified.txt │ │ └── _#WeakEventAttribute.g.verified.cs │ └── Wpf │ │ ├── Tests.StaticWeakEventWithType_Diagnostics.verified.txt │ │ ├── _#H.Generators.IntegrationTests.MyControl.WeakEvents.UrlChanged.g.verified.cs │ │ └── _#WeakEventAttribute.g.verified.cs ├── Tuples │ ├── Avalonia │ │ ├── Tests.Tuples_Diagnostics.verified.txt │ │ ├── _#DefaultBindingMode.g.verified.cs │ │ ├── _#DependencyPropertyAttribute.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.MyControl.Properties.TupleControlInt.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.MyControl.Properties.TupleIntControl.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.MyControl.Properties.TupleIntString.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.MyControl.Properties.TypeControlInt.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.MyControl.Properties.TypeIntControl.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.MyControl.Properties.TypeIntString.g.verified.cs │ │ ├── _#Localizability.g.verified.cs │ │ └── _#SourceTrigger.g.verified.cs │ ├── Maui │ │ ├── Tests.Tuples_Diagnostics.verified.txt │ │ ├── _#DefaultBindingMode.g.verified.cs │ │ ├── _#DependencyPropertyAttribute.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.MyGrid.Properties.TupleControlInt.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.MyGrid.Properties.TupleIntControl.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.MyGrid.Properties.TupleIntString.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.MyGrid.Properties.TypeControlInt.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.MyGrid.Properties.TypeIntControl.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.MyGrid.Properties.TypeIntString.g.verified.cs │ │ ├── _#Localizability.g.verified.cs │ │ └── _#SourceTrigger.g.verified.cs │ ├── Uno │ │ ├── Tests.Tuples_Diagnostics.verified.txt │ │ ├── _#DefaultBindingMode.g.verified.cs │ │ ├── _#DependencyPropertyAttribute.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.MyControl.Properties.TupleControlInt.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.MyControl.Properties.TupleIntControl.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.MyControl.Properties.TupleIntString.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.MyControl.Properties.TypeControlInt.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.MyControl.Properties.TypeIntControl.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.MyControl.Properties.TypeIntString.g.verified.cs │ │ ├── _#Localizability.g.verified.cs │ │ └── _#SourceTrigger.g.verified.cs │ ├── UnoWinUi │ │ ├── Tests.Tuples_Diagnostics.verified.txt │ │ ├── _#DefaultBindingMode.g.verified.cs │ │ ├── _#DependencyPropertyAttribute.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.MyControl.Properties.TupleControlInt.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.MyControl.Properties.TupleIntControl.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.MyControl.Properties.TupleIntString.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.MyControl.Properties.TypeControlInt.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.MyControl.Properties.TypeIntControl.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.MyControl.Properties.TypeIntString.g.verified.cs │ │ ├── _#Localizability.g.verified.cs │ │ └── _#SourceTrigger.g.verified.cs │ └── Wpf │ │ ├── Tests.Tuples_Diagnostics.verified.txt │ │ ├── _#DefaultBindingMode.g.verified.cs │ │ ├── _#DependencyPropertyAttribute.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.MyControl.Properties.TupleControlInt.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.MyControl.Properties.TupleIntControl.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.MyControl.Properties.TupleIntString.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.MyControl.Properties.TypeControlInt.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.MyControl.Properties.TypeIntControl.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.MyControl.Properties.TypeIntString.g.verified.cs │ │ ├── _#Localizability.g.verified.cs │ │ └── _#SourceTrigger.g.verified.cs ├── ValidateAndCoerce │ ├── Avalonia │ │ ├── Tests.ValidateAndCoerce_Diagnostics.verified.txt │ │ ├── _#DefaultBindingMode.g.verified.cs │ │ ├── _#DependencyPropertyAttribute.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.MyControl.Properties.NotNullStringProperty.g.verified.cs │ │ ├── _#Localizability.g.verified.cs │ │ └── _#SourceTrigger.g.verified.cs │ ├── Maui │ │ ├── Tests.ValidateAndCoerce_Diagnostics.verified.txt │ │ ├── _#DefaultBindingMode.g.verified.cs │ │ ├── _#DependencyPropertyAttribute.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.MyGrid.Properties.NotNullStringProperty.g.verified.cs │ │ ├── _#Localizability.g.verified.cs │ │ └── _#SourceTrigger.g.verified.cs │ ├── Uno │ │ ├── Tests.ValidateAndCoerce_Diagnostics.verified.txt │ │ ├── _#DefaultBindingMode.g.verified.cs │ │ ├── _#DependencyPropertyAttribute.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.MyControl.Properties.NotNullStringProperty.g.verified.cs │ │ ├── _#Localizability.g.verified.cs │ │ └── _#SourceTrigger.g.verified.cs │ ├── UnoWinUi │ │ ├── Tests.ValidateAndCoerce_Diagnostics.verified.txt │ │ ├── _#DefaultBindingMode.g.verified.cs │ │ ├── _#DependencyPropertyAttribute.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.MyControl.Properties.NotNullStringProperty.g.verified.cs │ │ ├── _#Localizability.g.verified.cs │ │ └── _#SourceTrigger.g.verified.cs │ └── Wpf │ │ ├── Tests.ValidateAndCoerce_Diagnostics.verified.txt │ │ ├── _#DefaultBindingMode.g.verified.cs │ │ ├── _#DependencyPropertyAttribute.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.MyControl.Properties.NotNullStringProperty.g.verified.cs │ │ ├── _#Localizability.g.verified.cs │ │ └── _#SourceTrigger.g.verified.cs ├── WeakEvent │ ├── Avalonia │ │ ├── Tests.WeakEvent_Diagnostics.verified.txt │ │ └── _#WeakEventAttribute.g.verified.cs │ ├── Maui │ │ ├── Tests.WeakEvent_Diagnostics.verified.txt │ │ ├── _#H.Generators.IntegrationTests.MyGrid.WeakEvents.Completed.g.verified.cs │ │ └── _#WeakEventAttribute.g.verified.cs │ ├── Uno │ │ ├── Tests.WeakEvent_Diagnostics.verified.txt │ │ └── _#WeakEventAttribute.g.verified.cs │ ├── UnoWinUi │ │ ├── Tests.WeakEvent_Diagnostics.verified.txt │ │ └── _#WeakEventAttribute.g.verified.cs │ └── Wpf │ │ ├── Tests.WeakEvent_Diagnostics.verified.txt │ │ ├── _#H.Generators.IntegrationTests.MyControl.WeakEvents.Completed.g.verified.cs │ │ └── _#WeakEventAttribute.g.verified.cs ├── WeakEventWithEventArgsType │ ├── Avalonia │ │ ├── Tests.WeakEventWithEventArgsType_Diagnostics.verified.txt │ │ └── _#WeakEventAttribute.g.verified.cs │ ├── Maui │ │ ├── Tests.WeakEventWithEventArgsType_Diagnostics.verified.txt │ │ ├── _#H.Generators.IntegrationTests.MyGrid.WeakEvents.Changed.g.verified.cs │ │ └── _#WeakEventAttribute.g.verified.cs │ ├── Uno │ │ ├── Tests.WeakEventWithEventArgsType_Diagnostics.verified.txt │ │ └── _#WeakEventAttribute.g.verified.cs │ ├── UnoWinUi │ │ ├── Tests.WeakEventWithEventArgsType_Diagnostics.verified.txt │ │ └── _#WeakEventAttribute.g.verified.cs │ └── Wpf │ │ ├── Tests.WeakEventWithEventArgsType_Diagnostics.verified.txt │ │ ├── _#H.Generators.IntegrationTests.MyControl.WeakEvents.Changed.g.verified.cs │ │ └── _#WeakEventAttribute.g.verified.cs ├── WeakEventWithType │ ├── Avalonia │ │ ├── Tests.WeakEventWithType_Diagnostics.verified.txt │ │ └── _#WeakEventAttribute.g.verified.cs │ ├── Maui │ │ ├── Tests.WeakEventWithType_Diagnostics.verified.txt │ │ ├── _#H.Generators.IntegrationTests.MyGrid.WeakEvents.UrlChanged.g.verified.cs │ │ └── _#WeakEventAttribute.g.verified.cs │ ├── Uno │ │ ├── Tests.WeakEventWithType_Diagnostics.verified.txt │ │ └── _#WeakEventAttribute.g.verified.cs │ ├── UnoWinUi │ │ ├── Tests.WeakEventWithType_Diagnostics.verified.txt │ │ └── _#WeakEventAttribute.g.verified.cs │ └── Wpf │ │ ├── Tests.WeakEventWithType_Diagnostics.verified.txt │ │ ├── _#H.Generators.IntegrationTests.MyControl.WeakEvents.UrlChanged.g.verified.cs │ │ └── _#WeakEventAttribute.g.verified.cs ├── WithOtherAttributes │ ├── Avalonia │ │ ├── Tests.WithOtherAttributes_Diagnostics.verified.txt │ │ ├── _#DefaultBindingMode.g.verified.cs │ │ ├── _#DependencyPropertyAttribute.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.MyControl.Properties.IsSpinning5.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.MyControl.StaticConstructor.g.verified.cs │ │ ├── _#Localizability.g.verified.cs │ │ └── _#SourceTrigger.g.verified.cs │ ├── Maui │ │ ├── Tests.WithOtherAttributes_Diagnostics.verified.txt │ │ ├── _#DefaultBindingMode.g.verified.cs │ │ ├── _#DependencyPropertyAttribute.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.MyGrid.Properties.IsSpinning5.g.verified.cs │ │ ├── _#Localizability.g.verified.cs │ │ └── _#SourceTrigger.g.verified.cs │ ├── Uno │ │ ├── Tests.WithOtherAttributes_Diagnostics.verified.txt │ │ ├── _#DefaultBindingMode.g.verified.cs │ │ ├── _#DependencyPropertyAttribute.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.MyControl.Properties.IsSpinning5.g.verified.cs │ │ ├── _#Localizability.g.verified.cs │ │ └── _#SourceTrigger.g.verified.cs │ ├── UnoWinUi │ │ ├── Tests.WithOtherAttributes_Diagnostics.verified.txt │ │ ├── _#DefaultBindingMode.g.verified.cs │ │ ├── _#DependencyPropertyAttribute.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.MyControl.Properties.IsSpinning5.g.verified.cs │ │ ├── _#Localizability.g.verified.cs │ │ └── _#SourceTrigger.g.verified.cs │ └── Wpf │ │ ├── Tests.WithOtherAttributes_Diagnostics.verified.txt │ │ ├── _#DefaultBindingMode.g.verified.cs │ │ ├── _#DependencyPropertyAttribute.g.verified.cs │ │ ├── _#H.Generators.IntegrationTests.MyControl.Properties.IsSpinning5.g.verified.cs │ │ ├── _#Localizability.g.verified.cs │ │ └── _#SourceTrigger.g.verified.cs └── WithOtherAttributes2 │ ├── Avalonia │ ├── Tests.WithOtherAttributes2_Diagnostics.verified.txt │ ├── _#DefaultBindingMode.g.verified.cs │ ├── _#DependencyPropertyAttribute.g.verified.cs │ ├── _#H.Generators.IntegrationTests.Generatable.Properties.Text.g.verified.cs │ ├── _#H.Generators.IntegrationTests.Generatable.StaticConstructor.g.verified.cs │ ├── _#Localizability.g.verified.cs │ └── _#SourceTrigger.g.verified.cs │ ├── Maui │ ├── Tests.WithOtherAttributes2_Diagnostics.verified.txt │ ├── _#DefaultBindingMode.g.verified.cs │ ├── _#DependencyPropertyAttribute.g.verified.cs │ ├── _#H.Generators.IntegrationTests.Generatable.Properties.Text.g.verified.cs │ ├── _#Localizability.g.verified.cs │ └── _#SourceTrigger.g.verified.cs │ ├── Uno │ ├── Tests.WithOtherAttributes2_Diagnostics.verified.txt │ ├── _#DefaultBindingMode.g.verified.cs │ ├── _#DependencyPropertyAttribute.g.verified.cs │ ├── _#H.Generators.IntegrationTests.Generatable.Properties.Text.g.verified.cs │ ├── _#Localizability.g.verified.cs │ └── _#SourceTrigger.g.verified.cs │ ├── UnoWinUi │ ├── Tests.WithOtherAttributes2_Diagnostics.verified.txt │ ├── _#DefaultBindingMode.g.verified.cs │ ├── _#DependencyPropertyAttribute.g.verified.cs │ ├── _#H.Generators.IntegrationTests.Generatable.Properties.Text.g.verified.cs │ ├── _#Localizability.g.verified.cs │ └── _#SourceTrigger.g.verified.cs │ └── Wpf │ ├── Tests.WithOtherAttributes2_Diagnostics.verified.txt │ ├── _#DefaultBindingMode.g.verified.cs │ ├── _#DependencyPropertyAttribute.g.verified.cs │ ├── _#H.Generators.IntegrationTests.Generatable.Properties.Text.g.verified.cs │ ├── _#Localizability.g.verified.cs │ └── _#SourceTrigger.g.verified.cs ├── Tests.AddOwner.cs ├── Tests.AttachedProperties.cs ├── Tests.Errors.cs ├── Tests.Helpers.cs ├── Tests.OverrideMetadata.cs ├── Tests.Properties.cs ├── Tests.Readme.cs ├── Tests.RoutedEvents.cs └── Tests.WeakEvents.cs /.github/ISSUE_TEMPLATE/bug-report.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/.github/ISSUE_TEMPLATE/bug-report.yaml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/auto-merge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/.github/workflows/auto-merge.yml -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.github/workflows/pull-request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/.github/workflows/pull-request.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/.gitignore -------------------------------------------------------------------------------- /DependencyPropertyGenerator.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/DependencyPropertyGenerator.sln -------------------------------------------------------------------------------- /DependencyPropertyGenerator.sln.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/DependencyPropertyGenerator.sln.DotSettings -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/README.md -------------------------------------------------------------------------------- /assets/nuget_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/assets/nuget_icon.png -------------------------------------------------------------------------------- /global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/global.json -------------------------------------------------------------------------------- /src/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/Directory.Build.props -------------------------------------------------------------------------------- /src/Directory.Packages.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/Directory.Packages.props -------------------------------------------------------------------------------- /src/key.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/key.snk -------------------------------------------------------------------------------- /src/libs/DependencyPropertyGenerator.Attributes/AddOwnerAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/libs/DependencyPropertyGenerator.Attributes/AddOwnerAttribute.cs -------------------------------------------------------------------------------- /src/libs/DependencyPropertyGenerator.Attributes/AttachedDependencyPropertyAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/libs/DependencyPropertyGenerator.Attributes/AttachedDependencyPropertyAttribute.cs -------------------------------------------------------------------------------- /src/libs/DependencyPropertyGenerator.Attributes/DefaultBindingMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/libs/DependencyPropertyGenerator.Attributes/DefaultBindingMode.cs -------------------------------------------------------------------------------- /src/libs/DependencyPropertyGenerator.Attributes/DependencyPropertyAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/libs/DependencyPropertyGenerator.Attributes/DependencyPropertyAttribute.cs -------------------------------------------------------------------------------- /src/libs/DependencyPropertyGenerator.Attributes/DependencyPropertyGenerator.Attributes.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/libs/DependencyPropertyGenerator.Attributes/DependencyPropertyGenerator.Attributes.csproj -------------------------------------------------------------------------------- /src/libs/DependencyPropertyGenerator.Attributes/Localizability.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/libs/DependencyPropertyGenerator.Attributes/Localizability.cs -------------------------------------------------------------------------------- /src/libs/DependencyPropertyGenerator.Attributes/OverrideMetadataAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/libs/DependencyPropertyGenerator.Attributes/OverrideMetadataAttribute.cs -------------------------------------------------------------------------------- /src/libs/DependencyPropertyGenerator.Attributes/RoutedEventAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/libs/DependencyPropertyGenerator.Attributes/RoutedEventAttribute.cs -------------------------------------------------------------------------------- /src/libs/DependencyPropertyGenerator.Attributes/RoutedEventStrategy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/libs/DependencyPropertyGenerator.Attributes/RoutedEventStrategy.cs -------------------------------------------------------------------------------- /src/libs/DependencyPropertyGenerator.Attributes/SourceTrigger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/libs/DependencyPropertyGenerator.Attributes/SourceTrigger.cs -------------------------------------------------------------------------------- /src/libs/DependencyPropertyGenerator.Attributes/WeakEventAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/libs/DependencyPropertyGenerator.Attributes/WeakEventAttribute.cs -------------------------------------------------------------------------------- /src/libs/DependencyPropertyGenerator/DependencyPropertyGenerator.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/libs/DependencyPropertyGenerator/DependencyPropertyGenerator.csproj -------------------------------------------------------------------------------- /src/libs/DependencyPropertyGenerator/DependencyPropertyGenerator.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/libs/DependencyPropertyGenerator/DependencyPropertyGenerator.props -------------------------------------------------------------------------------- /src/libs/DependencyPropertyGenerator/Generators/AddOwnerGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/libs/DependencyPropertyGenerator/Generators/AddOwnerGenerator.cs -------------------------------------------------------------------------------- /src/libs/DependencyPropertyGenerator/Generators/AttachedDependencyPropertyGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/libs/DependencyPropertyGenerator/Generators/AttachedDependencyPropertyGenerator.cs -------------------------------------------------------------------------------- /src/libs/DependencyPropertyGenerator/Generators/DependencyPropertyGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/libs/DependencyPropertyGenerator/Generators/DependencyPropertyGenerator.cs -------------------------------------------------------------------------------- /src/libs/DependencyPropertyGenerator/Generators/OverrideMetadataGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/libs/DependencyPropertyGenerator/Generators/OverrideMetadataGenerator.cs -------------------------------------------------------------------------------- /src/libs/DependencyPropertyGenerator/Generators/PrepareData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/libs/DependencyPropertyGenerator/Generators/PrepareData.cs -------------------------------------------------------------------------------- /src/libs/DependencyPropertyGenerator/Generators/RoutedEventGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/libs/DependencyPropertyGenerator/Generators/RoutedEventGenerator.cs -------------------------------------------------------------------------------- /src/libs/DependencyPropertyGenerator/Generators/StaticConstructorGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/libs/DependencyPropertyGenerator/Generators/StaticConstructorGenerator.cs -------------------------------------------------------------------------------- /src/libs/DependencyPropertyGenerator/Generators/WeakEventGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/libs/DependencyPropertyGenerator/Generators/WeakEventGenerator.cs -------------------------------------------------------------------------------- /src/libs/DependencyPropertyGenerator/Models/ClassData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/libs/DependencyPropertyGenerator/Models/ClassData.cs -------------------------------------------------------------------------------- /src/libs/DependencyPropertyGenerator/Models/DependencyPropertyData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/libs/DependencyPropertyGenerator/Models/DependencyPropertyData.cs -------------------------------------------------------------------------------- /src/libs/DependencyPropertyGenerator/Models/EventData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/libs/DependencyPropertyGenerator/Models/EventData.cs -------------------------------------------------------------------------------- /src/libs/DependencyPropertyGenerator/Sources/Sources.AddOwner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/libs/DependencyPropertyGenerator/Sources/Sources.AddOwner.cs -------------------------------------------------------------------------------- /src/libs/DependencyPropertyGenerator/Sources/Sources.AttachedDependencyProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/libs/DependencyPropertyGenerator/Sources/Sources.AttachedDependencyProperty.cs -------------------------------------------------------------------------------- /src/libs/DependencyPropertyGenerator/Sources/Sources.Attributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/libs/DependencyPropertyGenerator/Sources/Sources.Attributes.cs -------------------------------------------------------------------------------- /src/libs/DependencyPropertyGenerator/Sources/Sources.Callbacks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/libs/DependencyPropertyGenerator/Sources/Sources.Callbacks.cs -------------------------------------------------------------------------------- /src/libs/DependencyPropertyGenerator/Sources/Sources.DependencyProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/libs/DependencyPropertyGenerator/Sources/Sources.DependencyProperty.cs -------------------------------------------------------------------------------- /src/libs/DependencyPropertyGenerator/Sources/Sources.Helpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/libs/DependencyPropertyGenerator/Sources/Sources.Helpers.cs -------------------------------------------------------------------------------- /src/libs/DependencyPropertyGenerator/Sources/Sources.OverrideMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/libs/DependencyPropertyGenerator/Sources/Sources.OverrideMetadata.cs -------------------------------------------------------------------------------- /src/libs/DependencyPropertyGenerator/Sources/Sources.RoutedEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/libs/DependencyPropertyGenerator/Sources/Sources.RoutedEvent.cs -------------------------------------------------------------------------------- /src/libs/DependencyPropertyGenerator/Sources/Sources.StaticConstructor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/libs/DependencyPropertyGenerator/Sources/Sources.StaticConstructor.cs -------------------------------------------------------------------------------- /src/libs/DependencyPropertyGenerator/Sources/Sources.WeakEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/libs/DependencyPropertyGenerator/Sources/Sources.WeakEvent.cs -------------------------------------------------------------------------------- /src/libs/DependencyPropertyGenerator/Sources/Sources.XmlDocumentation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/libs/DependencyPropertyGenerator/Sources/Sources.XmlDocumentation.cs -------------------------------------------------------------------------------- /src/libs/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/libs/Directory.Build.props -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.IntegrationTests/DependencyPropertyGenerator.IntegrationTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.IntegrationTests/DependencyPropertyGenerator.IntegrationTests.csproj -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.IntegrationTests/DependencyPropertyGeneratorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.IntegrationTests/DependencyPropertyGeneratorTests.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.IntegrationTests/MainWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.IntegrationTests/MainWindow.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/DependencyPropertyGenerator.SnapshotTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/DependencyPropertyGenerator.SnapshotTests.csproj -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/ModuleInitializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/ModuleInitializer.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/AddOwner/Avalonia/Tests.AddOwner_Diagnostics.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/AddOwner/Avalonia/Tests.AddOwner_Diagnostics.verified.txt -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/AddOwner/Avalonia/_#AddOwnerAttribute.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/AddOwner/Avalonia/_#AddOwnerAttribute.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/AddOwner/Avalonia/_#DefaultBindingMode.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/AddOwner/Avalonia/_#DefaultBindingMode.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/AddOwner/Avalonia/_#Localizability.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/AddOwner/Avalonia/_#Localizability.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/AddOwner/Avalonia/_#SourceTrigger.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/AddOwner/Avalonia/_#SourceTrigger.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/AddOwner/Maui/Tests.AddOwner_Diagnostics.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/AddOwner/Maui/Tests.AddOwner_Diagnostics.verified.txt -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/AddOwner/Maui/_#AddOwnerAttribute.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/AddOwner/Maui/_#AddOwnerAttribute.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/AddOwner/Maui/_#DefaultBindingMode.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/AddOwner/Maui/_#DefaultBindingMode.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/AddOwner/Maui/_#Localizability.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/AddOwner/Maui/_#Localizability.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/AddOwner/Maui/_#SourceTrigger.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/AddOwner/Maui/_#SourceTrigger.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/AddOwner/Uno/Tests.AddOwner_Diagnostics.verified.txt: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/AddOwner/Uno/_#AddOwnerAttribute.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/AddOwner/Uno/_#AddOwnerAttribute.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/AddOwner/Uno/_#DefaultBindingMode.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/AddOwner/Uno/_#DefaultBindingMode.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/AddOwner/Uno/_#Localizability.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/AddOwner/Uno/_#Localizability.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/AddOwner/Uno/_#SourceTrigger.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/AddOwner/Uno/_#SourceTrigger.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/AddOwner/UnoWinUi/Tests.AddOwner_Diagnostics.verified.txt: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/AddOwner/UnoWinUi/_#AddOwnerAttribute.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/AddOwner/UnoWinUi/_#AddOwnerAttribute.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/AddOwner/UnoWinUi/_#DefaultBindingMode.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/AddOwner/UnoWinUi/_#DefaultBindingMode.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/AddOwner/UnoWinUi/_#Localizability.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/AddOwner/UnoWinUi/_#Localizability.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/AddOwner/UnoWinUi/_#SourceTrigger.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/AddOwner/UnoWinUi/_#SourceTrigger.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/AddOwner/Wpf/Tests.AddOwner_Diagnostics.verified.txt: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/AddOwner/Wpf/_#AddOwnerAttribute.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/AddOwner/Wpf/_#AddOwnerAttribute.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/AddOwner/Wpf/_#DefaultBindingMode.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/AddOwner/Wpf/_#DefaultBindingMode.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/AddOwner/Wpf/_#Localizability.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/AddOwner/Wpf/_#Localizability.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/AddOwner/Wpf/_#SourceTrigger.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/AddOwner/Wpf/_#SourceTrigger.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/AddOwner2/Avalonia/Tests.AddOwner2_Diagnostics.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/AddOwner2/Avalonia/Tests.AddOwner2_Diagnostics.verified.txt -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/AddOwner2/Avalonia/_#AddOwnerAttribute.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/AddOwner2/Avalonia/_#AddOwnerAttribute.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/AddOwner2/Avalonia/_#DefaultBindingMode.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/AddOwner2/Avalonia/_#DefaultBindingMode.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/AddOwner2/Avalonia/_#Localizability.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/AddOwner2/Avalonia/_#Localizability.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/AddOwner2/Avalonia/_#SourceTrigger.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/AddOwner2/Avalonia/_#SourceTrigger.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/AddOwner2/Maui/Tests.AddOwner2_Diagnostics.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/AddOwner2/Maui/Tests.AddOwner2_Diagnostics.verified.txt -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/AddOwner2/Maui/_#AddOwnerAttribute.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/AddOwner2/Maui/_#AddOwnerAttribute.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/AddOwner2/Maui/_#DefaultBindingMode.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/AddOwner2/Maui/_#DefaultBindingMode.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/AddOwner2/Maui/_#Localizability.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/AddOwner2/Maui/_#Localizability.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/AddOwner2/Maui/_#SourceTrigger.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/AddOwner2/Maui/_#SourceTrigger.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/AddOwner2/Uno/Tests.AddOwner2_Diagnostics.verified.txt: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/AddOwner2/Uno/_#AddOwnerAttribute.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/AddOwner2/Uno/_#AddOwnerAttribute.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/AddOwner2/Uno/_#DefaultBindingMode.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/AddOwner2/Uno/_#DefaultBindingMode.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/AddOwner2/Uno/_#Localizability.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/AddOwner2/Uno/_#Localizability.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/AddOwner2/Uno/_#SourceTrigger.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/AddOwner2/Uno/_#SourceTrigger.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/AddOwner2/UnoWinUi/Tests.AddOwner2_Diagnostics.verified.txt: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/AddOwner2/UnoWinUi/_#AddOwnerAttribute.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/AddOwner2/UnoWinUi/_#AddOwnerAttribute.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/AddOwner2/UnoWinUi/_#DefaultBindingMode.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/AddOwner2/UnoWinUi/_#DefaultBindingMode.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/AddOwner2/UnoWinUi/_#Localizability.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/AddOwner2/UnoWinUi/_#Localizability.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/AddOwner2/UnoWinUi/_#SourceTrigger.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/AddOwner2/UnoWinUi/_#SourceTrigger.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/AddOwner2/Wpf/Tests.AddOwner2_Diagnostics.verified.txt: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/AddOwner2/Wpf/_#AddOwnerAttribute.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/AddOwner2/Wpf/_#AddOwnerAttribute.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/AddOwner2/Wpf/_#DefaultBindingMode.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/AddOwner2/Wpf/_#DefaultBindingMode.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/AddOwner2/Wpf/_#Localizability.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/AddOwner2/Wpf/_#Localizability.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/AddOwner2/Wpf/_#SourceTrigger.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/AddOwner2/Wpf/_#SourceTrigger.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/AttachedPropertyWithoutSecondType/Avalonia/Tests.AttachedPropertyWithoutSecondType_Diagnostics.verified.txt: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/AttachedPropertyWithoutSecondType/Uno/Tests.AttachedPropertyWithoutSecondType_Diagnostics.verified.txt: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/AttachedPropertyWithoutSecondType/UnoWinUi/Tests.AttachedPropertyWithoutSecondType_Diagnostics.verified.txt: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/AttachedPropertyWithoutSecondType/Wpf/Tests.AttachedPropertyWithoutSecondType_Diagnostics.verified.txt: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/AttachedReadOnlyProperty/Avalonia/Tests.AttachedReadOnlyProperty_Diagnostics.verified.txt: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/AttachedReadOnlyProperty/Maui/Tests.AttachedReadOnlyProperty_Diagnostics.verified.txt: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/AttachedReadOnlyProperty/Maui/_#SourceTrigger.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/AttachedReadOnlyProperty/Maui/_#SourceTrigger.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/AttachedReadOnlyProperty/Uno/Tests.AttachedReadOnlyProperty_Diagnostics.verified.txt: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/AttachedReadOnlyProperty/UnoWinUi/Tests.AttachedReadOnlyProperty_Diagnostics.verified.txt: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/AttachedReadOnlyProperty/Wpf/Tests.AttachedReadOnlyProperty_Diagnostics.verified.txt: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/AttachedRoutedEvent/Avalonia/Tests.AttachedRoutedEvent_Diagnostics.verified.txt: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/AttachedRoutedEvent/Maui/Tests.AttachedRoutedEvent_Diagnostics.verified.txt: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/AttachedRoutedEvent/Uno/Tests.AttachedRoutedEvent_Diagnostics.verified.txt: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/AttachedRoutedEvent/UnoWinUi/Tests.AttachedRoutedEvent_Diagnostics.verified.txt: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/AttachedRoutedEvent/Wpf/Tests.AttachedRoutedEvent_Diagnostics.verified.txt: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/Attributes/Avalonia/_#DefaultBindingMode.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/Attributes/Avalonia/_#DefaultBindingMode.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/Attributes/Avalonia/_#Localizability.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/Attributes/Avalonia/_#Localizability.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/Attributes/Avalonia/_#SourceTrigger.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/Attributes/Avalonia/_#SourceTrigger.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/Attributes/Maui/_#DefaultBindingMode.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/Attributes/Maui/_#DefaultBindingMode.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/Attributes/Maui/_#Localizability.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/Attributes/Maui/_#Localizability.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/Attributes/Maui/_#SourceTrigger.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/Attributes/Maui/_#SourceTrigger.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/Attributes/Uno/Tests.Attributes_Diagnostics.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/Attributes/Uno/Tests.Attributes_Diagnostics.verified.txt -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/Attributes/Uno/_#DefaultBindingMode.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/Attributes/Uno/_#DefaultBindingMode.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/Attributes/Uno/_#Localizability.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/Attributes/Uno/_#Localizability.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/Attributes/Uno/_#SourceTrigger.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/Attributes/Uno/_#SourceTrigger.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/Attributes/UnoWinUi/_#DefaultBindingMode.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/Attributes/UnoWinUi/_#DefaultBindingMode.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/Attributes/UnoWinUi/_#Localizability.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/Attributes/UnoWinUi/_#Localizability.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/Attributes/UnoWinUi/_#SourceTrigger.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/Attributes/UnoWinUi/_#SourceTrigger.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/Attributes/Wpf/Tests.Attributes_Diagnostics.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/Attributes/Wpf/Tests.Attributes_Diagnostics.verified.txt -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/Attributes/Wpf/_#DefaultBindingMode.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/Attributes/Wpf/_#DefaultBindingMode.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/Attributes/Wpf/_#Localizability.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/Attributes/Wpf/_#Localizability.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/Attributes/Wpf/_#SourceTrigger.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/Attributes/Wpf/_#SourceTrigger.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/BindEvent/Avalonia/_#DefaultBindingMode.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/BindEvent/Avalonia/_#DefaultBindingMode.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/BindEvent/Avalonia/_#Localizability.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/BindEvent/Avalonia/_#Localizability.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/BindEvent/Avalonia/_#SourceTrigger.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/BindEvent/Avalonia/_#SourceTrigger.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/BindEvent/Maui/Tests.BindEvent_Diagnostics.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/BindEvent/Maui/Tests.BindEvent_Diagnostics.verified.txt -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/BindEvent/Maui/_#DefaultBindingMode.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/BindEvent/Maui/_#DefaultBindingMode.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/BindEvent/Maui/_#Localizability.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/BindEvent/Maui/_#Localizability.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/BindEvent/Maui/_#SourceTrigger.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/BindEvent/Maui/_#SourceTrigger.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/BindEvent/Uno/Tests.BindEvent_Diagnostics.verified.txt: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/BindEvent/Uno/_#DefaultBindingMode.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/BindEvent/Uno/_#DefaultBindingMode.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/BindEvent/Uno/_#Localizability.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/BindEvent/Uno/_#Localizability.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/BindEvent/Uno/_#SourceTrigger.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/BindEvent/Uno/_#SourceTrigger.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/BindEvent/UnoWinUi/Tests.BindEvent_Diagnostics.verified.txt: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/BindEvent/UnoWinUi/_#DefaultBindingMode.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/BindEvent/UnoWinUi/_#DefaultBindingMode.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/BindEvent/UnoWinUi/_#Localizability.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/BindEvent/UnoWinUi/_#Localizability.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/BindEvent/UnoWinUi/_#SourceTrigger.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/BindEvent/UnoWinUi/_#SourceTrigger.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/BindEvent/Wpf/Tests.BindEvent_Diagnostics.verified.txt: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/BindEvent/Wpf/_#DefaultBindingMode.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/BindEvent/Wpf/_#DefaultBindingMode.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/BindEvent/Wpf/_#Localizability.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/BindEvent/Wpf/_#Localizability.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/BindEvent/Wpf/_#SourceTrigger.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/BindEvent/Wpf/_#SourceTrigger.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/BindEvents/Avalonia/_#DefaultBindingMode.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/BindEvents/Avalonia/_#DefaultBindingMode.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/BindEvents/Avalonia/_#Localizability.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/BindEvents/Avalonia/_#Localizability.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/BindEvents/Avalonia/_#SourceTrigger.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/BindEvents/Avalonia/_#SourceTrigger.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/BindEvents/Maui/_#DefaultBindingMode.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/BindEvents/Maui/_#DefaultBindingMode.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/BindEvents/Maui/_#Localizability.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/BindEvents/Maui/_#Localizability.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/BindEvents/Maui/_#SourceTrigger.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/BindEvents/Maui/_#SourceTrigger.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/BindEvents/Uno/Tests.BindEvents_Diagnostics.verified.txt: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/BindEvents/Uno/_#DefaultBindingMode.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/BindEvents/Uno/_#DefaultBindingMode.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/BindEvents/Uno/_#Localizability.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/BindEvents/Uno/_#Localizability.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/BindEvents/Uno/_#SourceTrigger.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/BindEvents/Uno/_#SourceTrigger.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/BindEvents/UnoWinUi/Tests.BindEvents_Diagnostics.verified.txt: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/BindEvents/UnoWinUi/_#DefaultBindingMode.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/BindEvents/UnoWinUi/_#DefaultBindingMode.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/BindEvents/UnoWinUi/_#Localizability.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/BindEvents/UnoWinUi/_#Localizability.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/BindEvents/UnoWinUi/_#SourceTrigger.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/BindEvents/UnoWinUi/_#SourceTrigger.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/BindEvents/Wpf/Tests.BindEvents_Diagnostics.verified.txt: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/BindEvents/Wpf/_#DefaultBindingMode.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/BindEvents/Wpf/_#DefaultBindingMode.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/BindEvents/Wpf/_#Localizability.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/BindEvents/Wpf/_#Localizability.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/BindEvents/Wpf/_#SourceTrigger.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/BindEvents/Wpf/_#SourceTrigger.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/CreateDefaultValueCallback/Avalonia/Tests.CreateDefaultValueCallback_Diagnostics.verified.txt: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/CreateDefaultValueCallback/Maui/Tests.CreateDefaultValueCallback_Diagnostics.verified.txt: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/CreateDefaultValueCallback/Uno/Tests.CreateDefaultValueCallback_Diagnostics.verified.txt: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/CreateDefaultValueCallback/UnoWinUi/Tests.CreateDefaultValueCallback_Diagnostics.verified.txt: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/CreateDefaultValueCallback/Wpf/Tests.CreateDefaultValueCallback_Diagnostics.verified.txt: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/CustomOnChanged/Avalonia/_#Localizability.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/CustomOnChanged/Avalonia/_#Localizability.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/CustomOnChanged/Avalonia/_#SourceTrigger.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/CustomOnChanged/Avalonia/_#SourceTrigger.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/CustomOnChanged/Maui/_#DefaultBindingMode.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/CustomOnChanged/Maui/_#DefaultBindingMode.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/CustomOnChanged/Maui/_#Localizability.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/CustomOnChanged/Maui/_#Localizability.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/CustomOnChanged/Maui/_#SourceTrigger.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/CustomOnChanged/Maui/_#SourceTrigger.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/CustomOnChanged/Uno/Tests.CustomOnChanged_Diagnostics.verified.txt: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/CustomOnChanged/Uno/_#DefaultBindingMode.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/CustomOnChanged/Uno/_#DefaultBindingMode.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/CustomOnChanged/Uno/_#Localizability.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/CustomOnChanged/Uno/_#Localizability.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/CustomOnChanged/Uno/_#SourceTrigger.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/CustomOnChanged/Uno/_#SourceTrigger.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/CustomOnChanged/UnoWinUi/Tests.CustomOnChanged_Diagnostics.verified.txt: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/CustomOnChanged/UnoWinUi/_#Localizability.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/CustomOnChanged/UnoWinUi/_#Localizability.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/CustomOnChanged/UnoWinUi/_#SourceTrigger.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/CustomOnChanged/UnoWinUi/_#SourceTrigger.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/CustomOnChanged/Wpf/Tests.CustomOnChanged_Diagnostics.verified.txt: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/CustomOnChanged/Wpf/_#DefaultBindingMode.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/CustomOnChanged/Wpf/_#DefaultBindingMode.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/CustomOnChanged/Wpf/_#Localizability.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/CustomOnChanged/Wpf/_#Localizability.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/CustomOnChanged/Wpf/_#SourceTrigger.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/CustomOnChanged/Wpf/_#SourceTrigger.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/CustomOnChangedAttached/Avalonia/Tests.CustomOnChangedAttached_Diagnostics.verified.txt: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/CustomOnChangedAttached/Maui/Tests.CustomOnChangedAttached_Diagnostics.verified.txt: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/CustomOnChangedAttached/Uno/Tests.CustomOnChangedAttached_Diagnostics.verified.txt: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/CustomOnChangedAttached/UnoWinUi/Tests.CustomOnChangedAttached_Diagnostics.verified.txt: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/CustomOnChangedAttached/Wpf/Tests.CustomOnChangedAttached_Diagnostics.verified.txt: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/DefaultBindingMode/Avalonia/Tests.DefaultBindingMode_Diagnostics.verified.txt: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/DefaultBindingMode/Maui/Tests.DefaultBindingMode_Diagnostics.verified.txt: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/DefaultBindingMode/Maui/_#Localizability.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/DefaultBindingMode/Maui/_#Localizability.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/DefaultBindingMode/Maui/_#SourceTrigger.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/DefaultBindingMode/Maui/_#SourceTrigger.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/DefaultBindingMode/Uno/Tests.DefaultBindingMode_Diagnostics.verified.txt: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/DefaultBindingMode/Uno/_#Localizability.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/DefaultBindingMode/Uno/_#Localizability.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/DefaultBindingMode/Uno/_#SourceTrigger.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/DefaultBindingMode/Uno/_#SourceTrigger.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/DefaultBindingMode/UnoWinUi/Tests.DefaultBindingMode_Diagnostics.verified.txt: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/DefaultBindingMode/Wpf/Tests.DefaultBindingMode_Diagnostics.verified.txt: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/DefaultBindingMode/Wpf/_#Localizability.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/DefaultBindingMode/Wpf/_#Localizability.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/DefaultBindingMode/Wpf/_#SourceTrigger.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/DefaultBindingMode/Wpf/_#SourceTrigger.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/DefaultUpdateSourceTrigger/Avalonia/Tests.DefaultUpdateSourceTrigger_Diagnostics.verified.txt: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/DefaultUpdateSourceTrigger/Maui/Tests.DefaultUpdateSourceTrigger_Diagnostics.verified.txt: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/DefaultUpdateSourceTrigger/Uno/Tests.DefaultUpdateSourceTrigger_Diagnostics.verified.txt: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/DefaultUpdateSourceTrigger/UnoWinUi/Tests.DefaultUpdateSourceTrigger_Diagnostics.verified.txt: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/DefaultUpdateSourceTrigger/Wpf/Tests.DefaultUpdateSourceTrigger_Diagnostics.verified.txt: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/DescriptionWithCref/Avalonia/Tests.DescriptionWithCref_Diagnostics.verified.txt: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/DescriptionWithCref/Maui/Tests.DescriptionWithCref_Diagnostics.verified.txt: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/DescriptionWithCref/Maui/_#Localizability.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/DescriptionWithCref/Maui/_#Localizability.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/DescriptionWithCref/Maui/_#SourceTrigger.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/DescriptionWithCref/Maui/_#SourceTrigger.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/DescriptionWithCref/Uno/Tests.DescriptionWithCref_Diagnostics.verified.txt: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/DescriptionWithCref/Uno/_#Localizability.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/DescriptionWithCref/Uno/_#Localizability.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/DescriptionWithCref/Uno/_#SourceTrigger.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/DescriptionWithCref/Uno/_#SourceTrigger.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/DescriptionWithCref/UnoWinUi/Tests.DescriptionWithCref_Diagnostics.verified.txt: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/DescriptionWithCref/Wpf/Tests.DescriptionWithCref_Diagnostics.verified.txt: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/DescriptionWithCref/Wpf/_#Localizability.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/DescriptionWithCref/Wpf/_#Localizability.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/DescriptionWithCref/Wpf/_#SourceTrigger.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/DescriptionWithCref/Wpf/_#SourceTrigger.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/Dictionary/Avalonia/_#DefaultBindingMode.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/Dictionary/Avalonia/_#DefaultBindingMode.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/Dictionary/Avalonia/_#Localizability.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/Dictionary/Avalonia/_#Localizability.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/Dictionary/Avalonia/_#SourceTrigger.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/Dictionary/Avalonia/_#SourceTrigger.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/Dictionary/Maui/_#DefaultBindingMode.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/Dictionary/Maui/_#DefaultBindingMode.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/Dictionary/Maui/_#Localizability.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/Dictionary/Maui/_#Localizability.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/Dictionary/Maui/_#SourceTrigger.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/Dictionary/Maui/_#SourceTrigger.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/Dictionary/Uno/Tests.Dictionary_Diagnostics.verified.txt: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/Dictionary/Uno/_#DefaultBindingMode.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/Dictionary/Uno/_#DefaultBindingMode.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/Dictionary/Uno/_#Localizability.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/Dictionary/Uno/_#Localizability.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/Dictionary/Uno/_#SourceTrigger.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/Dictionary/Uno/_#SourceTrigger.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/Dictionary/UnoWinUi/Tests.Dictionary_Diagnostics.verified.txt: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/Dictionary/UnoWinUi/_#DefaultBindingMode.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/Dictionary/UnoWinUi/_#DefaultBindingMode.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/Dictionary/UnoWinUi/_#Localizability.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/Dictionary/UnoWinUi/_#Localizability.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/Dictionary/UnoWinUi/_#SourceTrigger.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/Dictionary/UnoWinUi/_#SourceTrigger.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/Dictionary/Wpf/Tests.Dictionary_Diagnostics.verified.txt: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/Dictionary/Wpf/_#DefaultBindingMode.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/Dictionary/Wpf/_#DefaultBindingMode.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/Dictionary/Wpf/_#Localizability.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/Dictionary/Wpf/_#Localizability.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/Dictionary/Wpf/_#SourceTrigger.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/Dictionary/Wpf/_#SourceTrigger.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/Direct/Avalonia/Tests.Direct_Diagnostics.verified.txt: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/Direct/Avalonia/_#DefaultBindingMode.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/Direct/Avalonia/_#DefaultBindingMode.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/Direct/Avalonia/_#Localizability.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/Direct/Avalonia/_#Localizability.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/Direct/Avalonia/_#SourceTrigger.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/Direct/Avalonia/_#SourceTrigger.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/Direct/Maui/Tests.Direct_Diagnostics.verified.txt: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/Direct/Maui/_#DefaultBindingMode.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/Direct/Maui/_#DefaultBindingMode.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/Direct/Maui/_#DependencyPropertyAttribute.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/Direct/Maui/_#DependencyPropertyAttribute.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/Direct/Maui/_#Localizability.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/Direct/Maui/_#Localizability.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/Direct/Maui/_#SourceTrigger.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/Direct/Maui/_#SourceTrigger.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/Direct/Uno/Tests.Direct_Diagnostics.verified.txt: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/Direct/Uno/_#DefaultBindingMode.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/Direct/Uno/_#DefaultBindingMode.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/Direct/Uno/_#DependencyPropertyAttribute.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/Direct/Uno/_#DependencyPropertyAttribute.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/Direct/Uno/_#Localizability.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/Direct/Uno/_#Localizability.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/Direct/Uno/_#SourceTrigger.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/Direct/Uno/_#SourceTrigger.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/Direct/UnoWinUi/Tests.Direct_Diagnostics.verified.txt: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/Direct/UnoWinUi/_#DefaultBindingMode.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/Direct/UnoWinUi/_#DefaultBindingMode.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/Direct/UnoWinUi/_#Localizability.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/Direct/UnoWinUi/_#Localizability.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/Direct/UnoWinUi/_#SourceTrigger.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/Direct/UnoWinUi/_#SourceTrigger.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/Direct/Wpf/Tests.Direct_Diagnostics.verified.txt: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/Direct/Wpf/_#DefaultBindingMode.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/Direct/Wpf/_#DefaultBindingMode.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/Direct/Wpf/_#DependencyPropertyAttribute.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/Direct/Wpf/_#DependencyPropertyAttribute.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/Direct/Wpf/_#Localizability.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/Direct/Wpf/_#Localizability.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/Direct/Wpf/_#SourceTrigger.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/Direct/Wpf/_#SourceTrigger.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/DirectReadOnly/Avalonia/Tests.DirectReadOnly_Diagnostics.verified.txt: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/DirectReadOnly/Avalonia/_#Localizability.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/DirectReadOnly/Avalonia/_#Localizability.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/DirectReadOnly/Avalonia/_#SourceTrigger.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/DirectReadOnly/Avalonia/_#SourceTrigger.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/DirectReadOnly/Maui/Tests.DirectReadOnly_Diagnostics.verified.txt: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/DirectReadOnly/Maui/_#DefaultBindingMode.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/DirectReadOnly/Maui/_#DefaultBindingMode.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/DirectReadOnly/Maui/_#Localizability.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/DirectReadOnly/Maui/_#Localizability.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/DirectReadOnly/Maui/_#SourceTrigger.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/DirectReadOnly/Maui/_#SourceTrigger.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/DirectReadOnly/Uno/Tests.DirectReadOnly_Diagnostics.verified.txt: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/DirectReadOnly/Uno/_#DefaultBindingMode.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/DirectReadOnly/Uno/_#DefaultBindingMode.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/DirectReadOnly/Uno/_#Localizability.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/DirectReadOnly/Uno/_#Localizability.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/DirectReadOnly/Uno/_#SourceTrigger.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/DirectReadOnly/Uno/_#SourceTrigger.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/DirectReadOnly/UnoWinUi/Tests.DirectReadOnly_Diagnostics.verified.txt: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/DirectReadOnly/UnoWinUi/_#Localizability.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/DirectReadOnly/UnoWinUi/_#Localizability.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/DirectReadOnly/UnoWinUi/_#SourceTrigger.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/DirectReadOnly/UnoWinUi/_#SourceTrigger.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/DirectReadOnly/Wpf/Tests.DirectReadOnly_Diagnostics.verified.txt: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/DirectReadOnly/Wpf/_#DefaultBindingMode.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/DirectReadOnly/Wpf/_#DefaultBindingMode.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/DirectReadOnly/Wpf/_#Localizability.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/DirectReadOnly/Wpf/_#Localizability.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/DirectReadOnly/Wpf/_#SourceTrigger.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/DirectReadOnly/Wpf/_#SourceTrigger.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/Enum/Avalonia/Tests.Enum_Diagnostics.verified.txt: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/Enum/Avalonia/_#DefaultBindingMode.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/Enum/Avalonia/_#DefaultBindingMode.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/Enum/Avalonia/_#Localizability.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/Enum/Avalonia/_#Localizability.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/Enum/Avalonia/_#SourceTrigger.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/Enum/Avalonia/_#SourceTrigger.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/Enum/Maui/Tests.Enum_Diagnostics.verified.txt: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/Enum/Maui/_#DefaultBindingMode.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/Enum/Maui/_#DefaultBindingMode.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/Enum/Maui/_#Localizability.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/Enum/Maui/_#Localizability.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/Enum/Maui/_#SourceTrigger.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/Enum/Maui/_#SourceTrigger.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/Enum/Uno/Tests.Enum_Diagnostics.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/Enum/Uno/Tests.Enum_Diagnostics.verified.txt -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/Enum/Uno/_#DefaultBindingMode.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/Enum/Uno/_#DefaultBindingMode.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/Enum/Uno/_#Localizability.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/Enum/Uno/_#Localizability.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/Enum/Uno/_#SourceTrigger.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/Enum/Uno/_#SourceTrigger.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/Enum/UnoWinUi/Tests.Enum_Diagnostics.verified.txt: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/Enum/UnoWinUi/_#DefaultBindingMode.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/Enum/UnoWinUi/_#DefaultBindingMode.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/Enum/UnoWinUi/_#Localizability.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/Enum/UnoWinUi/_#Localizability.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/Enum/UnoWinUi/_#SourceTrigger.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/Enum/UnoWinUi/_#SourceTrigger.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/Enum/Wpf/Tests.Enum_Diagnostics.verified.txt: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/Enum/Wpf/_#DefaultBindingMode.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/Enum/Wpf/_#DefaultBindingMode.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/Enum/Wpf/_#Localizability.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/Enum/Wpf/_#Localizability.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/Enum/Wpf/_#SourceTrigger.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/Enum/Wpf/_#SourceTrigger.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/FloatLiterals/Avalonia/Tests.FloatLiterals_Diagnostics.verified.txt: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/FloatLiterals/Avalonia/_#Localizability.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/FloatLiterals/Avalonia/_#Localizability.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/FloatLiterals/Avalonia/_#SourceTrigger.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/FloatLiterals/Avalonia/_#SourceTrigger.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/FloatLiterals/Maui/Tests.FloatLiterals_Diagnostics.verified.txt: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/FloatLiterals/Maui/_#DefaultBindingMode.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/FloatLiterals/Maui/_#DefaultBindingMode.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/FloatLiterals/Maui/_#Localizability.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/FloatLiterals/Maui/_#Localizability.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/FloatLiterals/Maui/_#SourceTrigger.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/FloatLiterals/Maui/_#SourceTrigger.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/FloatLiterals/Uno/Tests.FloatLiterals_Diagnostics.verified.txt: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/FloatLiterals/Uno/_#DefaultBindingMode.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/FloatLiterals/Uno/_#DefaultBindingMode.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/FloatLiterals/Uno/_#Localizability.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/FloatLiterals/Uno/_#Localizability.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/FloatLiterals/Uno/_#SourceTrigger.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/FloatLiterals/Uno/_#SourceTrigger.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/FloatLiterals/UnoWinUi/Tests.FloatLiterals_Diagnostics.verified.txt: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/FloatLiterals/UnoWinUi/_#Localizability.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/FloatLiterals/UnoWinUi/_#Localizability.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/FloatLiterals/UnoWinUi/_#SourceTrigger.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/FloatLiterals/UnoWinUi/_#SourceTrigger.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/FloatLiterals/Wpf/Tests.FloatLiterals_Diagnostics.verified.txt: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/FloatLiterals/Wpf/_#DefaultBindingMode.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/FloatLiterals/Wpf/_#DefaultBindingMode.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/FloatLiterals/Wpf/_#Localizability.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/FloatLiterals/Wpf/_#Localizability.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/FloatLiterals/Wpf/_#SourceTrigger.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/FloatLiterals/Wpf/_#SourceTrigger.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/InheritClass/Avalonia/_#DefaultBindingMode.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/InheritClass/Avalonia/_#DefaultBindingMode.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/InheritClass/Avalonia/_#Localizability.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/InheritClass/Avalonia/_#Localizability.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/InheritClass/Avalonia/_#SourceTrigger.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/InheritClass/Avalonia/_#SourceTrigger.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/InheritClass/Maui/_#DefaultBindingMode.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/InheritClass/Maui/_#DefaultBindingMode.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/InheritClass/Maui/_#Localizability.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/InheritClass/Maui/_#Localizability.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/InheritClass/Maui/_#SourceTrigger.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/InheritClass/Maui/_#SourceTrigger.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/InheritClass/Uno/Tests.InheritClass_Diagnostics.verified.txt: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/InheritClass/Uno/_#DefaultBindingMode.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/InheritClass/Uno/_#DefaultBindingMode.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/InheritClass/Uno/_#Localizability.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/InheritClass/Uno/_#Localizability.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/InheritClass/Uno/_#SourceTrigger.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/InheritClass/Uno/_#SourceTrigger.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/InheritClass/UnoWinUi/Tests.InheritClass_Diagnostics.verified.txt: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/InheritClass/UnoWinUi/_#DefaultBindingMode.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/InheritClass/UnoWinUi/_#DefaultBindingMode.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/InheritClass/UnoWinUi/_#Localizability.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/InheritClass/UnoWinUi/_#Localizability.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/InheritClass/UnoWinUi/_#SourceTrigger.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/InheritClass/UnoWinUi/_#SourceTrigger.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/InheritClass/Wpf/Tests.InheritClass_Diagnostics.verified.txt: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/InheritClass/Wpf/_#DefaultBindingMode.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/InheritClass/Wpf/_#DefaultBindingMode.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/InheritClass/Wpf/_#Localizability.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/InheritClass/Wpf/_#Localizability.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/InheritClass/Wpf/_#SourceTrigger.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/InheritClass/Wpf/_#SourceTrigger.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/MultiTypesInOne/Avalonia/_#Localizability.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/MultiTypesInOne/Avalonia/_#Localizability.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/MultiTypesInOne/Avalonia/_#SourceTrigger.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/MultiTypesInOne/Avalonia/_#SourceTrigger.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/MultiTypesInOne/Maui/_#DefaultBindingMode.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/MultiTypesInOne/Maui/_#DefaultBindingMode.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/MultiTypesInOne/Maui/_#Localizability.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/MultiTypesInOne/Maui/_#Localizability.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/MultiTypesInOne/Maui/_#SourceTrigger.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/MultiTypesInOne/Maui/_#SourceTrigger.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/MultiTypesInOne/Uno/Tests.MultiTypesInOne_Diagnostics.verified.txt: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/MultiTypesInOne/Uno/_#DefaultBindingMode.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/MultiTypesInOne/Uno/_#DefaultBindingMode.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/MultiTypesInOne/Uno/_#Localizability.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/MultiTypesInOne/Uno/_#Localizability.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/MultiTypesInOne/Uno/_#SourceTrigger.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/MultiTypesInOne/Uno/_#SourceTrigger.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/MultiTypesInOne/UnoWinUi/Tests.MultiTypesInOne_Diagnostics.verified.txt: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/MultiTypesInOne/UnoWinUi/_#Localizability.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/MultiTypesInOne/UnoWinUi/_#Localizability.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/MultiTypesInOne/UnoWinUi/_#SourceTrigger.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/MultiTypesInOne/UnoWinUi/_#SourceTrigger.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/MultiTypesInOne/Wpf/Tests.MultiTypesInOne_Diagnostics.verified.txt: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/MultiTypesInOne/Wpf/_#DefaultBindingMode.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/MultiTypesInOne/Wpf/_#DefaultBindingMode.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/MultiTypesInOne/Wpf/_#Localizability.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/MultiTypesInOne/Wpf/_#Localizability.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/MultiTypesInOne/Wpf/_#SourceTrigger.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/MultiTypesInOne/Wpf/_#SourceTrigger.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/MultidimensionalArray/Maui/_#SourceTrigger.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/MultidimensionalArray/Maui/_#SourceTrigger.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/MultidimensionalArray/Uno/Tests.MultidimensionalArray_Diagnostics.verified.txt: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/MultidimensionalArray/Uno/_#Localizability.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/MultidimensionalArray/Uno/_#Localizability.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/MultidimensionalArray/Uno/_#SourceTrigger.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/MultidimensionalArray/Uno/_#SourceTrigger.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/MultidimensionalArray/UnoWinUi/Tests.MultidimensionalArray_Diagnostics.verified.txt: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/MultidimensionalArray/Wpf/Tests.MultidimensionalArray_Diagnostics.verified.txt: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/MultidimensionalArray/Wpf/_#Localizability.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/MultidimensionalArray/Wpf/_#Localizability.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/MultidimensionalArray/Wpf/_#SourceTrigger.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/MultidimensionalArray/Wpf/_#SourceTrigger.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/MultilineDescription/Avalonia/Tests.MultilineDescription_Diagnostics.verified.txt: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/MultilineDescription/Maui/Tests.MultilineDescription_Diagnostics.verified.txt: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/MultilineDescription/Maui/_#Localizability.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/MultilineDescription/Maui/_#Localizability.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/MultilineDescription/Maui/_#SourceTrigger.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/MultilineDescription/Maui/_#SourceTrigger.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/MultilineDescription/Uno/Tests.MultilineDescription_Diagnostics.verified.txt: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/MultilineDescription/Uno/_#Localizability.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/MultilineDescription/Uno/_#Localizability.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/MultilineDescription/Uno/_#SourceTrigger.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/MultilineDescription/Uno/_#SourceTrigger.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/MultilineDescription/UnoWinUi/Tests.MultilineDescription_Diagnostics.verified.txt: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/MultilineDescription/Wpf/Tests.MultilineDescription_Diagnostics.verified.txt: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/MultilineDescription/Wpf/_#Localizability.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/MultilineDescription/Wpf/_#Localizability.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/MultilineDescription/Wpf/_#SourceTrigger.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/MultilineDescription/Wpf/_#SourceTrigger.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/MultipleClassDeclarations/Avalonia/Tests.MultipleClassDeclarations_Diagnostics.verified.txt: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/MultipleClassDeclarations/Maui/Tests.MultipleClassDeclarations_Diagnostics.verified.txt: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/MultipleClassDeclarations/Uno/Tests.MultipleClassDeclarations_Diagnostics.verified.txt: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/MultipleClassDeclarations/UnoWinUi/Tests.MultipleClassDeclarations_Diagnostics.verified.txt: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/MultipleClassDeclarations/Wpf/Tests.MultipleClassDeclarations_Diagnostics.verified.txt: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/NonGenericAttributes/Avalonia/Tests.NonGenericAttributes_Diagnostics.verified.txt: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/NonGenericAttributes/Maui/Tests.NonGenericAttributes_Diagnostics.verified.txt: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/NonGenericAttributes/Maui/_#Localizability.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/NonGenericAttributes/Maui/_#Localizability.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/NonGenericAttributes/Maui/_#SourceTrigger.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/NonGenericAttributes/Maui/_#SourceTrigger.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/NonGenericAttributes/Uno/Tests.NonGenericAttributes_Diagnostics.verified.txt: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/NonGenericAttributes/Uno/_#Localizability.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/NonGenericAttributes/Uno/_#Localizability.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/NonGenericAttributes/Uno/_#SourceTrigger.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/NonGenericAttributes/Uno/_#SourceTrigger.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/NonGenericAttributes/UnoWinUi/Tests.NonGenericAttributes_Diagnostics.verified.txt: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/NonGenericAttributes/Wpf/Tests.NonGenericAttributes_Diagnostics.verified.txt: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/NonGenericAttributes/Wpf/_#Localizability.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/NonGenericAttributes/Wpf/_#Localizability.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/NonGenericAttributes/Wpf/_#SourceTrigger.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/NonGenericAttributes/Wpf/_#SourceTrigger.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/NoneFramework/None/Tests.NoneFramework_Diagnostics.verified.txt: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/NoneFramework/None/_#WeakEventAttribute.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/NoneFramework/None/_#WeakEventAttribute.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/NoneFramework/None/_.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/NoneFramework/None/_.verified.txt -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/NullableDisable/Avalonia/_#Localizability.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/NullableDisable/Avalonia/_#Localizability.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/NullableDisable/Avalonia/_#SourceTrigger.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/NullableDisable/Avalonia/_#SourceTrigger.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/NullableDisable/Maui/_#DefaultBindingMode.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/NullableDisable/Maui/_#DefaultBindingMode.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/NullableDisable/Maui/_#Localizability.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/NullableDisable/Maui/_#Localizability.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/NullableDisable/Maui/_#SourceTrigger.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/NullableDisable/Maui/_#SourceTrigger.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/NullableDisable/Uno/Tests.NullableDisable_Diagnostics.verified.txt: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/NullableDisable/Uno/_#DefaultBindingMode.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/NullableDisable/Uno/_#DefaultBindingMode.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/NullableDisable/Uno/_#Localizability.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/NullableDisable/Uno/_#Localizability.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/NullableDisable/Uno/_#SourceTrigger.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/NullableDisable/Uno/_#SourceTrigger.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/NullableDisable/UnoWinUi/Tests.NullableDisable_Diagnostics.verified.txt: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/NullableDisable/UnoWinUi/_#Localizability.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/NullableDisable/UnoWinUi/_#Localizability.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/NullableDisable/UnoWinUi/_#SourceTrigger.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/NullableDisable/UnoWinUi/_#SourceTrigger.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/NullableDisable/Wpf/Tests.NullableDisable_Diagnostics.verified.txt: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/NullableDisable/Wpf/_#DefaultBindingMode.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/NullableDisable/Wpf/_#DefaultBindingMode.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/NullableDisable/Wpf/_#Localizability.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/NullableDisable/Wpf/_#Localizability.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/NullableDisable/Wpf/_#SourceTrigger.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/NullableDisable/Wpf/_#SourceTrigger.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/NullableValueType/Avalonia/_#SourceTrigger.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/NullableValueType/Avalonia/_#SourceTrigger.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/NullableValueType/Maui/_#Localizability.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/NullableValueType/Maui/_#Localizability.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/NullableValueType/Maui/_#SourceTrigger.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/NullableValueType/Maui/_#SourceTrigger.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/NullableValueType/Uno/Tests.NullableValueType_Diagnostics.verified.txt: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/NullableValueType/Uno/_#DefaultBindingMode.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/NullableValueType/Uno/_#DefaultBindingMode.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/NullableValueType/Uno/_#Localizability.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/NullableValueType/Uno/_#Localizability.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/NullableValueType/Uno/_#SourceTrigger.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/NullableValueType/Uno/_#SourceTrigger.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/NullableValueType/UnoWinUi/Tests.NullableValueType_Diagnostics.verified.txt: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/NullableValueType/UnoWinUi/_#SourceTrigger.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/NullableValueType/UnoWinUi/_#SourceTrigger.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/NullableValueType/Wpf/Tests.NullableValueType_Diagnostics.verified.txt: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/NullableValueType/Wpf/_#DefaultBindingMode.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/NullableValueType/Wpf/_#DefaultBindingMode.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/NullableValueType/Wpf/_#Localizability.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/NullableValueType/Wpf/_#Localizability.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/NullableValueType/Wpf/_#SourceTrigger.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/NullableValueType/Wpf/_#SourceTrigger.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/OverrideMetadata/Avalonia/_#Localizability.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/OverrideMetadata/Avalonia/_#Localizability.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/OverrideMetadata/Avalonia/_#SourceTrigger.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/OverrideMetadata/Avalonia/_#SourceTrigger.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/OverrideMetadata/Maui/_#DefaultBindingMode.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/OverrideMetadata/Maui/_#DefaultBindingMode.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/OverrideMetadata/Maui/_#Localizability.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/OverrideMetadata/Maui/_#Localizability.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/OverrideMetadata/Maui/_#SourceTrigger.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/OverrideMetadata/Maui/_#SourceTrigger.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/OverrideMetadata/Uno/Tests.OverrideMetadata_Diagnostics.verified.txt: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/OverrideMetadata/Uno/_#DefaultBindingMode.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/OverrideMetadata/Uno/_#DefaultBindingMode.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/OverrideMetadata/Uno/_#Localizability.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/OverrideMetadata/Uno/_#Localizability.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/OverrideMetadata/Uno/_#SourceTrigger.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/OverrideMetadata/Uno/_#SourceTrigger.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/OverrideMetadata/UnoWinUi/Tests.OverrideMetadata_Diagnostics.verified.txt: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/OverrideMetadata/UnoWinUi/_#Localizability.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/OverrideMetadata/UnoWinUi/_#Localizability.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/OverrideMetadata/UnoWinUi/_#SourceTrigger.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/OverrideMetadata/UnoWinUi/_#SourceTrigger.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/OverrideMetadata/Wpf/Tests.OverrideMetadata_Diagnostics.verified.txt: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/OverrideMetadata/Wpf/_#DefaultBindingMode.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/OverrideMetadata/Wpf/_#DefaultBindingMode.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/OverrideMetadata/Wpf/_#Localizability.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/OverrideMetadata/Wpf/_#Localizability.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/OverrideMetadata/Wpf/_#SourceTrigger.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/OverrideMetadata/Wpf/_#SourceTrigger.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/OverrideMetadataForReadOnlyProperty/Uno/Tests.OverrideMetadataForReadOnlyProperty_Diagnostics.verified.txt: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/OverrideMetadataForReadOnlyProperty/UnoWinUi/Tests.OverrideMetadataForReadOnlyProperty_Diagnostics.verified.txt: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/OverrideMetadataForReadOnlyProperty/Wpf/Tests.OverrideMetadataForReadOnlyProperty_Diagnostics.verified.txt: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/PrimitiveTypeArray/Maui/_#Localizability.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/PrimitiveTypeArray/Maui/_#Localizability.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/PrimitiveTypeArray/Maui/_#SourceTrigger.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/PrimitiveTypeArray/Maui/_#SourceTrigger.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/PrimitiveTypeArray/Uno/Tests.PrimitiveTypeArray_Diagnostics.verified.txt: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/PrimitiveTypeArray/Uno/_#Localizability.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/PrimitiveTypeArray/Uno/_#Localizability.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/PrimitiveTypeArray/Uno/_#SourceTrigger.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/PrimitiveTypeArray/Uno/_#SourceTrigger.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/PrimitiveTypeArray/UnoWinUi/Tests.PrimitiveTypeArray_Diagnostics.verified.txt: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/PrimitiveTypeArray/Wpf/Tests.PrimitiveTypeArray_Diagnostics.verified.txt: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/PrimitiveTypeArray/Wpf/_#Localizability.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/PrimitiveTypeArray/Wpf/_#Localizability.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/PrimitiveTypeArray/Wpf/_#SourceTrigger.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/PrimitiveTypeArray/Wpf/_#SourceTrigger.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/ReadOnlyProperty/Avalonia/Tests.ReadOnlyProperty_Diagnostics.verified.txt: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/ReadOnlyProperty/Avalonia/_#Localizability.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/ReadOnlyProperty/Avalonia/_#Localizability.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/ReadOnlyProperty/Avalonia/_#SourceTrigger.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/ReadOnlyProperty/Avalonia/_#SourceTrigger.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/ReadOnlyProperty/Maui/Tests.ReadOnlyProperty_Diagnostics.verified.txt: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/ReadOnlyProperty/Maui/_#DefaultBindingMode.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/ReadOnlyProperty/Maui/_#DefaultBindingMode.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/ReadOnlyProperty/Maui/_#Localizability.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/ReadOnlyProperty/Maui/_#Localizability.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/ReadOnlyProperty/Maui/_#SourceTrigger.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/ReadOnlyProperty/Maui/_#SourceTrigger.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/ReadOnlyProperty/Uno/Tests.ReadOnlyProperty_Diagnostics.verified.txt: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/ReadOnlyProperty/Uno/_#DefaultBindingMode.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/ReadOnlyProperty/Uno/_#DefaultBindingMode.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/ReadOnlyProperty/Uno/_#Localizability.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/ReadOnlyProperty/Uno/_#Localizability.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/ReadOnlyProperty/Uno/_#SourceTrigger.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/ReadOnlyProperty/Uno/_#SourceTrigger.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/ReadOnlyProperty/UnoWinUi/Tests.ReadOnlyProperty_Diagnostics.verified.txt: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/ReadOnlyProperty/UnoWinUi/_#Localizability.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/ReadOnlyProperty/UnoWinUi/_#Localizability.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/ReadOnlyProperty/UnoWinUi/_#SourceTrigger.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/ReadOnlyProperty/UnoWinUi/_#SourceTrigger.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/ReadOnlyProperty/Wpf/Tests.ReadOnlyProperty_Diagnostics.verified.txt: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/ReadOnlyProperty/Wpf/_#DefaultBindingMode.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/ReadOnlyProperty/Wpf/_#DefaultBindingMode.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/ReadOnlyProperty/Wpf/_#Localizability.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/ReadOnlyProperty/Wpf/_#Localizability.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/ReadOnlyProperty/Wpf/_#SourceTrigger.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/ReadOnlyProperty/Wpf/_#SourceTrigger.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/ReadmeExample/Avalonia/Tests.ReadmeExample_Diagnostics.verified.txt: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/ReadmeExample/Avalonia/_#Localizability.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/ReadmeExample/Avalonia/_#Localizability.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/ReadmeExample/Avalonia/_#SourceTrigger.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/ReadmeExample/Avalonia/_#SourceTrigger.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/ReadmeExample/Maui/Tests.ReadmeExample_Diagnostics.verified.txt: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/ReadmeExample/Maui/_#DefaultBindingMode.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/ReadmeExample/Maui/_#DefaultBindingMode.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/ReadmeExample/Maui/_#Localizability.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/ReadmeExample/Maui/_#Localizability.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/ReadmeExample/Maui/_#SourceTrigger.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/ReadmeExample/Maui/_#SourceTrigger.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/ReadmeExample/Uno/_#DefaultBindingMode.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/ReadmeExample/Uno/_#DefaultBindingMode.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/ReadmeExample/Uno/_#Localizability.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/ReadmeExample/Uno/_#Localizability.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/ReadmeExample/Uno/_#SourceTrigger.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/ReadmeExample/Uno/_#SourceTrigger.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/ReadmeExample/UnoWinUi/Tests.ReadmeExample_Diagnostics.verified.txt: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/ReadmeExample/UnoWinUi/_#Localizability.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/ReadmeExample/UnoWinUi/_#Localizability.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/ReadmeExample/UnoWinUi/_#SourceTrigger.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/ReadmeExample/UnoWinUi/_#SourceTrigger.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/ReadmeExample/Wpf/Tests.ReadmeExample_Diagnostics.verified.txt: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/ReadmeExample/Wpf/_#DefaultBindingMode.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/ReadmeExample/Wpf/_#DefaultBindingMode.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/ReadmeExample/Wpf/_#Localizability.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/ReadmeExample/Wpf/_#Localizability.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/ReadmeExample/Wpf/_#SourceTrigger.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/ReadmeExample/Wpf/_#SourceTrigger.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/RoutedEvent/Avalonia/Tests.RoutedEvent_Diagnostics.verified.txt: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/RoutedEvent/Avalonia/_#RoutedEventStrategy.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/RoutedEvent/Avalonia/_#RoutedEventStrategy.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/RoutedEvent/Maui/Tests.RoutedEvent_Diagnostics.verified.txt: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/RoutedEvent/Maui/_#RoutedEventAttribute.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/RoutedEvent/Maui/_#RoutedEventAttribute.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/RoutedEvent/Maui/_#RoutedEventStrategy.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/RoutedEvent/Maui/_#RoutedEventStrategy.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/RoutedEvent/Uno/Tests.RoutedEvent_Diagnostics.verified.txt: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/RoutedEvent/Uno/_#RoutedEventAttribute.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/RoutedEvent/Uno/_#RoutedEventAttribute.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/RoutedEvent/Uno/_#RoutedEventStrategy.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/RoutedEvent/Uno/_#RoutedEventStrategy.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/RoutedEvent/UnoWinUi/Tests.RoutedEvent_Diagnostics.verified.txt: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/RoutedEvent/UnoWinUi/_#RoutedEventStrategy.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/RoutedEvent/UnoWinUi/_#RoutedEventStrategy.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/RoutedEvent/Wpf/Tests.RoutedEvent_Diagnostics.verified.txt: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/RoutedEvent/Wpf/_#RoutedEventAttribute.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/RoutedEvent/Wpf/_#RoutedEventAttribute.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/RoutedEvent/Wpf/_#RoutedEventStrategy.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/RoutedEvent/Wpf/_#RoutedEventStrategy.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/SameClassAsTypeParameter/Avalonia/Tests.SameClassAsTypeParameter_Diagnostics.verified.txt: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/SameClassAsTypeParameter/Maui/Tests.SameClassAsTypeParameter_Diagnostics.verified.txt: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/SameClassAsTypeParameter/Uno/Tests.SameClassAsTypeParameter_Diagnostics.verified.txt: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/SameClassAsTypeParameter/UnoWinUi/Tests.SameClassAsTypeParameter_Diagnostics.verified.txt: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/SameClassAsTypeParameter/Wpf/Tests.SameClassAsTypeParameter_Diagnostics.verified.txt: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/SameNameDifferentNamespaces/Uno/Tests.SameNameDifferentNamespaces_Diagnostics.verified.txt: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/SameNameDifferentNamespaces/UnoWinUi/Tests.SameNameDifferentNamespaces_Diagnostics.verified.txt: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/SameNameDifferentNamespaces/Wpf/Tests.SameNameDifferentNamespaces_Diagnostics.verified.txt: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/StaticWeakEvent/Avalonia/Tests.StaticWeakEvent_Diagnostics.verified.txt: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/StaticWeakEvent/Maui/Tests.StaticWeakEvent_Diagnostics.verified.txt: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/StaticWeakEvent/Maui/_#WeakEventAttribute.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/StaticWeakEvent/Maui/_#WeakEventAttribute.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/StaticWeakEvent/Uno/Tests.StaticWeakEvent_Diagnostics.verified.txt: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/StaticWeakEvent/Uno/_#WeakEventAttribute.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/StaticWeakEvent/Uno/_#WeakEventAttribute.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/StaticWeakEvent/UnoWinUi/Tests.StaticWeakEvent_Diagnostics.verified.txt: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/StaticWeakEvent/Wpf/Tests.StaticWeakEvent_Diagnostics.verified.txt: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/StaticWeakEvent/Wpf/_#WeakEventAttribute.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/StaticWeakEvent/Wpf/_#WeakEventAttribute.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/StaticWeakEventWithType/Avalonia/Tests.StaticWeakEventWithType_Diagnostics.verified.txt: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/StaticWeakEventWithType/Maui/Tests.StaticWeakEventWithType_Diagnostics.verified.txt: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/StaticWeakEventWithType/Uno/Tests.StaticWeakEventWithType_Diagnostics.verified.txt: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/StaticWeakEventWithType/UnoWinUi/Tests.StaticWeakEventWithType_Diagnostics.verified.txt: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/Tuples/Avalonia/Tests.Tuples_Diagnostics.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/Tuples/Avalonia/Tests.Tuples_Diagnostics.verified.txt -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/Tuples/Avalonia/_#DefaultBindingMode.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/Tuples/Avalonia/_#DefaultBindingMode.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/Tuples/Avalonia/_#Localizability.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/Tuples/Avalonia/_#Localizability.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/Tuples/Avalonia/_#SourceTrigger.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/Tuples/Avalonia/_#SourceTrigger.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/Tuples/Maui/Tests.Tuples_Diagnostics.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/Tuples/Maui/Tests.Tuples_Diagnostics.verified.txt -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/Tuples/Maui/_#DefaultBindingMode.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/Tuples/Maui/_#DefaultBindingMode.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/Tuples/Maui/_#DependencyPropertyAttribute.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/Tuples/Maui/_#DependencyPropertyAttribute.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/Tuples/Maui/_#Localizability.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/Tuples/Maui/_#Localizability.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/Tuples/Maui/_#SourceTrigger.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/Tuples/Maui/_#SourceTrigger.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/Tuples/Uno/Tests.Tuples_Diagnostics.verified.txt: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/Tuples/Uno/_#DefaultBindingMode.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/Tuples/Uno/_#DefaultBindingMode.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/Tuples/Uno/_#DependencyPropertyAttribute.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/Tuples/Uno/_#DependencyPropertyAttribute.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/Tuples/Uno/_#Localizability.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/Tuples/Uno/_#Localizability.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/Tuples/Uno/_#SourceTrigger.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/Tuples/Uno/_#SourceTrigger.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/Tuples/UnoWinUi/Tests.Tuples_Diagnostics.verified.txt: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/Tuples/UnoWinUi/_#DefaultBindingMode.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/Tuples/UnoWinUi/_#DefaultBindingMode.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/Tuples/UnoWinUi/_#Localizability.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/Tuples/UnoWinUi/_#Localizability.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/Tuples/UnoWinUi/_#SourceTrigger.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/Tuples/UnoWinUi/_#SourceTrigger.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/Tuples/Wpf/Tests.Tuples_Diagnostics.verified.txt: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/Tuples/Wpf/_#DefaultBindingMode.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/Tuples/Wpf/_#DefaultBindingMode.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/Tuples/Wpf/_#DependencyPropertyAttribute.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/Tuples/Wpf/_#DependencyPropertyAttribute.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/Tuples/Wpf/_#Localizability.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/Tuples/Wpf/_#Localizability.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/Tuples/Wpf/_#SourceTrigger.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/Tuples/Wpf/_#SourceTrigger.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/ValidateAndCoerce/Avalonia/Tests.ValidateAndCoerce_Diagnostics.verified.txt: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/ValidateAndCoerce/Avalonia/_#SourceTrigger.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/ValidateAndCoerce/Avalonia/_#SourceTrigger.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/ValidateAndCoerce/Maui/Tests.ValidateAndCoerce_Diagnostics.verified.txt: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/ValidateAndCoerce/Maui/_#Localizability.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/ValidateAndCoerce/Maui/_#Localizability.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/ValidateAndCoerce/Maui/_#SourceTrigger.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/ValidateAndCoerce/Maui/_#SourceTrigger.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/ValidateAndCoerce/Uno/Tests.ValidateAndCoerce_Diagnostics.verified.txt: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/ValidateAndCoerce/Uno/_#DefaultBindingMode.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/ValidateAndCoerce/Uno/_#DefaultBindingMode.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/ValidateAndCoerce/Uno/_#Localizability.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/ValidateAndCoerce/Uno/_#Localizability.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/ValidateAndCoerce/Uno/_#SourceTrigger.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/ValidateAndCoerce/Uno/_#SourceTrigger.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/ValidateAndCoerce/UnoWinUi/Tests.ValidateAndCoerce_Diagnostics.verified.txt: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/ValidateAndCoerce/UnoWinUi/_#SourceTrigger.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/ValidateAndCoerce/UnoWinUi/_#SourceTrigger.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/ValidateAndCoerce/Wpf/Tests.ValidateAndCoerce_Diagnostics.verified.txt: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/ValidateAndCoerce/Wpf/_#DefaultBindingMode.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/ValidateAndCoerce/Wpf/_#DefaultBindingMode.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/ValidateAndCoerce/Wpf/_#Localizability.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/ValidateAndCoerce/Wpf/_#Localizability.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/ValidateAndCoerce/Wpf/_#SourceTrigger.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/ValidateAndCoerce/Wpf/_#SourceTrigger.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/WeakEvent/Avalonia/Tests.WeakEvent_Diagnostics.verified.txt: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/WeakEvent/Avalonia/_#WeakEventAttribute.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/WeakEvent/Avalonia/_#WeakEventAttribute.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/WeakEvent/Maui/Tests.WeakEvent_Diagnostics.verified.txt: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/WeakEvent/Maui/_#WeakEventAttribute.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/WeakEvent/Maui/_#WeakEventAttribute.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/WeakEvent/Uno/Tests.WeakEvent_Diagnostics.verified.txt: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/WeakEvent/Uno/_#WeakEventAttribute.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/WeakEvent/Uno/_#WeakEventAttribute.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/WeakEvent/UnoWinUi/Tests.WeakEvent_Diagnostics.verified.txt: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/WeakEvent/UnoWinUi/_#WeakEventAttribute.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/WeakEvent/UnoWinUi/_#WeakEventAttribute.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/WeakEvent/Wpf/Tests.WeakEvent_Diagnostics.verified.txt: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/WeakEvent/Wpf/_#WeakEventAttribute.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/WeakEvent/Wpf/_#WeakEventAttribute.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/WeakEventWithEventArgsType/Avalonia/Tests.WeakEventWithEventArgsType_Diagnostics.verified.txt: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/WeakEventWithEventArgsType/Maui/Tests.WeakEventWithEventArgsType_Diagnostics.verified.txt: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/WeakEventWithEventArgsType/Uno/Tests.WeakEventWithEventArgsType_Diagnostics.verified.txt: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/WeakEventWithEventArgsType/UnoWinUi/Tests.WeakEventWithEventArgsType_Diagnostics.verified.txt: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/WeakEventWithEventArgsType/Wpf/Tests.WeakEventWithEventArgsType_Diagnostics.verified.txt: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/WeakEventWithType/Avalonia/Tests.WeakEventWithType_Diagnostics.verified.txt: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/WeakEventWithType/Maui/Tests.WeakEventWithType_Diagnostics.verified.txt: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/WeakEventWithType/Uno/Tests.WeakEventWithType_Diagnostics.verified.txt: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/WeakEventWithType/Uno/_#WeakEventAttribute.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/WeakEventWithType/Uno/_#WeakEventAttribute.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/WeakEventWithType/UnoWinUi/Tests.WeakEventWithType_Diagnostics.verified.txt: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/WeakEventWithType/Wpf/_#WeakEventAttribute.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/WeakEventWithType/Wpf/_#WeakEventAttribute.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/WithOtherAttributes/Maui/_#Localizability.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/WithOtherAttributes/Maui/_#Localizability.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/WithOtherAttributes/Maui/_#SourceTrigger.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/WithOtherAttributes/Maui/_#SourceTrigger.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/WithOtherAttributes/Uno/_#Localizability.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/WithOtherAttributes/Uno/_#Localizability.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/WithOtherAttributes/Uno/_#SourceTrigger.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/WithOtherAttributes/Uno/_#SourceTrigger.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/WithOtherAttributes/Wpf/_#Localizability.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/WithOtherAttributes/Wpf/_#Localizability.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/WithOtherAttributes/Wpf/_#SourceTrigger.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/WithOtherAttributes/Wpf/_#SourceTrigger.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/WithOtherAttributes2/Maui/_#Localizability.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/WithOtherAttributes2/Maui/_#Localizability.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/WithOtherAttributes2/Maui/_#SourceTrigger.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/WithOtherAttributes2/Maui/_#SourceTrigger.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/WithOtherAttributes2/Uno/Tests.WithOtherAttributes2_Diagnostics.verified.txt: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/WithOtherAttributes2/Uno/_#Localizability.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/WithOtherAttributes2/Uno/_#Localizability.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/WithOtherAttributes2/Uno/_#SourceTrigger.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/WithOtherAttributes2/Uno/_#SourceTrigger.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/WithOtherAttributes2/UnoWinUi/Tests.WithOtherAttributes2_Diagnostics.verified.txt: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/WithOtherAttributes2/Wpf/Tests.WithOtherAttributes2_Diagnostics.verified.txt: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/WithOtherAttributes2/Wpf/_#Localizability.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/WithOtherAttributes2/Wpf/_#Localizability.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/WithOtherAttributes2/Wpf/_#SourceTrigger.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Snapshots/WithOtherAttributes2/Wpf/_#SourceTrigger.g.verified.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Tests.AddOwner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Tests.AddOwner.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Tests.AttachedProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Tests.AttachedProperties.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Tests.Errors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Tests.Errors.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Tests.Helpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Tests.Helpers.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Tests.OverrideMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Tests.OverrideMetadata.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Tests.Properties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Tests.Properties.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Tests.Readme.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Tests.Readme.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Tests.RoutedEvents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Tests.RoutedEvents.cs -------------------------------------------------------------------------------- /src/tests/DependencyPropertyGenerator.SnapshotTests/Tests.WeakEvents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HavenDV/DependencyPropertyGenerator/HEAD/src/tests/DependencyPropertyGenerator.SnapshotTests/Tests.WeakEvents.cs --------------------------------------------------------------------------------