diff --git a/Assets/UIComponents/Roslyn/UIComponents.Roslyn.Generation.dll b/Assets/UIComponents/Roslyn/UIComponents.Roslyn.Generation.dll index 669a3292..9dcc6152 100644 Binary files a/Assets/UIComponents/Roslyn/UIComponents.Roslyn.Generation.dll and b/Assets/UIComponents/Roslyn/UIComponents.Roslyn.Generation.dll differ diff --git a/Assets/UIComponents/Roslyn/UIComponents.Roslyn.Generation.pdb b/Assets/UIComponents/Roslyn/UIComponents.Roslyn.Generation.pdb index dd6d0fec..4251624c 100644 Binary files a/Assets/UIComponents/Roslyn/UIComponents.Roslyn.Generation.pdb and b/Assets/UIComponents/Roslyn/UIComponents.Roslyn.Generation.pdb differ diff --git a/Assets/UIComponents/package.json b/Assets/UIComponents/package.json index 5d76543d..895f0847 100644 --- a/Assets/UIComponents/package.json +++ b/Assets/UIComponents/package.json @@ -1,7 +1,7 @@ { "name": "io.savolainen.uicomponents", "displayName": "UIComponents", - "version": "1.0.0-beta.6", + "version": "1.0.0-beta.7", "description": "A small front-end framework for Unity's UIToolkit.", "unity": "2021.3", "author": { diff --git a/CHANGELOG.md b/CHANGELOG.md index 509edd34..ec6341ae 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ +# [1.0.0-beta.7](https://github.com/jonisavo/uicomponents/compare/v1.0.0-beta.6...v1.0.0-beta.7) (2023-09-25) + + +### Features + +* **core:** make DependencyAttribute's implementation argument optional ([#109](https://github.com/jonisavo/uicomponents/issues/109)) ([f797b4e](https://github.com/jonisavo/uicomponents/commit/f797b4e9d1330c5c39acfc060b9ae2de0951a14b)) + # [1.0.0-beta.6](https://github.com/jonisavo/uicomponents/compare/v1.0.0-beta.5...v1.0.0-beta.6) (2023-09-22) diff --git a/README.md b/README.md index 0c889223..beb145f8 100644 --- a/README.md +++ b/README.md @@ -172,7 +172,7 @@ Alternatively, merge this snippet to your `Packages/manifest.json` file: } ], "dependencies": { - "io.savolainen.uicomponents": "1.0.0-beta.6" + "io.savolainen.uicomponents": "1.0.0-beta.7" } } ``` @@ -182,12 +182,12 @@ Alternatively, merge this snippet to your `Packages/manifest.json` file: Add this under `dependencies` in your `Packages/manifest.json` file: ``` -"io.savolainen.uicomponents": "https://github.com/jonisavo/uicomponents.git#upm/v1.0.0-beta.6" +"io.savolainen.uicomponents": "https://github.com/jonisavo/uicomponents.git#upm/v1.0.0-beta.7" ``` -This will install version 1.0.0-beta.6. +This will install version 1.0.0-beta.7. -To update, change `upm/v1.0.0-beta.6` to point to the latest version. +To update, change `upm/v1.0.0-beta.7` to point to the latest version. ### With .unitypackage diff --git a/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/DependencyAugmentGeneratorSnapshotTests.It_Adds_Override_Keyword_When_Used_On_UIComponent.00ConsumerComponent.Dependencies.g.verified.cs b/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/DependencyAugmentGeneratorSnapshotTests.It_Adds_Override_Keyword_When_Used_On_UIComponent.00ConsumerComponent.Dependencies.g.verified.cs index dfbd3045..28e9647a 100644 --- a/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/DependencyAugmentGeneratorSnapshotTests.It_Adds_Override_Keyword_When_Used_On_UIComponent.00ConsumerComponent.Dependencies.g.verified.cs +++ b/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/DependencyAugmentGeneratorSnapshotTests.It_Adds_Override_Keyword_When_Used_On_UIComponent.00ConsumerComponent.Dependencies.g.verified.cs @@ -12,14 +12,14 @@ public partial class ConsumerComponent { - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.7")] private static readonly IDependency[] UIC_Dependencies = new IDependency[] { UIComponents.DependencyInjection.Dependency.SingletonFor(), UIComponents.DependencyInjection.Dependency.SingletonFor(), UIComponents.DependencyInjection.Dependency.SingletonFor() }; - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.7")] public override IEnumerable GetDependencies() { return UIC_Dependencies; diff --git a/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/DependencyAugmentGeneratorSnapshotTests.It_Adds_Override_Keyword_When_Used_On_UIComponent.01UIComponentWithNoOwnDependencies.Dependencies.g.verified.cs b/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/DependencyAugmentGeneratorSnapshotTests.It_Adds_Override_Keyword_When_Used_On_UIComponent.01UIComponentWithNoOwnDependencies.Dependencies.g.verified.cs index fa8c2f57..5994ddd7 100644 --- a/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/DependencyAugmentGeneratorSnapshotTests.It_Adds_Override_Keyword_When_Used_On_UIComponent.01UIComponentWithNoOwnDependencies.Dependencies.g.verified.cs +++ b/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/DependencyAugmentGeneratorSnapshotTests.It_Adds_Override_Keyword_When_Used_On_UIComponent.01UIComponentWithNoOwnDependencies.Dependencies.g.verified.cs @@ -12,13 +12,13 @@ public partial class UIComponentWithNoOwnDependencies { - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.7")] private static readonly IDependency[] UIC_Dependencies = new IDependency[] { UIComponents.DependencyInjection.Dependency.SingletonFor(), UIComponents.DependencyInjection.Dependency.SingletonFor() }; - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.7")] public override IEnumerable GetDependencies() { return UIC_Dependencies; diff --git a/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/DependencyAugmentGeneratorSnapshotTests.It_Allows_For_Dependency_Inheritance.00ConsumerClass.Dependencies.g.verified.cs b/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/DependencyAugmentGeneratorSnapshotTests.It_Allows_For_Dependency_Inheritance.00ConsumerClass.Dependencies.g.verified.cs index 7e8ea7dc..b29bbce9 100644 --- a/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/DependencyAugmentGeneratorSnapshotTests.It_Allows_For_Dependency_Inheritance.00ConsumerClass.Dependencies.g.verified.cs +++ b/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/DependencyAugmentGeneratorSnapshotTests.It_Allows_For_Dependency_Inheritance.00ConsumerClass.Dependencies.g.verified.cs @@ -12,13 +12,13 @@ public partial class ConsumerClass { - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.7")] private static readonly IDependency[] UIC_Dependencies = new IDependency[] { UIComponents.DependencyInjection.Dependency.SingletonFor(), UIComponents.DependencyInjection.Dependency.SingletonFor() }; - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.7")] public IEnumerable GetDependencies() { return UIC_Dependencies; diff --git a/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/DependencyAugmentGeneratorSnapshotTests.It_Allows_For_Dependency_Inheritance.01SecondConsumerClass.Dependencies.g.verified.cs b/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/DependencyAugmentGeneratorSnapshotTests.It_Allows_For_Dependency_Inheritance.01SecondConsumerClass.Dependencies.g.verified.cs index e5a38a23..8d132ca7 100644 --- a/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/DependencyAugmentGeneratorSnapshotTests.It_Allows_For_Dependency_Inheritance.01SecondConsumerClass.Dependencies.g.verified.cs +++ b/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/DependencyAugmentGeneratorSnapshotTests.It_Allows_For_Dependency_Inheritance.01SecondConsumerClass.Dependencies.g.verified.cs @@ -12,14 +12,14 @@ public partial class SecondConsumerClass { - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.7")] private static readonly IDependency[] UIC_Dependencies = new IDependency[] { UIComponents.DependencyInjection.Dependency.SingletonFor(), UIComponents.DependencyInjection.Dependency.SingletonFor(), UIComponents.DependencyInjection.Dependency.SingletonFor() }; - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.7")] public override IEnumerable GetDependencies() { return UIC_Dependencies; diff --git a/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/DependencyAugmentGeneratorSnapshotTests.It_Allows_Overriding_Assembly_Declarations_With_Class_Declarations.verified.cs b/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/DependencyAugmentGeneratorSnapshotTests.It_Allows_Overriding_Assembly_Declarations_With_Class_Declarations.verified.cs index bbd2bf9a..3a1ec593 100644 --- a/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/DependencyAugmentGeneratorSnapshotTests.It_Allows_Overriding_Assembly_Declarations_With_Class_Declarations.verified.cs +++ b/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/DependencyAugmentGeneratorSnapshotTests.It_Allows_Overriding_Assembly_Declarations_With_Class_Declarations.verified.cs @@ -12,12 +12,12 @@ public partial class ConsumerClass { - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.7")] private static readonly IDependency[] UIC_Dependencies = new IDependency[] { UIComponents.DependencyInjection.Dependency.SingletonFor() }; - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.7")] public IEnumerable GetDependencies() { return UIC_Dependencies; diff --git a/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/DependencyAugmentGeneratorSnapshotTests.It_Allows_Overriding_Inherited_Dependencies.verified.cs b/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/DependencyAugmentGeneratorSnapshotTests.It_Allows_Overriding_Inherited_Dependencies.verified.cs index 9f226d6c..85c1e09f 100644 --- a/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/DependencyAugmentGeneratorSnapshotTests.It_Allows_Overriding_Inherited_Dependencies.verified.cs +++ b/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/DependencyAugmentGeneratorSnapshotTests.It_Allows_Overriding_Inherited_Dependencies.verified.cs @@ -12,13 +12,13 @@ public partial class SecondConsumerClass { - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.7")] private static readonly IDependency[] UIC_Dependencies = new IDependency[] { UIComponents.DependencyInjection.Dependency.SingletonFor(), UIComponents.DependencyInjection.Dependency.SingletonFor() }; - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.7")] public override IEnumerable GetDependencies() { return UIC_Dependencies; diff --git a/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/DependencyAugmentGeneratorSnapshotTests.It_Allows_Overriding_Scope.verified.cs b/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/DependencyAugmentGeneratorSnapshotTests.It_Allows_Overriding_Scope.verified.cs index 17e41698..62f72758 100644 --- a/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/DependencyAugmentGeneratorSnapshotTests.It_Allows_Overriding_Scope.verified.cs +++ b/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/DependencyAugmentGeneratorSnapshotTests.It_Allows_Overriding_Scope.verified.cs @@ -12,12 +12,12 @@ public partial class ConsumerClass { - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.7")] private static readonly IDependency[] UIC_Dependencies = new IDependency[] { UIComponents.DependencyInjection.Dependency.TransientFor() }; - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.7")] public IEnumerable GetDependencies() { return UIC_Dependencies; diff --git a/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/DependencyAugmentGeneratorSnapshotTests.It_Generates_Dependencies_From_Assembly_Declaration.00ConsumerClass.Dependencies.g.verified.cs b/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/DependencyAugmentGeneratorSnapshotTests.It_Generates_Dependencies_From_Assembly_Declaration.00ConsumerClass.Dependencies.g.verified.cs index 60ede4ea..b2bb3879 100644 --- a/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/DependencyAugmentGeneratorSnapshotTests.It_Generates_Dependencies_From_Assembly_Declaration.00ConsumerClass.Dependencies.g.verified.cs +++ b/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/DependencyAugmentGeneratorSnapshotTests.It_Generates_Dependencies_From_Assembly_Declaration.00ConsumerClass.Dependencies.g.verified.cs @@ -12,13 +12,13 @@ public partial class ConsumerClass { - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.7")] private static readonly IDependency[] UIC_Dependencies = new IDependency[] { UIComponents.DependencyInjection.Dependency.SingletonFor(), UIComponents.DependencyInjection.Dependency.TransientFor() }; - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.7")] public IEnumerable GetDependencies() { return UIC_Dependencies; diff --git a/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/DependencyAugmentGeneratorSnapshotTests.It_Generates_Dependencies_From_Assembly_Declaration.01ConsumerStruct.Dependencies.g.verified.cs b/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/DependencyAugmentGeneratorSnapshotTests.It_Generates_Dependencies_From_Assembly_Declaration.01ConsumerStruct.Dependencies.g.verified.cs index b66a37d6..1d990681 100644 --- a/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/DependencyAugmentGeneratorSnapshotTests.It_Generates_Dependencies_From_Assembly_Declaration.01ConsumerStruct.Dependencies.g.verified.cs +++ b/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/DependencyAugmentGeneratorSnapshotTests.It_Generates_Dependencies_From_Assembly_Declaration.01ConsumerStruct.Dependencies.g.verified.cs @@ -12,13 +12,13 @@ public partial struct ConsumerStruct { - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.7")] private static readonly IDependency[] UIC_Dependencies = new IDependency[] { UIComponents.DependencyInjection.Dependency.SingletonFor(), UIComponents.DependencyInjection.Dependency.TransientFor() }; - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.7")] public IEnumerable GetDependencies() { return UIC_Dependencies; diff --git a/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/DependencyAugmentGeneratorSnapshotTests.It_Generates_Dependencies_From_Type_Declaration.00ConsumerClass.Dependencies.g.verified.cs b/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/DependencyAugmentGeneratorSnapshotTests.It_Generates_Dependencies_From_Type_Declaration.00ConsumerClass.Dependencies.g.verified.cs index 60ede4ea..b2bb3879 100644 --- a/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/DependencyAugmentGeneratorSnapshotTests.It_Generates_Dependencies_From_Type_Declaration.00ConsumerClass.Dependencies.g.verified.cs +++ b/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/DependencyAugmentGeneratorSnapshotTests.It_Generates_Dependencies_From_Type_Declaration.00ConsumerClass.Dependencies.g.verified.cs @@ -12,13 +12,13 @@ public partial class ConsumerClass { - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.7")] private static readonly IDependency[] UIC_Dependencies = new IDependency[] { UIComponents.DependencyInjection.Dependency.SingletonFor(), UIComponents.DependencyInjection.Dependency.TransientFor() }; - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.7")] public IEnumerable GetDependencies() { return UIC_Dependencies; diff --git a/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/DependencyAugmentGeneratorSnapshotTests.It_Generates_Dependencies_From_Type_Declaration.01ConsumerStruct.Dependencies.g.verified.cs b/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/DependencyAugmentGeneratorSnapshotTests.It_Generates_Dependencies_From_Type_Declaration.01ConsumerStruct.Dependencies.g.verified.cs index ed602e1e..2c99bd30 100644 --- a/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/DependencyAugmentGeneratorSnapshotTests.It_Generates_Dependencies_From_Type_Declaration.01ConsumerStruct.Dependencies.g.verified.cs +++ b/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/DependencyAugmentGeneratorSnapshotTests.It_Generates_Dependencies_From_Type_Declaration.01ConsumerStruct.Dependencies.g.verified.cs @@ -12,13 +12,13 @@ public partial struct ConsumerStruct { - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.7")] private static readonly IDependency[] UIC_Dependencies = new IDependency[] { UIComponents.DependencyInjection.Dependency.SingletonFor(), UIComponents.DependencyInjection.Dependency.TransientFor() }; - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.7")] public IEnumerable GetDependencies() { return UIC_Dependencies; diff --git a/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/DependencyAugmentGeneratorSnapshotTests.It_Handles_Concrete_Dependencies.00ConsumerComponent.Dependencies.g.verified.cs b/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/DependencyAugmentGeneratorSnapshotTests.It_Handles_Concrete_Dependencies.00ConsumerComponent.Dependencies.g.verified.cs index e396d930..278cc80c 100644 --- a/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/DependencyAugmentGeneratorSnapshotTests.It_Handles_Concrete_Dependencies.00ConsumerComponent.Dependencies.g.verified.cs +++ b/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/DependencyAugmentGeneratorSnapshotTests.It_Handles_Concrete_Dependencies.00ConsumerComponent.Dependencies.g.verified.cs @@ -12,14 +12,14 @@ public partial class ConsumerComponent { - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.7")] private static readonly IDependency[] UIC_Dependencies = new IDependency[] { UIComponents.DependencyInjection.Dependency.SingletonFor(), UIComponents.DependencyInjection.Dependency.SingletonFor(), UIComponents.DependencyInjection.Dependency.SingletonFor() }; - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.7")] public override IEnumerable GetDependencies() { return UIC_Dependencies; diff --git a/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/DependencyAugmentGeneratorSnapshotTests.It_Handles_Concrete_Dependencies.01TransientConsumerComponent.Dependencies.g.verified.cs b/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/DependencyAugmentGeneratorSnapshotTests.It_Handles_Concrete_Dependencies.01TransientConsumerComponent.Dependencies.g.verified.cs index 62075c82..2136696c 100644 --- a/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/DependencyAugmentGeneratorSnapshotTests.It_Handles_Concrete_Dependencies.01TransientConsumerComponent.Dependencies.g.verified.cs +++ b/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/DependencyAugmentGeneratorSnapshotTests.It_Handles_Concrete_Dependencies.01TransientConsumerComponent.Dependencies.g.verified.cs @@ -12,14 +12,14 @@ public partial class TransientConsumerComponent { - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.7")] private static readonly IDependency[] UIC_Dependencies = new IDependency[] { UIComponents.DependencyInjection.Dependency.SingletonFor(), UIComponents.DependencyInjection.Dependency.SingletonFor(), UIComponents.DependencyInjection.Dependency.TransientFor() }; - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.7")] public override IEnumerable GetDependencies() { return UIC_Dependencies; diff --git a/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/DependencyAugmentGeneratorSnapshotTests.It_Handles_Multiple_Namespaces.verified.cs b/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/DependencyAugmentGeneratorSnapshotTests.It_Handles_Multiple_Namespaces.verified.cs index b7555fe2..117f2d76 100644 --- a/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/DependencyAugmentGeneratorSnapshotTests.It_Handles_Multiple_Namespaces.verified.cs +++ b/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/DependencyAugmentGeneratorSnapshotTests.It_Handles_Multiple_Namespaces.verified.cs @@ -15,14 +15,14 @@ namespace MyLibrary.GUI.Components { public partial class MyGUIComponent { - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.7")] private static readonly IDependency[] UIC_Dependencies = new IDependency[] { UIComponents.DependencyInjection.Dependency.SingletonFor(), UIComponents.DependencyInjection.Dependency.SingletonFor(), UIComponents.DependencyInjection.Dependency.SingletonFor() }; - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.7")] public override IEnumerable GetDependencies() { return UIC_Dependencies; diff --git a/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/EffectAugmentGeneratorSnapshotTests.It_Allows_Overriding_Priority.verified.cs b/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/EffectAugmentGeneratorSnapshotTests.It_Allows_Overriding_Priority.verified.cs index 9ef4cad3..35ffa700 100644 --- a/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/EffectAugmentGeneratorSnapshotTests.It_Allows_Overriding_Priority.verified.cs +++ b/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/EffectAugmentGeneratorSnapshotTests.It_Allows_Overriding_Priority.verified.cs @@ -11,10 +11,10 @@ public partial class PriorityEffectComponent { - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.7")] private static UIComponentEffectAttribute[] UIC_EffectAttributes; - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.7")] private static void UIC_InitializeEffectAttributes() { UIC_EffectAttributes = new [] { @@ -24,7 +24,7 @@ private static void UIC_InitializeEffectAttributes() Array.Sort(UIC_EffectAttributes); } - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.7")] protected override void UIC_ApplyEffects() { if (UIC_EffectAttributes == null) diff --git a/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/EffectAugmentGeneratorSnapshotTests.It_Generates_Code_For_Applying_Effects.verified.cs b/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/EffectAugmentGeneratorSnapshotTests.It_Generates_Code_For_Applying_Effects.verified.cs index 3384fb36..4cee89d5 100644 --- a/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/EffectAugmentGeneratorSnapshotTests.It_Generates_Code_For_Applying_Effects.verified.cs +++ b/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/EffectAugmentGeneratorSnapshotTests.It_Generates_Code_For_Applying_Effects.verified.cs @@ -11,10 +11,10 @@ public partial class BasicEffectComponent { - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.7")] private static UIComponentEffectAttribute[] UIC_EffectAttributes; - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.7")] private static void UIC_InitializeEffectAttributes() { UIC_EffectAttributes = new [] { @@ -24,7 +24,7 @@ private static void UIC_InitializeEffectAttributes() Array.Sort(UIC_EffectAttributes); } - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.7")] protected override void UIC_ApplyEffects() { if (UIC_EffectAttributes == null) diff --git a/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/EffectAugmentGeneratorSnapshotTests.It_Works_With_Subclasses.00BaseEffectComponent.Effects.g.verified.cs b/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/EffectAugmentGeneratorSnapshotTests.It_Works_With_Subclasses.00BaseEffectComponent.Effects.g.verified.cs index 1b427278..d315dd3c 100644 --- a/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/EffectAugmentGeneratorSnapshotTests.It_Works_With_Subclasses.00BaseEffectComponent.Effects.g.verified.cs +++ b/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/EffectAugmentGeneratorSnapshotTests.It_Works_With_Subclasses.00BaseEffectComponent.Effects.g.verified.cs @@ -11,10 +11,10 @@ public partial class BaseEffectComponent { - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.7")] private static UIComponentEffectAttribute[] UIC_EffectAttributes; - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.7")] private static void UIC_InitializeEffectAttributes() { UIC_EffectAttributes = new [] { @@ -23,7 +23,7 @@ private static void UIC_InitializeEffectAttributes() Array.Sort(UIC_EffectAttributes); } - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.7")] protected override void UIC_ApplyEffects() { if (UIC_EffectAttributes == null) diff --git a/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/EffectAugmentGeneratorSnapshotTests.It_Works_With_Subclasses.01SecondSubclassEffectComponent.Effects.g.verified.cs b/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/EffectAugmentGeneratorSnapshotTests.It_Works_With_Subclasses.01SecondSubclassEffectComponent.Effects.g.verified.cs index 5f933bc0..49b2cd6f 100644 --- a/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/EffectAugmentGeneratorSnapshotTests.It_Works_With_Subclasses.01SecondSubclassEffectComponent.Effects.g.verified.cs +++ b/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/EffectAugmentGeneratorSnapshotTests.It_Works_With_Subclasses.01SecondSubclassEffectComponent.Effects.g.verified.cs @@ -11,10 +11,10 @@ public partial class SecondSubclassEffectComponent { - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.7")] private static UIComponentEffectAttribute[] UIC_EffectAttributes; - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.7")] private static void UIC_InitializeEffectAttributes() { UIC_EffectAttributes = new [] { @@ -25,7 +25,7 @@ private static void UIC_InitializeEffectAttributes() Array.Sort(UIC_EffectAttributes); } - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.7")] protected override void UIC_ApplyEffects() { if (UIC_EffectAttributes == null) diff --git a/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/EffectAugmentGeneratorSnapshotTests.It_Works_With_Subclasses.02SubclassEffectComponent.Effects.g.verified.cs b/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/EffectAugmentGeneratorSnapshotTests.It_Works_With_Subclasses.02SubclassEffectComponent.Effects.g.verified.cs index b9515a44..57c1227a 100644 --- a/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/EffectAugmentGeneratorSnapshotTests.It_Works_With_Subclasses.02SubclassEffectComponent.Effects.g.verified.cs +++ b/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/EffectAugmentGeneratorSnapshotTests.It_Works_With_Subclasses.02SubclassEffectComponent.Effects.g.verified.cs @@ -11,10 +11,10 @@ public partial class SubclassEffectComponent { - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.7")] private static UIComponentEffectAttribute[] UIC_EffectAttributes; - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.7")] private static void UIC_InitializeEffectAttributes() { UIC_EffectAttributes = new [] { @@ -24,7 +24,7 @@ private static void UIC_InitializeEffectAttributes() Array.Sort(UIC_EffectAttributes); } - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.7")] protected override void UIC_ApplyEffects() { if (UIC_EffectAttributes == null) diff --git a/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/LayoutAugmentGeneratorSnapshotTests.It_Allows_Overriding_Base_Class_Attribute.00BaseLayoutComponent.Layout.g.verified.cs b/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/LayoutAugmentGeneratorSnapshotTests.It_Allows_Overriding_Base_Class_Attribute.00BaseLayoutComponent.Layout.g.verified.cs index f9c35a55..f4b45223 100644 --- a/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/LayoutAugmentGeneratorSnapshotTests.It_Allows_Overriding_Base_Class_Attribute.00BaseLayoutComponent.Layout.g.verified.cs +++ b/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/LayoutAugmentGeneratorSnapshotTests.It_Allows_Overriding_Base_Class_Attribute.00BaseLayoutComponent.Layout.g.verified.cs @@ -11,7 +11,7 @@ public partial class BaseLayoutComponent { - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.7")] protected override Task UIC_StartLayoutLoad() { return AssetResolver.LoadAsset("Components/BaseLayoutComponent"); diff --git a/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/LayoutAugmentGeneratorSnapshotTests.It_Allows_Overriding_Base_Class_Attribute.01OverriddenLayoutComponent.Layout.g.verified.cs b/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/LayoutAugmentGeneratorSnapshotTests.It_Allows_Overriding_Base_Class_Attribute.01OverriddenLayoutComponent.Layout.g.verified.cs index b348e4a3..5587faf8 100644 --- a/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/LayoutAugmentGeneratorSnapshotTests.It_Allows_Overriding_Base_Class_Attribute.01OverriddenLayoutComponent.Layout.g.verified.cs +++ b/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/LayoutAugmentGeneratorSnapshotTests.It_Allows_Overriding_Base_Class_Attribute.01OverriddenLayoutComponent.Layout.g.verified.cs @@ -11,7 +11,7 @@ public partial class OverriddenLayoutComponent { - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.7")] protected override Task UIC_StartLayoutLoad() { return AssetResolver.LoadAsset("Components/OverriddenLayoutComponent"); diff --git a/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/LayoutAugmentGeneratorSnapshotTests.It_Generates_Layout_Call.verified.cs b/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/LayoutAugmentGeneratorSnapshotTests.It_Generates_Layout_Call.verified.cs index b5b1ba3d..e0f77e1e 100644 --- a/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/LayoutAugmentGeneratorSnapshotTests.It_Generates_Layout_Call.verified.cs +++ b/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/LayoutAugmentGeneratorSnapshotTests.It_Generates_Layout_Call.verified.cs @@ -11,7 +11,7 @@ public partial class LayoutTestComponent { - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.7")] protected override Task UIC_StartLayoutLoad() { return AssetResolver.LoadAsset("Components/LayoutTestComponent"); diff --git a/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/LayoutAugmentGeneratorSnapshotTests.It_Handles_Nested_Types.00ParentClass.FirstNestedComponent.Layout.g.verified.cs b/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/LayoutAugmentGeneratorSnapshotTests.It_Handles_Nested_Types.00ParentClass.FirstNestedComponent.Layout.g.verified.cs index 56473ce1..8c1f3abd 100644 --- a/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/LayoutAugmentGeneratorSnapshotTests.It_Handles_Nested_Types.00ParentClass.FirstNestedComponent.Layout.g.verified.cs +++ b/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/LayoutAugmentGeneratorSnapshotTests.It_Handles_Nested_Types.00ParentClass.FirstNestedComponent.Layout.g.verified.cs @@ -13,7 +13,7 @@ public partial class ParentClass { public partial class FirstNestedComponent { - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.7")] protected override Task UIC_StartLayoutLoad() { return AssetResolver.LoadAsset("Components/FirstNestedComponent"); diff --git a/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/LayoutAugmentGeneratorSnapshotTests.It_Handles_Nested_Types.01ParentClass.SecondNestedComponent.Layout.g.verified.cs b/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/LayoutAugmentGeneratorSnapshotTests.It_Handles_Nested_Types.01ParentClass.SecondNestedComponent.Layout.g.verified.cs index 5282d8a5..02e96d11 100644 --- a/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/LayoutAugmentGeneratorSnapshotTests.It_Handles_Nested_Types.01ParentClass.SecondNestedComponent.Layout.g.verified.cs +++ b/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/LayoutAugmentGeneratorSnapshotTests.It_Handles_Nested_Types.01ParentClass.SecondNestedComponent.Layout.g.verified.cs @@ -13,7 +13,7 @@ public partial class ParentClass { private partial class SecondNestedComponent { - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.7")] protected override Task UIC_StartLayoutLoad() { return AssetResolver.LoadAsset("Components/SecondNestedComponent"); diff --git a/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/LayoutAugmentGeneratorSnapshotTests.It_Takes_AssetPrefixAttribute_Into_Account.verified.cs b/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/LayoutAugmentGeneratorSnapshotTests.It_Takes_AssetPrefixAttribute_Into_Account.verified.cs index 1355e71c..5e04b182 100644 --- a/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/LayoutAugmentGeneratorSnapshotTests.It_Takes_AssetPrefixAttribute_Into_Account.verified.cs +++ b/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/LayoutAugmentGeneratorSnapshotTests.It_Takes_AssetPrefixAttribute_Into_Account.verified.cs @@ -11,7 +11,7 @@ public partial class LayoutTestComponent { - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.7")] protected override Task UIC_StartLayoutLoad() { return AssetResolver.LoadAsset("UI/Components/LayoutTestComponent"); diff --git a/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/LayoutAugmentGeneratorSnapshotTests.It_Uses_Base_Class_Attribute.00BaseLayoutComponent.Layout.g.verified.cs b/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/LayoutAugmentGeneratorSnapshotTests.It_Uses_Base_Class_Attribute.00BaseLayoutComponent.Layout.g.verified.cs index f9c35a55..f4b45223 100644 --- a/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/LayoutAugmentGeneratorSnapshotTests.It_Uses_Base_Class_Attribute.00BaseLayoutComponent.Layout.g.verified.cs +++ b/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/LayoutAugmentGeneratorSnapshotTests.It_Uses_Base_Class_Attribute.00BaseLayoutComponent.Layout.g.verified.cs @@ -11,7 +11,7 @@ public partial class BaseLayoutComponent { - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.7")] protected override Task UIC_StartLayoutLoad() { return AssetResolver.LoadAsset("Components/BaseLayoutComponent"); diff --git a/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/LayoutAugmentGeneratorSnapshotTests.It_Uses_Base_Class_Attribute.01SuperclassLayoutComponent.Layout.g.verified.cs b/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/LayoutAugmentGeneratorSnapshotTests.It_Uses_Base_Class_Attribute.01SuperclassLayoutComponent.Layout.g.verified.cs index 6e459e1b..fef3e32e 100644 --- a/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/LayoutAugmentGeneratorSnapshotTests.It_Uses_Base_Class_Attribute.01SuperclassLayoutComponent.Layout.g.verified.cs +++ b/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/LayoutAugmentGeneratorSnapshotTests.It_Uses_Base_Class_Attribute.01SuperclassLayoutComponent.Layout.g.verified.cs @@ -11,7 +11,7 @@ public partial class SuperclassLayoutComponent { - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.7")] protected override Task UIC_StartLayoutLoad() { return AssetResolver.LoadAsset("Components/BaseLayoutComponent"); diff --git a/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/LayoutAugmentGeneratorSnapshotTests.It_Uses_Base_Class_Attribute.02ThirdLayoutComponent.Layout.g.verified.cs b/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/LayoutAugmentGeneratorSnapshotTests.It_Uses_Base_Class_Attribute.02ThirdLayoutComponent.Layout.g.verified.cs index e3d6b111..ab0a7ab8 100644 --- a/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/LayoutAugmentGeneratorSnapshotTests.It_Uses_Base_Class_Attribute.02ThirdLayoutComponent.Layout.g.verified.cs +++ b/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/LayoutAugmentGeneratorSnapshotTests.It_Uses_Base_Class_Attribute.02ThirdLayoutComponent.Layout.g.verified.cs @@ -11,7 +11,7 @@ public partial class ThirdLayoutComponent { - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.7")] protected override Task UIC_StartLayoutLoad() { return AssetResolver.LoadAsset("Components/BaseLayoutComponent"); diff --git a/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/ProvideAugmentGeneratorSnapshotTests.It_Can_Be_Used_On_Non_UIComponent_Class.verified.cs b/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/ProvideAugmentGeneratorSnapshotTests.It_Can_Be_Used_On_Non_UIComponent_Class.verified.cs index 1af8551e..2815d05f 100644 --- a/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/ProvideAugmentGeneratorSnapshotTests.It_Can_Be_Used_On_Non_UIComponent_Class.verified.cs +++ b/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/ProvideAugmentGeneratorSnapshotTests.It_Can_Be_Used_On_Non_UIComponent_Class.verified.cs @@ -12,7 +12,7 @@ public partial class MyClass { - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.7")] private void UIC_SetProvideField(ref TField value, string fieldName) where TField : class where TCastFrom : class { try @@ -29,7 +29,7 @@ private void UIC_SetProvideField(ref TField value, string fie } } - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.7")] protected void UIC_PopulateProvideFields() { UIC_SetProvideField(ref Dependency, "Dependency"); diff --git a/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/ProvideAugmentGeneratorSnapshotTests.It_Does_Not_Generate_For_Non_Interface_Or_Class_Fields.verified.cs b/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/ProvideAugmentGeneratorSnapshotTests.It_Does_Not_Generate_For_Non_Interface_Or_Class_Fields.verified.cs index 0af6b9e1..e57b583f 100644 --- a/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/ProvideAugmentGeneratorSnapshotTests.It_Does_Not_Generate_For_Non_Interface_Or_Class_Fields.verified.cs +++ b/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/ProvideAugmentGeneratorSnapshotTests.It_Does_Not_Generate_For_Non_Interface_Or_Class_Fields.verified.cs @@ -11,7 +11,7 @@ public partial class InvalidProvideComponent { - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.7")] private void UIC_SetProvideField(ref TField value, string fieldName) where TField : class where TCastFrom : class { try @@ -28,7 +28,7 @@ private void UIC_SetProvideField(ref TField value, string fie } } - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.7")] protected override void UIC_PopulateProvideFields() { UIC_SetProvideField(ref Dependency, "Dependency"); diff --git a/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/ProvideAugmentGeneratorSnapshotTests.It_Generates_Provide_Calls.verified.cs b/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/ProvideAugmentGeneratorSnapshotTests.It_Generates_Provide_Calls.verified.cs index 7b5d8a4a..57152a76 100644 --- a/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/ProvideAugmentGeneratorSnapshotTests.It_Generates_Provide_Calls.verified.cs +++ b/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/ProvideAugmentGeneratorSnapshotTests.It_Generates_Provide_Calls.verified.cs @@ -11,7 +11,7 @@ public partial class BasicProvideComponent { - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.7")] private void UIC_SetProvideField(ref TField value, string fieldName) where TField : class where TCastFrom : class { try @@ -28,7 +28,7 @@ private void UIC_SetProvideField(ref TField value, string fie } } - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.7")] protected override void UIC_PopulateProvideFields() { UIC_SetProvideField(ref Dependency, "Dependency"); diff --git a/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/ProvideAugmentGeneratorSnapshotTests.It_Handles_Common_Namespaces.verified.cs b/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/ProvideAugmentGeneratorSnapshotTests.It_Handles_Common_Namespaces.verified.cs index de928da5..95f4fc10 100644 --- a/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/ProvideAugmentGeneratorSnapshotTests.It_Handles_Common_Namespaces.verified.cs +++ b/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/ProvideAugmentGeneratorSnapshotTests.It_Handles_Common_Namespaces.verified.cs @@ -14,7 +14,7 @@ namespace MyLibrary.GUI { public partial class GuiComponent { - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.7")] private void UIC_SetProvideField(ref TField value, string fieldName) where TField : class where TCastFrom : class { try @@ -31,7 +31,7 @@ private void UIC_SetProvideField(ref TField value, string fie } } - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.7")] protected override void UIC_PopulateProvideFields() { UIC_SetProvideField(ref service, "service"); diff --git a/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/ProvideAugmentGeneratorSnapshotTests.It_Handles_Namespaces_And_Nested_Types.verified.cs b/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/ProvideAugmentGeneratorSnapshotTests.It_Handles_Namespaces_And_Nested_Types.verified.cs index 52a261d9..15afee4f 100644 --- a/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/ProvideAugmentGeneratorSnapshotTests.It_Handles_Namespaces_And_Nested_Types.verified.cs +++ b/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/ProvideAugmentGeneratorSnapshotTests.It_Handles_Namespaces_And_Nested_Types.verified.cs @@ -15,7 +15,7 @@ public partial class ParentClass { private partial class NestedProvideComponent { - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.7")] private void UIC_SetProvideField(ref TField value, string fieldName) where TField : class where TCastFrom : class { try @@ -32,7 +32,7 @@ private void UIC_SetProvideField(ref TField value, string fie } } - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.7")] protected override void UIC_PopulateProvideFields() { UIC_SetProvideField(ref Dependency, "Dependency"); diff --git a/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/ProvideAugmentGeneratorSnapshotTests.It_Handles_Subclasses.00BaseProvideComponent.Provide.g.verified.cs b/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/ProvideAugmentGeneratorSnapshotTests.It_Handles_Subclasses.00BaseProvideComponent.Provide.g.verified.cs index 53dcf854..908ced6b 100644 --- a/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/ProvideAugmentGeneratorSnapshotTests.It_Handles_Subclasses.00BaseProvideComponent.Provide.g.verified.cs +++ b/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/ProvideAugmentGeneratorSnapshotTests.It_Handles_Subclasses.00BaseProvideComponent.Provide.g.verified.cs @@ -11,7 +11,7 @@ public partial class BaseProvideComponent { - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.7")] private void UIC_SetProvideField(ref TField value, string fieldName) where TField : class where TCastFrom : class { try @@ -28,7 +28,7 @@ private void UIC_SetProvideField(ref TField value, string fie } } - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.7")] protected override void UIC_PopulateProvideFields() { UIC_SetProvideField(ref Dependency, "Dependency"); diff --git a/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/ProvideAugmentGeneratorSnapshotTests.It_Handles_Subclasses.01SecondSubclassProvideComponent.Provide.g.verified.cs b/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/ProvideAugmentGeneratorSnapshotTests.It_Handles_Subclasses.01SecondSubclassProvideComponent.Provide.g.verified.cs index 2dc1da48..0c772732 100644 --- a/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/ProvideAugmentGeneratorSnapshotTests.It_Handles_Subclasses.01SecondSubclassProvideComponent.Provide.g.verified.cs +++ b/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/ProvideAugmentGeneratorSnapshotTests.It_Handles_Subclasses.01SecondSubclassProvideComponent.Provide.g.verified.cs @@ -11,7 +11,7 @@ public partial class SecondSubclassProvideComponent { - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.7")] private void UIC_SetProvideField(ref TField value, string fieldName) where TField : class where TCastFrom : class { try @@ -28,7 +28,7 @@ private void UIC_SetProvideField(ref TField value, string fie } } - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.7")] protected override void UIC_PopulateProvideFields() { UIC_SetProvideField(ref ThirdDependency, "ThirdDependency"); diff --git a/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/ProvideAugmentGeneratorSnapshotTests.It_Handles_Subclasses.02SubclassProvideComponent.Provide.g.verified.cs b/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/ProvideAugmentGeneratorSnapshotTests.It_Handles_Subclasses.02SubclassProvideComponent.Provide.g.verified.cs index d3a31370..db3959d3 100644 --- a/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/ProvideAugmentGeneratorSnapshotTests.It_Handles_Subclasses.02SubclassProvideComponent.Provide.g.verified.cs +++ b/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/ProvideAugmentGeneratorSnapshotTests.It_Handles_Subclasses.02SubclassProvideComponent.Provide.g.verified.cs @@ -11,7 +11,7 @@ public partial class SubclassProvideComponent { - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.7")] private void UIC_SetProvideField(ref TField value, string fieldName) where TField : class where TCastFrom : class { try @@ -28,7 +28,7 @@ private void UIC_SetProvideField(ref TField value, string fie } } - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.7")] protected override void UIC_PopulateProvideFields() { UIC_SetProvideField(ref AnotherDependency, "AnotherDependency"); diff --git a/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/QueryAugmentGeneratorSnapshotTests.Does_Not_Generate_If_Used_On_Class_Or_Method.verified.cs b/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/QueryAugmentGeneratorSnapshotTests.Does_Not_Generate_If_Used_On_Class_Or_Method.verified.cs index e3248b59..6c02bc02 100644 --- a/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/QueryAugmentGeneratorSnapshotTests.Does_Not_Generate_If_Used_On_Class_Or_Method.verified.cs +++ b/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/QueryAugmentGeneratorSnapshotTests.Does_Not_Generate_If_Used_On_Class_Or_Method.verified.cs @@ -11,7 +11,7 @@ public partial class InvalidUsageQueryComponent { - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.7")] protected override void UIC_PopulateQueryFields() { // element diff --git a/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/QueryAugmentGeneratorSnapshotTests.It_Generates_Basic_Queries.verified.cs b/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/QueryAugmentGeneratorSnapshotTests.It_Generates_Basic_Queries.verified.cs index ac650c05..dfc579d9 100644 --- a/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/QueryAugmentGeneratorSnapshotTests.It_Generates_Basic_Queries.verified.cs +++ b/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/QueryAugmentGeneratorSnapshotTests.It_Generates_Basic_Queries.verified.cs @@ -11,7 +11,7 @@ public partial class BasicQueryComponent { - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.7")] protected override void UIC_PopulateQueryFields() { // element diff --git a/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/QueryAugmentGeneratorSnapshotTests.It_Handles_Arrays.verified.cs b/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/QueryAugmentGeneratorSnapshotTests.It_Handles_Arrays.verified.cs index c67f6fb6..750addf6 100644 --- a/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/QueryAugmentGeneratorSnapshotTests.It_Handles_Arrays.verified.cs +++ b/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/QueryAugmentGeneratorSnapshotTests.It_Handles_Arrays.verified.cs @@ -11,7 +11,7 @@ public partial class ArrayQueryComponent { - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.7")] protected override void UIC_PopulateQueryFields() { // elements diff --git a/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/QueryAugmentGeneratorSnapshotTests.It_Handles_Common_Namespaces.verified.cs b/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/QueryAugmentGeneratorSnapshotTests.It_Handles_Common_Namespaces.verified.cs index 1beb724b..ea227fdd 100644 --- a/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/QueryAugmentGeneratorSnapshotTests.It_Handles_Common_Namespaces.verified.cs +++ b/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/QueryAugmentGeneratorSnapshotTests.It_Handles_Common_Namespaces.verified.cs @@ -14,7 +14,7 @@ namespace MyLibrary.GUI { public partial class MyComponent { - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.7")] protected override void UIC_PopulateQueryFields() { // element diff --git a/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/QueryAugmentGeneratorSnapshotTests.It_Handles_Lists.verified.cs b/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/QueryAugmentGeneratorSnapshotTests.It_Handles_Lists.verified.cs index 8db97bad..5867b84e 100644 --- a/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/QueryAugmentGeneratorSnapshotTests.It_Handles_Lists.verified.cs +++ b/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/QueryAugmentGeneratorSnapshotTests.It_Handles_Lists.verified.cs @@ -11,7 +11,7 @@ public partial class ListQueryComponent { - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.7")] protected override void UIC_PopulateQueryFields() { // elements diff --git a/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/QueryAugmentGeneratorSnapshotTests.It_Handles_Multiple_Query_Attributes.verified.cs b/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/QueryAugmentGeneratorSnapshotTests.It_Handles_Multiple_Query_Attributes.verified.cs index 6d857b3c..ac250a2a 100644 --- a/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/QueryAugmentGeneratorSnapshotTests.It_Handles_Multiple_Query_Attributes.verified.cs +++ b/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/QueryAugmentGeneratorSnapshotTests.It_Handles_Multiple_Query_Attributes.verified.cs @@ -11,7 +11,7 @@ public partial class MultipleQueryComponent { - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.7")] protected override void UIC_PopulateQueryFields() { // firstElement diff --git a/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/QueryAugmentGeneratorSnapshotTests.It_Handles_Namespace_And_Nested_Type.verified.cs b/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/QueryAugmentGeneratorSnapshotTests.It_Handles_Namespace_And_Nested_Type.verified.cs index e10b91f1..a5609536 100644 --- a/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/QueryAugmentGeneratorSnapshotTests.It_Handles_Namespace_And_Nested_Type.verified.cs +++ b/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/QueryAugmentGeneratorSnapshotTests.It_Handles_Namespace_And_Nested_Type.verified.cs @@ -15,7 +15,7 @@ public partial class ParentClass { public partial class NestedComponent { - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.7")] protected override void UIC_PopulateQueryFields() { // field diff --git a/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/QueryAugmentGeneratorSnapshotTests.It_Handles_Nested_Types.00Parent.PTwo.PThree.PFour.FirstNestedComponent.Query.g.verified.cs b/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/QueryAugmentGeneratorSnapshotTests.It_Handles_Nested_Types.00Parent.PTwo.PThree.PFour.FirstNestedComponent.Query.g.verified.cs index c0df9e1c..e9bac3fc 100644 --- a/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/QueryAugmentGeneratorSnapshotTests.It_Handles_Nested_Types.00Parent.PTwo.PThree.PFour.FirstNestedComponent.Query.g.verified.cs +++ b/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/QueryAugmentGeneratorSnapshotTests.It_Handles_Nested_Types.00Parent.PTwo.PThree.PFour.FirstNestedComponent.Query.g.verified.cs @@ -19,7 +19,7 @@ internal partial class PFour { public partial class FirstNestedComponent { - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.7")] protected override void UIC_PopulateQueryFields() { // field diff --git a/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/QueryAugmentGeneratorSnapshotTests.It_Handles_Nested_Types.01Parent.PTwo.PThree.PFour.SecondNestedComponent.Query.g.verified.cs b/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/QueryAugmentGeneratorSnapshotTests.It_Handles_Nested_Types.01Parent.PTwo.PThree.PFour.SecondNestedComponent.Query.g.verified.cs index 526a3415..7f30691c 100644 --- a/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/QueryAugmentGeneratorSnapshotTests.It_Handles_Nested_Types.01Parent.PTwo.PThree.PFour.SecondNestedComponent.Query.g.verified.cs +++ b/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/QueryAugmentGeneratorSnapshotTests.It_Handles_Nested_Types.01Parent.PTwo.PThree.PFour.SecondNestedComponent.Query.g.verified.cs @@ -19,7 +19,7 @@ internal partial class PFour { private partial class SecondNestedComponent { - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.7")] protected override void UIC_PopulateQueryFields() { // component diff --git a/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/QueryAugmentGeneratorSnapshotTests.It_Handles_Null_Arguments.verified.cs b/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/QueryAugmentGeneratorSnapshotTests.It_Handles_Null_Arguments.verified.cs index ee3531ae..5d59e1b7 100644 --- a/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/QueryAugmentGeneratorSnapshotTests.It_Handles_Null_Arguments.verified.cs +++ b/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/QueryAugmentGeneratorSnapshotTests.It_Handles_Null_Arguments.verified.cs @@ -11,7 +11,7 @@ public partial class NullQueryComponent { - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.7")] protected override void UIC_PopulateQueryFields() { // elements diff --git a/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/QueryAugmentGeneratorSnapshotTests.It_Handles_Subclasses.00BaseQueryComponent.Query.g.verified.cs b/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/QueryAugmentGeneratorSnapshotTests.It_Handles_Subclasses.00BaseQueryComponent.Query.g.verified.cs index dba4ca70..a936933b 100644 --- a/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/QueryAugmentGeneratorSnapshotTests.It_Handles_Subclasses.00BaseQueryComponent.Query.g.verified.cs +++ b/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/QueryAugmentGeneratorSnapshotTests.It_Handles_Subclasses.00BaseQueryComponent.Query.g.verified.cs @@ -11,7 +11,7 @@ public partial class BaseQueryComponent { - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.7")] protected override void UIC_PopulateQueryFields() { // baseElement diff --git a/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/QueryAugmentGeneratorSnapshotTests.It_Handles_Subclasses.01SecondSubclassQueryComponent.Query.g.verified.cs b/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/QueryAugmentGeneratorSnapshotTests.It_Handles_Subclasses.01SecondSubclassQueryComponent.Query.g.verified.cs index 08db992b..bed1d9ef 100644 --- a/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/QueryAugmentGeneratorSnapshotTests.It_Handles_Subclasses.01SecondSubclassQueryComponent.Query.g.verified.cs +++ b/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/QueryAugmentGeneratorSnapshotTests.It_Handles_Subclasses.01SecondSubclassQueryComponent.Query.g.verified.cs @@ -11,7 +11,7 @@ public partial class SecondSubclassQueryComponent { - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.7")] protected override void UIC_PopulateQueryFields() { // subclassQueryComponent diff --git a/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/QueryAugmentGeneratorSnapshotTests.It_Handles_Subclasses.02SubclassQueryComponent.Query.g.verified.cs b/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/QueryAugmentGeneratorSnapshotTests.It_Handles_Subclasses.02SubclassQueryComponent.Query.g.verified.cs index 111dff25..30cfd8cc 100644 --- a/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/QueryAugmentGeneratorSnapshotTests.It_Handles_Subclasses.02SubclassQueryComponent.Query.g.verified.cs +++ b/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/QueryAugmentGeneratorSnapshotTests.It_Handles_Subclasses.02SubclassQueryComponent.Query.g.verified.cs @@ -11,7 +11,7 @@ public partial class SubclassQueryComponent { - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.7")] protected override void UIC_PopulateQueryFields() { // subclassElements diff --git a/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/QueryAugmentGeneratorSnapshotTests.It_Handles_Using_Declaration_With_Alias.verified.cs b/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/QueryAugmentGeneratorSnapshotTests.It_Handles_Using_Declaration_With_Alias.verified.cs index 86ddfbb1..c7321f87 100644 --- a/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/QueryAugmentGeneratorSnapshotTests.It_Handles_Using_Declaration_With_Alias.verified.cs +++ b/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/QueryAugmentGeneratorSnapshotTests.It_Handles_Using_Declaration_With_Alias.verified.cs @@ -11,7 +11,7 @@ public partial class UsingAliasComponent { - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.7")] protected override void UIC_PopulateQueryFields() { // firstButton diff --git a/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/RegistersEventCallbackGeneratorSnapshotTests.It_Allows_Specifying_Method_Name.00CallbackHandler.RegistersEventCallbackAttribute.g.verified.cs b/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/RegistersEventCallbackGeneratorSnapshotTests.It_Allows_Specifying_Method_Name.00CallbackHandler.RegistersEventCallbackAttribute.g.verified.cs index 0eae2d20..8be13d98 100644 --- a/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/RegistersEventCallbackGeneratorSnapshotTests.It_Allows_Specifying_Method_Name.00CallbackHandler.RegistersEventCallbackAttribute.g.verified.cs +++ b/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/RegistersEventCallbackGeneratorSnapshotTests.It_Allows_Specifying_Method_Name.00CallbackHandler.RegistersEventCallbackAttribute.g.verified.cs @@ -10,13 +10,13 @@ public partial class CallbackHandler { - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.7")] protected override void UIC_RegisterEventCallbacks() { RegisterCallback(MyEventHappened); } - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.7")] protected override void UIC_UnregisterEventCallbacks() { UnregisterCallback(MyEventHappened); diff --git a/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/RegistersEventCallbackGeneratorSnapshotTests.It_Allows_Specifying_Method_Name.01OtherCallbackHandler.RegistersEventCallbackAttribute.g.verified.cs b/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/RegistersEventCallbackGeneratorSnapshotTests.It_Allows_Specifying_Method_Name.01OtherCallbackHandler.RegistersEventCallbackAttribute.g.verified.cs index 7dd904d3..9e211870 100644 --- a/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/RegistersEventCallbackGeneratorSnapshotTests.It_Allows_Specifying_Method_Name.01OtherCallbackHandler.RegistersEventCallbackAttribute.g.verified.cs +++ b/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/RegistersEventCallbackGeneratorSnapshotTests.It_Allows_Specifying_Method_Name.01OtherCallbackHandler.RegistersEventCallbackAttribute.g.verified.cs @@ -10,14 +10,14 @@ public partial class OtherCallbackHandler { - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.7")] protected override void UIC_RegisterEventCallbacks() { RegisterCallback(MyEventHappened); RegisterCallback(Callback); } - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.7")] protected override void UIC_UnregisterEventCallbacks() { UnregisterCallback(MyEventHappened); diff --git a/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/RegistersEventCallbackGeneratorSnapshotTests.It_Does_Not_Generate_For_Abstract_Class.verified.cs b/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/RegistersEventCallbackGeneratorSnapshotTests.It_Does_Not_Generate_For_Abstract_Class.verified.cs index f4db782b..1280ede2 100644 --- a/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/RegistersEventCallbackGeneratorSnapshotTests.It_Does_Not_Generate_For_Abstract_Class.verified.cs +++ b/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/RegistersEventCallbackGeneratorSnapshotTests.It_Does_Not_Generate_For_Abstract_Class.verified.cs @@ -10,14 +10,14 @@ public partial class CallbackHandler { - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.7")] protected override void UIC_RegisterEventCallbacks() { RegisterCallback(OnMyEvent); RegisterCallback(OnMyOtherEvent); } - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.7")] protected override void UIC_UnregisterEventCallbacks() { UnregisterCallback(OnMyEvent); diff --git a/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/RegistersEventCallbackGeneratorSnapshotTests.It_Generates_Functions_For_Callbacks.00CallbackHandler.RegistersEventCallbackAttribute.g.verified.cs b/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/RegistersEventCallbackGeneratorSnapshotTests.It_Generates_Functions_For_Callbacks.00CallbackHandler.RegistersEventCallbackAttribute.g.verified.cs index 8f6403a8..57b08a95 100644 --- a/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/RegistersEventCallbackGeneratorSnapshotTests.It_Generates_Functions_For_Callbacks.00CallbackHandler.RegistersEventCallbackAttribute.g.verified.cs +++ b/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/RegistersEventCallbackGeneratorSnapshotTests.It_Generates_Functions_For_Callbacks.00CallbackHandler.RegistersEventCallbackAttribute.g.verified.cs @@ -10,13 +10,13 @@ public partial class CallbackHandler { - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.7")] protected override void UIC_RegisterEventCallbacks() { RegisterCallback(OnMyEvent); } - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.7")] protected override void UIC_UnregisterEventCallbacks() { UnregisterCallback(OnMyEvent); diff --git a/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/RegistersEventCallbackGeneratorSnapshotTests.It_Generates_Functions_For_Callbacks.01OtherCallbackHandler.RegistersEventCallbackAttribute.g.verified.cs b/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/RegistersEventCallbackGeneratorSnapshotTests.It_Generates_Functions_For_Callbacks.01OtherCallbackHandler.RegistersEventCallbackAttribute.g.verified.cs index 192ad99a..e825aef6 100644 --- a/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/RegistersEventCallbackGeneratorSnapshotTests.It_Generates_Functions_For_Callbacks.01OtherCallbackHandler.RegistersEventCallbackAttribute.g.verified.cs +++ b/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/RegistersEventCallbackGeneratorSnapshotTests.It_Generates_Functions_For_Callbacks.01OtherCallbackHandler.RegistersEventCallbackAttribute.g.verified.cs @@ -10,14 +10,14 @@ public partial class OtherCallbackHandler { - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.7")] protected override void UIC_RegisterEventCallbacks() { RegisterCallback(OnMyEvent); RegisterCallback(OnMyOtherEvent); } - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.7")] protected override void UIC_UnregisterEventCallbacks() { UnregisterCallback(OnMyEvent); diff --git a/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/RegistersEventCallbackGeneratorSnapshotTests.It_Handles_Common_Namespaces.verified.cs b/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/RegistersEventCallbackGeneratorSnapshotTests.It_Handles_Common_Namespaces.verified.cs index 65f6946e..ac3b7441 100644 --- a/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/RegistersEventCallbackGeneratorSnapshotTests.It_Handles_Common_Namespaces.verified.cs +++ b/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/RegistersEventCallbackGeneratorSnapshotTests.It_Handles_Common_Namespaces.verified.cs @@ -13,13 +13,13 @@ namespace MyLibrary.Components { public partial class MyComponent { - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.7")] protected override void UIC_RegisterEventCallbacks() { RegisterCallback(OnEvent); } - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.7")] protected override void UIC_UnregisterEventCallbacks() { UnregisterCallback(OnEvent); diff --git a/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/RegistersEventCallbackGeneratorSnapshotTests.It_Handles_Interface_Inheritance.verified.cs b/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/RegistersEventCallbackGeneratorSnapshotTests.It_Handles_Interface_Inheritance.verified.cs index 4b28acff..3b21e5d5 100644 --- a/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/RegistersEventCallbackGeneratorSnapshotTests.It_Handles_Interface_Inheritance.verified.cs +++ b/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/RegistersEventCallbackGeneratorSnapshotTests.It_Handles_Interface_Inheritance.verified.cs @@ -10,14 +10,14 @@ public partial class EventHandler { - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.7")] protected override void UIC_RegisterEventCallbacks() { RegisterCallback(OnMyEvent); RegisterCallback(OnOtherEvent); } - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.7")] protected override void UIC_UnregisterEventCallbacks() { UnregisterCallback(OnMyEvent); diff --git a/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/RegistersEventCallbackGeneratorSnapshotTests.It_Handles_Nested_Types.verified.cs b/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/RegistersEventCallbackGeneratorSnapshotTests.It_Handles_Nested_Types.verified.cs index 193458b9..cc74e8a4 100644 --- a/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/RegistersEventCallbackGeneratorSnapshotTests.It_Handles_Nested_Types.verified.cs +++ b/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/RegistersEventCallbackGeneratorSnapshotTests.It_Handles_Nested_Types.verified.cs @@ -12,13 +12,13 @@ public partial class BaseClass { private partial class ClickHandler { - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.7")] protected override void UIC_RegisterEventCallbacks() { RegisterCallback(OnClick); } - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.7")] protected override void UIC_UnregisterEventCallbacks() { UnregisterCallback(OnClick); diff --git a/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/RegistersEventCallbackGeneratorSnapshotTests.It_Handles_Nested_Types_And_Namespace.00Tests.OnCallbackComponent.RegistersEventCallbackAttribute.g.verified.cs b/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/RegistersEventCallbackGeneratorSnapshotTests.It_Handles_Nested_Types_And_Namespace.00Tests.OnCallbackComponent.RegistersEventCallbackAttribute.g.verified.cs index 76113ef6..e8f6bafd 100644 --- a/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/RegistersEventCallbackGeneratorSnapshotTests.It_Handles_Nested_Types_And_Namespace.00Tests.OnCallbackComponent.RegistersEventCallbackAttribute.g.verified.cs +++ b/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/RegistersEventCallbackGeneratorSnapshotTests.It_Handles_Nested_Types_And_Namespace.00Tests.OnCallbackComponent.RegistersEventCallbackAttribute.g.verified.cs @@ -14,13 +14,13 @@ public partial class Tests { private partial class OnCallbackComponent { - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.7")] protected override void UIC_RegisterEventCallbacks() { RegisterCallback(OnCallback); } - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.7")] protected override void UIC_UnregisterEventCallbacks() { UnregisterCallback(OnCallback); diff --git a/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/RegistersEventCallbackGeneratorSnapshotTests.It_Handles_Nested_Types_And_Namespace.01Tests.OnEventComponent.RegistersEventCallbackAttribute.g.verified.cs b/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/RegistersEventCallbackGeneratorSnapshotTests.It_Handles_Nested_Types_And_Namespace.01Tests.OnEventComponent.RegistersEventCallbackAttribute.g.verified.cs index 20a3369b..3a2a41b1 100644 --- a/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/RegistersEventCallbackGeneratorSnapshotTests.It_Handles_Nested_Types_And_Namespace.01Tests.OnEventComponent.RegistersEventCallbackAttribute.g.verified.cs +++ b/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/RegistersEventCallbackGeneratorSnapshotTests.It_Handles_Nested_Types_And_Namespace.01Tests.OnEventComponent.RegistersEventCallbackAttribute.g.verified.cs @@ -14,13 +14,13 @@ public partial class Tests { private partial class OnEventComponent { - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.7")] protected override void UIC_RegisterEventCallbacks() { RegisterCallback(OnEvent); } - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.7")] protected override void UIC_UnregisterEventCallbacks() { UnregisterCallback(OnEvent); diff --git a/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/StylesheetAugmentGeneratorSnapshotTests.It_Generates_Stylesheet_Call.verified.cs b/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/StylesheetAugmentGeneratorSnapshotTests.It_Generates_Stylesheet_Call.verified.cs index 1945c438..87bad975 100644 --- a/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/StylesheetAugmentGeneratorSnapshotTests.It_Generates_Stylesheet_Call.verified.cs +++ b/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/StylesheetAugmentGeneratorSnapshotTests.It_Generates_Stylesheet_Call.verified.cs @@ -11,14 +11,14 @@ public partial class StylesheetTestComponent { - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.7")] private async Task UIC_GetSingleStyleSheet(string assetPath) { var styleSheet = await AssetResolver.LoadAsset(assetPath); return new StyleSheetLoadTuple(assetPath, styleSheet); } - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.7")] protected override Task[] UIC_StartStyleSheetLoad() { var assetPaths = new string[] { "Components/StylesheetTestComponentStyle" }; diff --git a/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/StylesheetAugmentGeneratorSnapshotTests.It_Handles_Nested_Types.00ParentClass.FirstNestedComponent.Stylesheet.g.verified.cs b/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/StylesheetAugmentGeneratorSnapshotTests.It_Handles_Nested_Types.00ParentClass.FirstNestedComponent.Stylesheet.g.verified.cs index b9d38db4..c4c76a9d 100644 --- a/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/StylesheetAugmentGeneratorSnapshotTests.It_Handles_Nested_Types.00ParentClass.FirstNestedComponent.Stylesheet.g.verified.cs +++ b/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/StylesheetAugmentGeneratorSnapshotTests.It_Handles_Nested_Types.00ParentClass.FirstNestedComponent.Stylesheet.g.verified.cs @@ -13,14 +13,14 @@ public partial class ParentClass { public partial class FirstNestedComponent { - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.7")] private async Task UIC_GetSingleStyleSheet(string assetPath) { var styleSheet = await AssetResolver.LoadAsset(assetPath); return new StyleSheetLoadTuple(assetPath, styleSheet); } - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.7")] protected override Task[] UIC_StartStyleSheetLoad() { var assetPaths = new string[] { "Components/FirstNestedStyle" }; diff --git a/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/StylesheetAugmentGeneratorSnapshotTests.It_Handles_Nested_Types.01ParentClass.SecondNestedComponent.Stylesheet.g.verified.cs b/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/StylesheetAugmentGeneratorSnapshotTests.It_Handles_Nested_Types.01ParentClass.SecondNestedComponent.Stylesheet.g.verified.cs index e3fd78ab..fd1eb2f2 100644 --- a/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/StylesheetAugmentGeneratorSnapshotTests.It_Handles_Nested_Types.01ParentClass.SecondNestedComponent.Stylesheet.g.verified.cs +++ b/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/StylesheetAugmentGeneratorSnapshotTests.It_Handles_Nested_Types.01ParentClass.SecondNestedComponent.Stylesheet.g.verified.cs @@ -13,14 +13,14 @@ public partial class ParentClass { private partial class SecondNestedComponent { - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.7")] private async Task UIC_GetSingleStyleSheet(string assetPath) { var styleSheet = await AssetResolver.LoadAsset(assetPath); return new StyleSheetLoadTuple(assetPath, styleSheet); } - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.7")] protected override Task[] UIC_StartStyleSheetLoad() { var assetPaths = new string[] { "Components/SecondNestedStyle" }; diff --git a/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/StylesheetAugmentGeneratorSnapshotTests.It_Inherits_Base_Class_Stylesheets.00ConcreteStylesheetComponent.Stylesheet.g.verified.cs b/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/StylesheetAugmentGeneratorSnapshotTests.It_Inherits_Base_Class_Stylesheets.00ConcreteStylesheetComponent.Stylesheet.g.verified.cs index e1de6926..38743f2c 100644 --- a/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/StylesheetAugmentGeneratorSnapshotTests.It_Inherits_Base_Class_Stylesheets.00ConcreteStylesheetComponent.Stylesheet.g.verified.cs +++ b/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/StylesheetAugmentGeneratorSnapshotTests.It_Inherits_Base_Class_Stylesheets.00ConcreteStylesheetComponent.Stylesheet.g.verified.cs @@ -11,14 +11,14 @@ public partial class ConcreteStylesheetComponent { - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.7")] private async Task UIC_GetSingleStyleSheet(string assetPath) { var styleSheet = await AssetResolver.LoadAsset(assetPath); return new StyleSheetLoadTuple(assetPath, styleSheet); } - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.7")] protected override Task[] UIC_StartStyleSheetLoad() { var assetPaths = new string[] { "Components/BaseStylesheet", "Components/StylesheetOne", "Components/StylesheetTwo" }; diff --git a/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/StylesheetAugmentGeneratorSnapshotTests.It_Inherits_Base_Class_Stylesheets.01ThirdStylesheetComponent.Stylesheet.g.verified.cs b/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/StylesheetAugmentGeneratorSnapshotTests.It_Inherits_Base_Class_Stylesheets.01ThirdStylesheetComponent.Stylesheet.g.verified.cs index 99d19c85..8d29ed55 100644 --- a/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/StylesheetAugmentGeneratorSnapshotTests.It_Inherits_Base_Class_Stylesheets.01ThirdStylesheetComponent.Stylesheet.g.verified.cs +++ b/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/StylesheetAugmentGeneratorSnapshotTests.It_Inherits_Base_Class_Stylesheets.01ThirdStylesheetComponent.Stylesheet.g.verified.cs @@ -11,14 +11,14 @@ public partial class ThirdStylesheetComponent { - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.7")] private async Task UIC_GetSingleStyleSheet(string assetPath) { var styleSheet = await AssetResolver.LoadAsset(assetPath); return new StyleSheetLoadTuple(assetPath, styleSheet); } - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.7")] protected override Task[] UIC_StartStyleSheetLoad() { var assetPaths = new string[] { "Components/BaseStylesheet", "Components/StylesheetOne", "Components/StylesheetTwo", "Components/StylesheetThree" }; diff --git a/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/StylesheetAugmentGeneratorSnapshotTests.It_Takes_AssetPrefixAttribute_Into_Account.verified.cs b/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/StylesheetAugmentGeneratorSnapshotTests.It_Takes_AssetPrefixAttribute_Into_Account.verified.cs index 20e760e5..702995e4 100644 --- a/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/StylesheetAugmentGeneratorSnapshotTests.It_Takes_AssetPrefixAttribute_Into_Account.verified.cs +++ b/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/StylesheetAugmentGeneratorSnapshotTests.It_Takes_AssetPrefixAttribute_Into_Account.verified.cs @@ -11,14 +11,14 @@ public partial class StylesheetTestComponent { - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.7")] private async Task UIC_GetSingleStyleSheet(string assetPath) { var styleSheet = await AssetResolver.LoadAsset(assetPath); return new StyleSheetLoadTuple(assetPath, styleSheet); } - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.7")] protected override Task[] UIC_StartStyleSheetLoad() { var assetPaths = new string[] { "UI/Components/StylesheetTestComponentStyle" }; diff --git a/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/UxmlAugmentGeneratorSnapshotTests.Allows_Setting_Default_Value.verified.cs b/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/UxmlAugmentGeneratorSnapshotTests.Allows_Setting_Default_Value.verified.cs index 97aab7b1..f5d4c63a 100644 --- a/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/UxmlAugmentGeneratorSnapshotTests.Allows_Setting_Default_Value.verified.cs +++ b/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/UxmlAugmentGeneratorSnapshotTests.Allows_Setting_Default_Value.verified.cs @@ -10,17 +10,17 @@ public partial class ComponentWithDefaultValueTraits { - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.7")] public new partial class UxmlFactory : UxmlFactory {} - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.7")] public new partial class UxmlTraits : VisualElement.UxmlTraits { UxmlStringAttributeDescription m_Description = new UxmlStringAttributeDescription { name = "description" }; UxmlIntAttributeDescription m_Lives = new UxmlIntAttributeDescription { name = "lives" }; UxmlEnumAttributeDescription m_MyValue = new UxmlEnumAttributeDescription { name = "custom-value" }; - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.7")] public override void Init(VisualElement ve, IUxmlAttributes bag, CreationContext cc) { base.Init(ve, bag, cc); diff --git a/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/UxmlAugmentGeneratorSnapshotTests.Allows_Specifying_Uxml_Name.verified.cs b/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/UxmlAugmentGeneratorSnapshotTests.Allows_Specifying_Uxml_Name.verified.cs index 4c3a2c28..c13f2ead 100644 --- a/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/UxmlAugmentGeneratorSnapshotTests.Allows_Specifying_Uxml_Name.verified.cs +++ b/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/UxmlAugmentGeneratorSnapshotTests.Allows_Specifying_Uxml_Name.verified.cs @@ -10,16 +10,16 @@ public partial class CustomNamespaceComponent { - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.7")] public new partial class UxmlFactory : UxmlFactory {} - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.7")] public new partial class UxmlTraits : VisualElement.UxmlTraits { UxmlIntAttributeDescription m_FieldTrait = new UxmlIntAttributeDescription { name = "custom-trait-name" }; UxmlFloatAttributeDescription m_PropertyTrait = new UxmlFloatAttributeDescription { name = "my-property" }; - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.7")] public override void Init(VisualElement ve, IUxmlAttributes bag, CreationContext cc) { base.Init(ve, bag, cc); diff --git a/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/UxmlAugmentGeneratorSnapshotTests.Generates_Bool_Traits.verified.cs b/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/UxmlAugmentGeneratorSnapshotTests.Generates_Bool_Traits.verified.cs index 916dfe51..14caf9eb 100644 --- a/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/UxmlAugmentGeneratorSnapshotTests.Generates_Bool_Traits.verified.cs +++ b/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/UxmlAugmentGeneratorSnapshotTests.Generates_Bool_Traits.verified.cs @@ -10,16 +10,16 @@ public partial class BoolComponentWithUsing { - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.7")] public new partial class UxmlFactory : UxmlFactory {} - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.7")] public new partial class UxmlTraits : VisualElement.UxmlTraits { UxmlBoolAttributeDescription m_FieldTrait = new UxmlBoolAttributeDescription { name = "field-trait" }; UxmlBoolAttributeDescription m_PropertyTrait = new UxmlBoolAttributeDescription { name = "property-trait" }; - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.7")] public override void Init(VisualElement ve, IUxmlAttributes bag, CreationContext cc) { base.Init(ve, bag, cc); diff --git a/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/UxmlAugmentGeneratorSnapshotTests.Generates_Both_Traits_And_UxmlFactory.verified.cs b/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/UxmlAugmentGeneratorSnapshotTests.Generates_Both_Traits_And_UxmlFactory.verified.cs index beb2e519..64b83c8b 100644 --- a/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/UxmlAugmentGeneratorSnapshotTests.Generates_Both_Traits_And_UxmlFactory.verified.cs +++ b/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/UxmlAugmentGeneratorSnapshotTests.Generates_Both_Traits_And_UxmlFactory.verified.cs @@ -10,28 +10,28 @@ public partial class ComponentWithUxmlNameAndTraits { - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.7")] public new partial class UxmlFactory : UxmlFactory { - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.7")] public override string uxmlName { get { return "AwesomeUxmlName"; } } - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.7")] public override string uxmlQualifiedName { get { return uxmlNamespace + "." + uxmlName; } } } - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.7")] public new partial class UxmlTraits : VisualElement.UxmlTraits { UxmlBoolAttributeDescription m_Value = new UxmlBoolAttributeDescription { name = "value" }; - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.7")] public override void Init(VisualElement ve, IUxmlAttributes bag, CreationContext cc) { base.Init(ve, bag, cc); diff --git a/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/UxmlAugmentGeneratorSnapshotTests.Generates_Color_Traits.verified.cs b/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/UxmlAugmentGeneratorSnapshotTests.Generates_Color_Traits.verified.cs index 5abca7c3..12e1bbe4 100644 --- a/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/UxmlAugmentGeneratorSnapshotTests.Generates_Color_Traits.verified.cs +++ b/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/UxmlAugmentGeneratorSnapshotTests.Generates_Color_Traits.verified.cs @@ -11,16 +11,16 @@ public partial class ColorComponentWithUsing { - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.7")] public new partial class UxmlFactory : UxmlFactory {} - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.7")] public new partial class UxmlTraits : VisualElement.UxmlTraits { UxmlColorAttributeDescription m_FieldTrait = new UxmlColorAttributeDescription { name = "field-trait" }; UxmlColorAttributeDescription m_PropertyTrait = new UxmlColorAttributeDescription { name = "property-trait" }; - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.7")] public override void Init(VisualElement ve, IUxmlAttributes bag, CreationContext cc) { base.Init(ve, bag, cc); diff --git a/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/UxmlAugmentGeneratorSnapshotTests.Generates_Double_Traits.verified.cs b/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/UxmlAugmentGeneratorSnapshotTests.Generates_Double_Traits.verified.cs index 649aae2f..214a7f40 100644 --- a/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/UxmlAugmentGeneratorSnapshotTests.Generates_Double_Traits.verified.cs +++ b/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/UxmlAugmentGeneratorSnapshotTests.Generates_Double_Traits.verified.cs @@ -10,16 +10,16 @@ public partial class DoubleComponentWithUsing { - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.7")] public new partial class UxmlFactory : UxmlFactory {} - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.7")] public new partial class UxmlTraits : VisualElement.UxmlTraits { UxmlDoubleAttributeDescription m_FieldTrait = new UxmlDoubleAttributeDescription { name = "field-trait" }; UxmlDoubleAttributeDescription m_PropertyTrait = new UxmlDoubleAttributeDescription { name = "property-trait" }; - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.7")] public override void Init(VisualElement ve, IUxmlAttributes bag, CreationContext cc) { base.Init(ve, bag, cc); diff --git a/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/UxmlAugmentGeneratorSnapshotTests.Generates_Enum_Trait_With_Internal_Enum.verified.cs b/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/UxmlAugmentGeneratorSnapshotTests.Generates_Enum_Trait_With_Internal_Enum.verified.cs index 3e99bc4d..b312933c 100644 --- a/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/UxmlAugmentGeneratorSnapshotTests.Generates_Enum_Trait_With_Internal_Enum.verified.cs +++ b/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/UxmlAugmentGeneratorSnapshotTests.Generates_Enum_Trait_With_Internal_Enum.verified.cs @@ -10,16 +10,16 @@ public partial class OwnEnumComponent { - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.7")] public new partial class UxmlFactory : UxmlFactory {} - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.7")] public new partial class UxmlTraits : VisualElement.UxmlTraits { UxmlEnumAttributeDescription m_FieldTrait = new UxmlEnumAttributeDescription { name = "field-trait" }; UxmlEnumAttributeDescription m_PropertyTrait = new UxmlEnumAttributeDescription { name = "property-trait" }; - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.7")] public override void Init(VisualElement ve, IUxmlAttributes bag, CreationContext cc) { base.Init(ve, bag, cc); diff --git a/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/UxmlAugmentGeneratorSnapshotTests.Generates_Enum_Traits.verified.cs b/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/UxmlAugmentGeneratorSnapshotTests.Generates_Enum_Traits.verified.cs index cad21255..914e5824 100644 --- a/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/UxmlAugmentGeneratorSnapshotTests.Generates_Enum_Traits.verified.cs +++ b/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/UxmlAugmentGeneratorSnapshotTests.Generates_Enum_Traits.verified.cs @@ -10,16 +10,16 @@ public partial class MyEnumComponentWithUsing { - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.7")] public new partial class UxmlFactory : UxmlFactory {} - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.7")] public new partial class UxmlTraits : VisualElement.UxmlTraits { UxmlEnumAttributeDescription m_FieldTrait = new UxmlEnumAttributeDescription { name = "field-trait" }; UxmlEnumAttributeDescription m_PropertyTrait = new UxmlEnumAttributeDescription { name = "property-trait" }; - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.7")] public override void Init(VisualElement ve, IUxmlAttributes bag, CreationContext cc) { base.Init(ve, bag, cc); diff --git a/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/UxmlAugmentGeneratorSnapshotTests.Generates_Float_Traits.verified.cs b/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/UxmlAugmentGeneratorSnapshotTests.Generates_Float_Traits.verified.cs index 98a8d36d..daeb44e8 100644 --- a/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/UxmlAugmentGeneratorSnapshotTests.Generates_Float_Traits.verified.cs +++ b/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/UxmlAugmentGeneratorSnapshotTests.Generates_Float_Traits.verified.cs @@ -10,16 +10,16 @@ public partial class FloatComponentWithUsing { - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.7")] public new partial class UxmlFactory : UxmlFactory {} - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.7")] public new partial class UxmlTraits : VisualElement.UxmlTraits { UxmlFloatAttributeDescription m_FieldTrait = new UxmlFloatAttributeDescription { name = "field-trait" }; UxmlFloatAttributeDescription m_PropertyTrait = new UxmlFloatAttributeDescription { name = "property-trait" }; - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.7")] public override void Init(VisualElement ve, IUxmlAttributes bag, CreationContext cc) { base.Init(ve, bag, cc); diff --git a/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/UxmlAugmentGeneratorSnapshotTests.Generates_In_Namespace.verified.cs b/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/UxmlAugmentGeneratorSnapshotTests.Generates_In_Namespace.verified.cs index 89ddd6e6..70b8073e 100644 --- a/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/UxmlAugmentGeneratorSnapshotTests.Generates_In_Namespace.verified.cs +++ b/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/UxmlAugmentGeneratorSnapshotTests.Generates_In_Namespace.verified.cs @@ -12,16 +12,16 @@ namespace Custom.Components { public partial class CustomNamespaceComponent { - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.7")] public new partial class UxmlFactory : UxmlFactory {} - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.7")] public new partial class UxmlTraits : VisualElement.UxmlTraits { UxmlEnumAttributeDescription m_FieldTrait = new UxmlEnumAttributeDescription { name = "field-trait" }; UxmlEnumAttributeDescription m_PropertyTrait = new UxmlEnumAttributeDescription { name = "property-trait" }; - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.7")] public override void Init(VisualElement ve, IUxmlAttributes bag, CreationContext cc) { base.Init(ve, bag, cc); diff --git a/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/UxmlAugmentGeneratorSnapshotTests.Generates_Int_Traits.verified.cs b/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/UxmlAugmentGeneratorSnapshotTests.Generates_Int_Traits.verified.cs index c5d42ab0..d032c9c3 100644 --- a/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/UxmlAugmentGeneratorSnapshotTests.Generates_Int_Traits.verified.cs +++ b/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/UxmlAugmentGeneratorSnapshotTests.Generates_Int_Traits.verified.cs @@ -10,16 +10,16 @@ public partial class IntComponentWithUsing { - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.7")] public new partial class UxmlFactory : UxmlFactory {} - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.7")] public new partial class UxmlTraits : VisualElement.UxmlTraits { UxmlIntAttributeDescription m_FieldTrait = new UxmlIntAttributeDescription { name = "field-trait" }; UxmlIntAttributeDescription m_PropertyTrait = new UxmlIntAttributeDescription { name = "property-trait" }; - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.7")] public override void Init(VisualElement ve, IUxmlAttributes bag, CreationContext cc) { base.Init(ve, bag, cc); diff --git a/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/UxmlAugmentGeneratorSnapshotTests.Generates_Long_Traits.verified.cs b/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/UxmlAugmentGeneratorSnapshotTests.Generates_Long_Traits.verified.cs index 013a3f4b..18a0e85d 100644 --- a/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/UxmlAugmentGeneratorSnapshotTests.Generates_Long_Traits.verified.cs +++ b/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/UxmlAugmentGeneratorSnapshotTests.Generates_Long_Traits.verified.cs @@ -10,16 +10,16 @@ public partial class LongComponentWithUsing { - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.7")] public new partial class UxmlFactory : UxmlFactory {} - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.7")] public new partial class UxmlTraits : VisualElement.UxmlTraits { UxmlLongAttributeDescription m_FieldTrait = new UxmlLongAttributeDescription { name = "field-trait" }; UxmlLongAttributeDescription m_PropertyTrait = new UxmlLongAttributeDescription { name = "property-trait" }; - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.7")] public override void Init(VisualElement ve, IUxmlAttributes bag, CreationContext cc) { base.Init(ve, bag, cc); diff --git a/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/UxmlAugmentGeneratorSnapshotTests.Generates_String_Traits.verified.cs b/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/UxmlAugmentGeneratorSnapshotTests.Generates_String_Traits.verified.cs index 61f566c8..e830ff4b 100644 --- a/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/UxmlAugmentGeneratorSnapshotTests.Generates_String_Traits.verified.cs +++ b/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/UxmlAugmentGeneratorSnapshotTests.Generates_String_Traits.verified.cs @@ -10,16 +10,16 @@ public partial class StringComponentWithUsing { - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.7")] public new partial class UxmlFactory : UxmlFactory {} - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.7")] public new partial class UxmlTraits : VisualElement.UxmlTraits { UxmlStringAttributeDescription m_FieldTrait = new UxmlStringAttributeDescription { name = "field-trait" }; UxmlStringAttributeDescription m_PropertyTrait = new UxmlStringAttributeDescription { name = "property-trait" }; - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.7")] public override void Init(VisualElement ve, IUxmlAttributes bag, CreationContext cc) { base.Init(ve, bag, cc); diff --git a/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/UxmlAugmentGeneratorSnapshotTests.Generates_Traits_For_Many_Classes.00FirstTraitClass.Uxml.g.verified.cs b/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/UxmlAugmentGeneratorSnapshotTests.Generates_Traits_For_Many_Classes.00FirstTraitClass.Uxml.g.verified.cs index 11131ced..489bf866 100644 --- a/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/UxmlAugmentGeneratorSnapshotTests.Generates_Traits_For_Many_Classes.00FirstTraitClass.Uxml.g.verified.cs +++ b/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/UxmlAugmentGeneratorSnapshotTests.Generates_Traits_For_Many_Classes.00FirstTraitClass.Uxml.g.verified.cs @@ -10,16 +10,16 @@ public partial class FirstTraitClass { - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.7")] public new partial class UxmlFactory : UxmlFactory {} - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.7")] public new partial class UxmlTraits : VisualElement.UxmlTraits { UxmlIntAttributeDescription m_FieldTrait = new UxmlIntAttributeDescription { name = "custom-trait-name" }; UxmlFloatAttributeDescription m_PropertyTrait = new UxmlFloatAttributeDescription { name = "my-property" }; - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.7")] public override void Init(VisualElement ve, IUxmlAttributes bag, CreationContext cc) { base.Init(ve, bag, cc); diff --git a/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/UxmlAugmentGeneratorSnapshotTests.Generates_Traits_For_Many_Classes.01SecondTraitClass.Uxml.g.verified.cs b/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/UxmlAugmentGeneratorSnapshotTests.Generates_Traits_For_Many_Classes.01SecondTraitClass.Uxml.g.verified.cs index 11a99056..82fa0f55 100644 --- a/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/UxmlAugmentGeneratorSnapshotTests.Generates_Traits_For_Many_Classes.01SecondTraitClass.Uxml.g.verified.cs +++ b/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/UxmlAugmentGeneratorSnapshotTests.Generates_Traits_For_Many_Classes.01SecondTraitClass.Uxml.g.verified.cs @@ -10,16 +10,16 @@ public partial class SecondTraitClass { - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.7")] public new partial class UxmlFactory : UxmlFactory {} - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.7")] public new partial class UxmlTraits : VisualElement.UxmlTraits { UxmlBoolAttributeDescription m_Enabled = new UxmlBoolAttributeDescription { name = "enabled" }; UxmlLongAttributeDescription m_SomeValue = new UxmlLongAttributeDescription { name = "secret" }; - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.7")] public override void Init(VisualElement ve, IUxmlAttributes bag, CreationContext cc) { base.Init(ve, bag, cc); diff --git a/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/UxmlAugmentGeneratorSnapshotTests.Generates_Traits_For_Many_Classes.02ThirdTraitClass.Uxml.g.verified.cs b/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/UxmlAugmentGeneratorSnapshotTests.Generates_Traits_For_Many_Classes.02ThirdTraitClass.Uxml.g.verified.cs index 72317559..77d59b16 100644 --- a/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/UxmlAugmentGeneratorSnapshotTests.Generates_Traits_For_Many_Classes.02ThirdTraitClass.Uxml.g.verified.cs +++ b/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/UxmlAugmentGeneratorSnapshotTests.Generates_Traits_For_Many_Classes.02ThirdTraitClass.Uxml.g.verified.cs @@ -10,15 +10,15 @@ public partial class ThirdTraitClass { - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.7")] public new partial class UxmlFactory : UxmlFactory {} - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.7")] public new partial class UxmlTraits : VisualElement.UxmlTraits { UxmlStringAttributeDescription m_Name = new UxmlStringAttributeDescription { name = "name" }; - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.7")] public override void Init(VisualElement ve, IUxmlAttributes bag, CreationContext cc) { base.Init(ve, bag, cc); diff --git a/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/UxmlAugmentGeneratorSnapshotTests.Generates_UxmlFactory_With_UxmlName.verified.cs b/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/UxmlAugmentGeneratorSnapshotTests.Generates_UxmlFactory_With_UxmlName.verified.cs index 322ad5d6..25f5dec6 100644 --- a/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/UxmlAugmentGeneratorSnapshotTests.Generates_UxmlFactory_With_UxmlName.verified.cs +++ b/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/UxmlAugmentGeneratorSnapshotTests.Generates_UxmlFactory_With_UxmlName.verified.cs @@ -10,16 +10,16 @@ public partial class MyUxmlNameAttributeComponent { - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.7")] public new partial class UxmlFactory : UxmlFactory { - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.7")] public override string uxmlName { get { return "MyUxmlNameAttribute"; } } - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.7")] public override string uxmlQualifiedName { get { return uxmlNamespace + "." + uxmlName; } diff --git a/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/UxmlAugmentGeneratorSnapshotTests.Handles_Long_Member_Name_For_Trait.verified.cs b/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/UxmlAugmentGeneratorSnapshotTests.Handles_Long_Member_Name_For_Trait.verified.cs index b59a7f39..055727ba 100644 --- a/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/UxmlAugmentGeneratorSnapshotTests.Handles_Long_Member_Name_For_Trait.verified.cs +++ b/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/UxmlAugmentGeneratorSnapshotTests.Handles_Long_Member_Name_For_Trait.verified.cs @@ -10,15 +10,15 @@ public partial class LongTraitNameComponent { - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.7")] public new partial class UxmlFactory : UxmlFactory {} - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.7")] public new partial class UxmlTraits : VisualElement.UxmlTraits { UxmlIntAttributeDescription m_HereIsALongMemberNameWithALotOfComplexity123Test_Hello___WorldA = new UxmlIntAttributeDescription { name = "here-is-a-long-member-name-with-a-lot-of-complexity123-test-hello-world-a" }; - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.7")] public override void Init(VisualElement ve, IUxmlAttributes bag, CreationContext cc) { base.Init(ve, bag, cc); diff --git a/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/UxmlAugmentGeneratorSnapshotTests.Handles_Subclass.verified.cs b/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/UxmlAugmentGeneratorSnapshotTests.Handles_Subclass.verified.cs index ed493944..7dd9fb07 100644 --- a/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/UxmlAugmentGeneratorSnapshotTests.Handles_Subclass.verified.cs +++ b/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/UxmlAugmentGeneratorSnapshotTests.Handles_Subclass.verified.cs @@ -10,15 +10,15 @@ public partial class MyComponentWithTraits { - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.7")] public new partial class UxmlFactory : UxmlFactory {} - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.7")] public new partial class UxmlTraits : VisualElement.UxmlTraits { UxmlDoubleAttributeDescription m_Trait = new UxmlDoubleAttributeDescription { name = "double-value" }; - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.7")] public override void Init(VisualElement ve, IUxmlAttributes bag, CreationContext cc) { base.Init(ve, bag, cc); diff --git a/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/UxmlAugmentGeneratorSnapshotTests.It_Uses_Initializer_As_Default_Trait_Value.verified.cs b/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/UxmlAugmentGeneratorSnapshotTests.It_Uses_Initializer_As_Default_Trait_Value.verified.cs index 493e36da..bf298cd4 100644 --- a/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/UxmlAugmentGeneratorSnapshotTests.It_Uses_Initializer_As_Default_Trait_Value.verified.cs +++ b/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/UxmlAugmentGeneratorSnapshotTests.It_Uses_Initializer_As_Default_Trait_Value.verified.cs @@ -11,17 +11,17 @@ public partial class Test { - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.7")] public new partial class UxmlFactory : UxmlFactory {} - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.7")] public new partial class UxmlTraits : VisualElement.UxmlTraits { UxmlIntAttributeDescription m_Number = new UxmlIntAttributeDescription { name = "number" }; UxmlColorAttributeDescription m_color = new UxmlColorAttributeDescription { name = "color" }; UxmlStringAttributeDescription m_MyMessage = new UxmlStringAttributeDescription { name = "my-message" }; - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.7")] public override void Init(VisualElement ve, IUxmlAttributes bag, CreationContext cc) { base.Init(ve, bag, cc); diff --git a/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/UxmlAugmentGeneratorSnapshotTests.Removes_Leading_And_Trailing_Underscores.verified.cs b/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/UxmlAugmentGeneratorSnapshotTests.Removes_Leading_And_Trailing_Underscores.verified.cs index ec592e49..4acc4ec2 100644 --- a/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/UxmlAugmentGeneratorSnapshotTests.Removes_Leading_And_Trailing_Underscores.verified.cs +++ b/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/UxmlAugmentGeneratorSnapshotTests.Removes_Leading_And_Trailing_Underscores.verified.cs @@ -10,17 +10,17 @@ public partial class LongTraitNameComponent { - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.7")] public new partial class UxmlFactory : UxmlFactory {} - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.7")] public new partial class UxmlTraits : VisualElement.UxmlTraits { UxmlIntAttributeDescription m__member = new UxmlIntAttributeDescription { name = "member" }; UxmlIntAttributeDescription m_memberTwo_ = new UxmlIntAttributeDescription { name = "member-two" }; UxmlIntAttributeDescription m__member_three_ = new UxmlIntAttributeDescription { name = "member-three" }; - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.7")] public override void Init(VisualElement ve, IUxmlAttributes bag, CreationContext cc) { base.Init(ve, bag, cc); diff --git a/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/UxmlAugmentGeneratorSnapshotTests.Works_On_Non_UIComponent_Type.verified.cs b/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/UxmlAugmentGeneratorSnapshotTests.Works_On_Non_UIComponent_Type.verified.cs index 3e9b9feb..ade027c8 100644 --- a/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/UxmlAugmentGeneratorSnapshotTests.Works_On_Non_UIComponent_Type.verified.cs +++ b/UIComponents.Roslyn/UIComponents.Roslyn.Generation.Tests/Snapshots/UxmlAugmentGeneratorSnapshotTests.Works_On_Non_UIComponent_Type.verified.cs @@ -10,16 +10,16 @@ public partial class NonUIComponentClass { - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.7")] public new partial class UxmlFactory : UxmlFactory {} - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.7")] public new partial class UxmlTraits : VisualElement.UxmlTraits { UxmlIntAttributeDescription m_FieldTrait = new UxmlIntAttributeDescription { name = "custom-trait-name" }; UxmlFloatAttributeDescription m_PropertyTrait = new UxmlFloatAttributeDescription { name = "my-property" }; - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.7")] public override void Init(VisualElement ve, IUxmlAttributes bag, CreationContext cc) { base.Init(ve, bag, cc); diff --git a/UIComponents.Roslyn/UIComponents.Roslyn.Generation/Constants.cs b/UIComponents.Roslyn/UIComponents.Roslyn.Generation/Constants.cs index 3def265a..1ecdd52b 100644 --- a/UIComponents.Roslyn/UIComponents.Roslyn.Generation/Constants.cs +++ b/UIComponents.Roslyn/UIComponents.Roslyn.Generation/Constants.cs @@ -3,7 +3,7 @@ internal static class Constants { public const string ToolName = "UIComponents.Roslyn.Generation"; - public const string Version = "1.0.0-beta.6"; + public const string Version = "1.0.0-beta.7"; public const string GeneratedCodeAttribute = "[GeneratedCode(\"" + ToolName + "\", \"" + Version + "\")]"; } }