RhoMicro.CodeAnalysis.UtilityGenerators
14.0.0
See the version list below for details.
dotnet add package RhoMicro.CodeAnalysis.UtilityGenerators --version 14.0.0
NuGet\Install-Package RhoMicro.CodeAnalysis.UtilityGenerators -Version 14.0.0
<PackageReference Include="RhoMicro.CodeAnalysis.UtilityGenerators" Version="14.0.0"> <PrivateAssets>all</PrivateAssets> <IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets> </PackageReference>
paket add RhoMicro.CodeAnalysis.UtilityGenerators --version 14.0.0
#r "nuget: RhoMicro.CodeAnalysis.UtilityGenerators, 14.0.0"
// Install RhoMicro.CodeAnalysis.UtilityGenerators as a Cake Addin #addin nuget:?package=RhoMicro.CodeAnalysis.UtilityGenerators&version=14.0.0 // Install RhoMicro.CodeAnalysis.UtilityGenerators as a Cake Tool #tool nuget:?package=RhoMicro.CodeAnalysis.UtilityGenerators&version=14.0.0
What is this?
This project contains generators and analyzers that help writing generators and analyzers.
Currently, there are two generators contained within:
LibraryGenerator
- provides expanding macro string builders, diagnostics accumulators and more
AttributeFactoryGenerator
- automates parsing instructions from
AttributeData
- automates parsing instructions from
Installation
<PackageReference Include="RhoMicro.CodeAnalysis.UtilityGenerators" Version="*">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
LibraryGenerator
Generates types that help with source code generators & analyzers. A more detailed section is coming soon.
AttributeFactoryGenerator
Are you creating source generators for C#? Are you using attributes to allow your consumers to instruct your generator? Are you dissatisfied with the amount of boilerplate you have to write in order to extract those instructions from the roslyn api?
Then this project could be of use to you!
Key Features & Limitations
- Generate Factory for parsing attribute instance from
AttributeData
- Generate helper functions for retrieving instances of your attribute from an
IEnumerable<AttributeData>
- Parse type properties as
ITypeSymbol
s - Generate the attribute source text itself (no requirement for second attribute library)
How to use
Add a compilation flag to your generator project:
<PropertyGroup>
<DefineConstants>$(DefineConstants);GENERATOR</DefineConstants>
</PropertyGroup>
Declare an attribute like so:
[AttributeUsage(AttributeTargets.Class)]
#if GENERATOR
[RhoMicro.CodeAnalysis.GenerateFactory]
#endif
public partial class TestGeneratorTargetAttribute : Attribute
{
#if GENERATOR
[ExcludeFromFactory]
private TestGeneratorTargetAttribute(System.Object typeSymbolContainer) =>
_typeSymbolContainer = typeSymbolContainer;
#endif
public TestGeneratorTargetAttribute(String name, Int32[] ages)
{
Name = name;
Ages = ages;
}
public TestGeneratorTargetAttribute(Type type) => Type = type;
public String Name { get; }
public Int32[] Ages { get; }
public Type? Type { get; set; }
}
The constructor enclosed in the preprocessor condition is required in order to construct an instance when the consumer made use of a constructor taking at least one parameter of type Type
.
For every constructor that takes at least one parameter of type Type
, an equivalent factory constructor is required. These are expected to take an instance of Object
instead of the type and assign it to the generated helper field.
This way, a generated helper property of type ITypeSymbol
may be used to retrieve the type used by the consumer in their typeof
expression.
Use the generated factory and helper methods like so:
ImmutableArray<AttributeData> attributes =
symbol.GetAttributes();
IEnumerable<TestGeneratorTargetAttribute> allParsed =
attributes.OfTestGeneratorTargetAttribute();
TestGeneratorTargetAttribute singleParsed =
TestGeneratorTargetAttribute.TryCreate(attributes[0], out var a) ?
a :
null;
singleParsed =
symbol.TryGetFirstTestGeneratorTargetAttribute(out var a) ?
a :
null;
context.RegisterPostInitializationOutput(
c => c.AddSource($"{nameof(TestGeneratorTargetAttribute)}.g.cs", TestGeneratorTargetAttribute.SourceText));
The generated extension method OfTestGeneratorTargetAttribute
will return all instances of TestGeneratorTargetAttribute
found in the symbols list of attributes.
The generated extension method TryGetFirstTestGeneratorTargetAttribute
attempts to retrieve the first instance of TestGeneratorTargetAttribute
found on the symbol.
The generated extension method ForTestGeneratorTargetAttribute
makes use of the efficient FAWMN
api.
Learn more about Target Frameworks and .NET Standard.
-
.NETStandard 2.0
- Microsoft.CodeAnalysis (>= 4.8.0)
- PolySharp (>= 1.14.1)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
15.1.7 | 186 | 7/15/2024 |
15.1.6 | 166 | 6/11/2024 |
15.1.5 | 181 | 3/26/2024 |
15.1.4 | 118 | 3/26/2024 |
15.1.3 | 207 | 3/11/2024 |
15.1.2 | 140 | 3/8/2024 |
15.1.1 | 163 | 3/4/2024 |
15.1.0 | 147 | 2/28/2024 |
15.0.1 | 114 | 2/22/2024 |
15.0.0 | 163 | 2/20/2024 |
14.0.5 | 142 | 2/19/2024 |
14.0.4 | 91 | 2/19/2024 |
14.0.3 | 100 | 2/19/2024 |
14.0.2 | 120 | 2/15/2024 |
14.0.0 | 123 | 2/15/2024 |
14.0.0-alpha.30 | 56 | 2/15/2024 |
14.0.0-alpha.29 | 50 | 2/15/2024 |
14.0.0-alpha.28 | 49 | 2/15/2024 |
14.0.0-alpha.27 | 54 | 2/15/2024 |
14.0.0-alpha.26 | 58 | 2/15/2024 |
14.0.0-alpha.25 | 55 | 2/15/2024 |
14.0.0-alpha.24 | 57 | 2/15/2024 |
14.0.0-alpha.22 | 54 | 2/15/2024 |
14.0.0-alpha.20 | 58 | 2/15/2024 |
13.0.0 | 220 | 1/8/2024 |
12.1.2 | 157 | 1/6/2024 |
12.1.1 | 138 | 1/6/2024 |
12.1.0 | 128 | 1/6/2024 |
12.0.9 | 170 | 1/5/2024 |
12.0.8 | 152 | 1/5/2024 |
11.0.0 | 155 | 12/16/2023 |
8.0.3 | 134 | 12/11/2023 |
8.0.2 | 150 | 12/11/2023 |
8.0.0 | 181 | 12/11/2023 |