diff --git a/Assets/UIComponents/Roslyn/UIComponents.Roslyn.Generation.dll b/Assets/UIComponents/Roslyn/UIComponents.Roslyn.Generation.dll index 75f8edd1..39158579 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 c28599a5..28552122 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 20d160dc..fc5b8641 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-alpha.6", + "version": "1.0.0-beta.0", "description": "A small front-end framework for Unity's UIToolkit.", "unity": "2021.3", "author": { diff --git a/CHANGELOG.md b/CHANGELOG.md index 907bb256..53978407 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,17 @@ +# [1.0.0-beta.0](https://github.com/jonisavo/uicomponents/compare/v1.0.0-alpha.6...v1.0.0-beta.0) (2023-03-05) + + +### Features + +* remove com.unity.roslyn from dependencies ([c99dbfd](https://github.com/jonisavo/uicomponents/commit/c99dbfd2b73fd3656cd794ab6efdca995c37d902)) + + +### BREAKING CHANGES + +* com.unity.roslyn is no longer a dependency. This means that Unity 2020 is no longer officially supported out-of-the-box. + # [1.0.0-alpha.6](https://github.com/jonisavo/uicomponents/compare/v1.0.0-alpha.5...v1.0.0-alpha.6) (2023-03-01) diff --git a/README.md b/README.md index 454e22eb..4e7aa430 100644 --- a/README.md +++ b/README.md @@ -169,7 +169,7 @@ Alternatively, merge this snippet to your `Packages/manifest.json` file: } ], "dependencies": { - "io.savolainen.uicomponents": "1.0.0-alpha.6" + "io.savolainen.uicomponents": "1.0.0-beta.0" } } ``` @@ -179,12 +179,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-alpha.6" +"io.savolainen.uicomponents": "https://github.com/jonisavo/uicomponents.git#upm/v1.0.0-beta.0" ``` -This will install version 1.0.0-alpha.6. +This will install version 1.0.0-beta.0. -To update, change `upm/v1.0.0-alpha.6` to point to the latest version. +To update, change `upm/v1.0.0-beta.0` 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 ca631e33..90728a84 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-alpha.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.0")] 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-alpha.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.0")] 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 5b9161f3..220fb966 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-alpha.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.0")] private static readonly IDependency[] UIC_Dependencies = new IDependency[] { UIComponents.DependencyInjection.Dependency.SingletonFor(), UIComponents.DependencyInjection.Dependency.SingletonFor() }; - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-alpha.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.0")] 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 98fc8e2f..724faf83 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-alpha.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.0")] private static readonly IDependency[] UIC_Dependencies = new IDependency[] { UIComponents.DependencyInjection.Dependency.SingletonFor(), UIComponents.DependencyInjection.Dependency.SingletonFor() }; - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-alpha.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.0")] 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 1cb151fe..3c515d3a 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-alpha.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.0")] 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-alpha.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.0")] 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 01b4d93e..60de7f79 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-alpha.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.0")] private static readonly IDependency[] UIC_Dependencies = new IDependency[] { UIComponents.DependencyInjection.Dependency.SingletonFor() }; - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-alpha.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.0")] 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 215fc4e0..c2371204 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-alpha.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.0")] private static readonly IDependency[] UIC_Dependencies = new IDependency[] { UIComponents.DependencyInjection.Dependency.SingletonFor(), UIComponents.DependencyInjection.Dependency.SingletonFor() }; - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-alpha.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.0")] 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 c07032a6..32a8e23d 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-alpha.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.0")] private static readonly IDependency[] UIC_Dependencies = new IDependency[] { UIComponents.DependencyInjection.Dependency.TransientFor() }; - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-alpha.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.0")] 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 01eea491..f561956e 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-alpha.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.0")] private static readonly IDependency[] UIC_Dependencies = new IDependency[] { UIComponents.DependencyInjection.Dependency.SingletonFor(), UIComponents.DependencyInjection.Dependency.TransientFor() }; - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-alpha.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.0")] 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 a6cc65f8..a8bff886 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-alpha.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.0")] private static readonly IDependency[] UIC_Dependencies = new IDependency[] { UIComponents.DependencyInjection.Dependency.SingletonFor(), UIComponents.DependencyInjection.Dependency.TransientFor() }; - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-alpha.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.0")] 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 01eea491..f561956e 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-alpha.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.0")] private static readonly IDependency[] UIC_Dependencies = new IDependency[] { UIComponents.DependencyInjection.Dependency.SingletonFor(), UIComponents.DependencyInjection.Dependency.TransientFor() }; - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-alpha.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.0")] 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 f1568d62..76d6b8d2 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-alpha.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.0")] private static readonly IDependency[] UIC_Dependencies = new IDependency[] { UIComponents.DependencyInjection.Dependency.SingletonFor(), UIComponents.DependencyInjection.Dependency.TransientFor() }; - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-alpha.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.0")] public 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 0350dfea..d3e98b3c 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-alpha.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.0")] 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-alpha.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.0")] 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 e2ba8e01..6e0e0e91 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-alpha.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.0")] private static UIComponentEffectAttribute[] UIC_EffectAttributes; - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-alpha.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.0")] 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-alpha.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.0")] 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 accd655b..7a9f631a 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-alpha.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.0")] private static UIComponentEffectAttribute[] UIC_EffectAttributes; - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-alpha.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.0")] 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-alpha.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.0")] 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 28398733..20c35292 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-alpha.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.0")] private static UIComponentEffectAttribute[] UIC_EffectAttributes; - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-alpha.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.0")] 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-alpha.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.0")] 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 25237b0b..09deccb5 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-alpha.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.0")] private static UIComponentEffectAttribute[] UIC_EffectAttributes; - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-alpha.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.0")] 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-alpha.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.0")] 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 2daecb9c..0e67d1c0 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-alpha.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.0")] private static UIComponentEffectAttribute[] UIC_EffectAttributes; - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-alpha.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.0")] 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-alpha.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.0")] 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 d9970bb6..70cf4783 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-alpha.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.0")] 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 d1300e11..9b1718d1 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-alpha.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.0")] 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 a193cf7b..b6a372d8 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-alpha.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.0")] 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 b6f776f0..0c5ceee4 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-alpha.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.0")] 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 3f1f01ff..a8a78da9 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-alpha.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.0")] 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 365d7b66..680a8d6c 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-alpha.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.0")] 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 d9970bb6..70cf4783 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-alpha.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.0")] 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 88bbb11e..bcaac607 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-alpha.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.0")] 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 7843063e..c9d65d12 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-alpha.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.0")] 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 2f4d38b2..3f4df988 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 @@ -11,7 +11,7 @@ public partial class MyClass { - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-alpha.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.0")] 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-alpha.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.0")] protected override 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 f60dd124..0544bbdc 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-alpha.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.0")] 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-alpha.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.0")] 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 aee05bad..12bf0aee 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-alpha.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.0")] 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-alpha.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.0")] 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 34d1e5a6..5e8d59db 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-alpha.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.0")] 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-alpha.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.0")] 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 43c0bd16..fff30eba 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-alpha.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.0")] 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-alpha.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.0")] 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 e47255a3..61747b18 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-alpha.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.0")] 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-alpha.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.0")] 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 586562c7..63d74479 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-alpha.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.0")] 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-alpha.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.0")] 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 bcdfd8c3..7a057715 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-alpha.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.0")] 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-alpha.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.0")] 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 66212bec..a9cebd09 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-alpha.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.0")] 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 6dd05fbd..5d6c6da7 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-alpha.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.0")] 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 327e4818..a7cefb3d 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-alpha.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.0")] 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 c23afcd5..2e21c4d1 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-alpha.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.0")] 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 99f38ce0..85846099 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-alpha.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.0")] 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 95504840..33ea36dd 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-alpha.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.0")] 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 9ad89ec6..1597fbfd 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-alpha.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.0")] 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 3a170356..d3a19cf0 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-alpha.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.0")] 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 681f0f09..31a15ab7 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-alpha.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.0")] 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 50413555..57cbeace 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-alpha.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.0")] 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 dd1c1055..893b3106 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-alpha.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.0")] 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 03e58a30..db5e98fe 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-alpha.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.0")] 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 584f43b6..91b846cd 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-alpha.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.0")] 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 af1a1e4a..05ec590d 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-alpha.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.0")] 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 4f0616dd..10e63fb8 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-alpha.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.0")] protected override void UIC_RegisterEventCallbacks() { RegisterCallback(MyEventHappened); } - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-alpha.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.0")] 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 d53cf104..c36c9803 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-alpha.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.0")] protected override void UIC_RegisterEventCallbacks() { RegisterCallback(MyEventHappened); RegisterCallback(Callback); } - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-alpha.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.0")] 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 cb9c1099..989c009b 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-alpha.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.0")] protected override void UIC_RegisterEventCallbacks() { RegisterCallback(OnMyEvent); RegisterCallback(OnMyOtherEvent); } - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-alpha.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.0")] 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 0e162490..5ca2b590 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-alpha.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.0")] protected override void UIC_RegisterEventCallbacks() { RegisterCallback(OnMyEvent); } - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-alpha.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.0")] 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 ebc758df..c94c0490 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-alpha.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.0")] protected override void UIC_RegisterEventCallbacks() { RegisterCallback(OnMyEvent); RegisterCallback(OnMyOtherEvent); } - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-alpha.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.0")] 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 de542325..fa85a804 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-alpha.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.0")] protected override void UIC_RegisterEventCallbacks() { RegisterCallback(OnEvent); } - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-alpha.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.0")] 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 71c45db8..e51dd470 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-alpha.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.0")] protected override void UIC_RegisterEventCallbacks() { RegisterCallback(OnMyEvent); RegisterCallback(OnOtherEvent); } - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-alpha.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.0")] 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 aa0709ee..78453afb 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-alpha.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.0")] protected override void UIC_RegisterEventCallbacks() { RegisterCallback(OnClick); } - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-alpha.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.0")] 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 a62ea9ad..b39dc645 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-alpha.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.0")] protected override void UIC_RegisterEventCallbacks() { RegisterCallback(OnCallback); } - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-alpha.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.0")] 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 0ad2d98f..56bc0778 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-alpha.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.0")] protected override void UIC_RegisterEventCallbacks() { RegisterCallback(OnEvent); } - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-alpha.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.0")] 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 2798894c..1d10307c 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-alpha.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.0")] 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-alpha.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.0")] 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 c7b7b72b..5bd42905 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-alpha.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.0")] 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-alpha.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.0")] 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 676d144c..12f9fea3 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-alpha.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.0")] 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-alpha.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.0")] 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 6bbb75b4..af57933d 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-alpha.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.0")] 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-alpha.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.0")] 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 7b9695ed..96ba59df 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-alpha.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.0")] 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-alpha.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.0")] 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 bee68902..767860c0 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-alpha.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.0")] 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-alpha.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.0")] 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 cb617024..587031c4 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-alpha.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.0")] public new partial class UxmlFactory : UxmlFactory {} - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-alpha.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.0")] 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-alpha.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.0")] 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 452cd8be..eb8e485d 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-alpha.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.0")] public new partial class UxmlFactory : UxmlFactory {} - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-alpha.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.0")] 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-alpha.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.0")] 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 31648a93..2f07c538 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-alpha.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.0")] public new partial class UxmlFactory : UxmlFactory {} - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-alpha.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.0")] 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-alpha.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.0")] 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 7067227b..22c308e9 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-alpha.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.0")] public new partial class UxmlFactory : UxmlFactory { - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-alpha.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.0")] public override string uxmlName { get { return "AwesomeUxmlName"; } } - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-alpha.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.0")] public override string uxmlQualifiedName { get { return uxmlNamespace + "." + uxmlName; } } } - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-alpha.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.0")] public new partial class UxmlTraits : VisualElement.UxmlTraits { UxmlBoolAttributeDescription m_Value = new UxmlBoolAttributeDescription { name = "value" }; - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-alpha.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.0")] 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 89162d72..9c106563 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-alpha.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.0")] public new partial class UxmlFactory : UxmlFactory {} - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-alpha.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.0")] 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-alpha.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.0")] 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 1244a3dd..f0fdd519 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-alpha.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.0")] public new partial class UxmlFactory : UxmlFactory {} - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-alpha.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.0")] 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-alpha.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.0")] 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 12ba3eb2..8b241236 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-alpha.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.0")] public new partial class UxmlFactory : UxmlFactory {} - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-alpha.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.0")] 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-alpha.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.0")] 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 20c438e0..6093c8e6 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-alpha.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.0")] public new partial class UxmlFactory : UxmlFactory {} - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-alpha.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.0")] 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-alpha.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.0")] 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 99aa001d..907eb3d7 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-alpha.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.0")] public new partial class UxmlFactory : UxmlFactory {} - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-alpha.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.0")] 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-alpha.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.0")] 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 a7b462c7..8843eab8 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-alpha.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.0")] public new partial class UxmlFactory : UxmlFactory {} - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-alpha.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.0")] 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-alpha.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.0")] 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 35088cd6..4e34c987 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-alpha.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.0")] public new partial class UxmlFactory : UxmlFactory {} - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-alpha.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.0")] 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-alpha.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.0")] 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 6a867ab7..42f1e74a 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-alpha.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.0")] public new partial class UxmlFactory : UxmlFactory {} - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-alpha.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.0")] 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-alpha.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.0")] 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 bdf815ac..9d6bb2b0 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-alpha.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.0")] public new partial class UxmlFactory : UxmlFactory {} - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-alpha.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.0")] 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-alpha.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.0")] 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 d11de5db..aac15a89 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-alpha.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.0")] public new partial class UxmlFactory : UxmlFactory {} - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-alpha.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.0")] 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-alpha.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.0")] 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 e3039604..bbd62d97 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-alpha.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.0")] public new partial class UxmlFactory : UxmlFactory {} - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-alpha.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.0")] 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-alpha.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.0")] 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 86ea4f34..8143ab6c 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-alpha.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.0")] public new partial class UxmlFactory : UxmlFactory {} - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-alpha.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.0")] public new partial class UxmlTraits : VisualElement.UxmlTraits { UxmlStringAttributeDescription m_Name = new UxmlStringAttributeDescription { name = "name" }; - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-alpha.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.0")] 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 b0e08c15..4aace47c 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-alpha.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.0")] public new partial class UxmlFactory : UxmlFactory { - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-alpha.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.0")] public override string uxmlName { get { return "MyUxmlNameAttribute"; } } - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-alpha.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.0")] 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 efa330cc..9b715d12 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-alpha.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.0")] public new partial class UxmlFactory : UxmlFactory {} - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-alpha.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.0")] 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-alpha.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.0")] 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 e7229738..789df6be 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-alpha.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.0")] public new partial class UxmlFactory : UxmlFactory {} - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-alpha.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.0")] public new partial class UxmlTraits : VisualElement.UxmlTraits { UxmlDoubleAttributeDescription m_Trait = new UxmlDoubleAttributeDescription { name = "double-value" }; - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-alpha.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.0")] 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 63472e9b..37f1dc08 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-alpha.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.0")] public new partial class UxmlFactory : UxmlFactory {} - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-alpha.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.0")] 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-alpha.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.0")] 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 98a2b49e..ea57a0b6 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-alpha.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.0")] public new partial class UxmlFactory : UxmlFactory {} - [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-alpha.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.0")] 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-alpha.6")] + [GeneratedCode("UIComponents.Roslyn.Generation", "1.0.0-beta.0")] 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 808fadf7..6e79bc0b 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-alpha.6"; + public const string Version = "1.0.0-beta.0"; public const string GeneratedCodeAttribute = "[GeneratedCode(\"" + ToolName + "\", \"" + Version + "\")]"; } }