RhoMicro.CodeAnalysis.UtilityGenerators 15.1.5

dotnet add package RhoMicro.CodeAnalysis.UtilityGenerators --version 15.1.5
NuGet\Install-Package RhoMicro.CodeAnalysis.UtilityGenerators -Version 15.1.5
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="RhoMicro.CodeAnalysis.UtilityGenerators" Version="15.1.5">
  <PrivateAssets>all</PrivateAssets>
  <IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
</PackageReference>
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add RhoMicro.CodeAnalysis.UtilityGenerators --version 15.1.5
#r "nuget: RhoMicro.CodeAnalysis.UtilityGenerators, 15.1.5"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install RhoMicro.CodeAnalysis.UtilityGenerators as a Cake Addin
#addin nuget:?package=RhoMicro.CodeAnalysis.UtilityGenerators&version=15.1.5

// Install RhoMicro.CodeAnalysis.UtilityGenerators as a Cake Tool
#tool nuget:?package=RhoMicro.CodeAnalysis.UtilityGenerators&version=15.1.5

What is this?

This project contains generators and analyzers that help writing generators and analyzers.

Currently, there are two generators contained within:

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 ITypeSymbols
  • 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.

There are no supported framework assets in this package.

Learn more about Target Frameworks and .NET Standard.

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.5 119 3/26/2024
15.1.4 86 3/26/2024
15.1.3 164 3/11/2024
15.1.2 96 3/8/2024
15.1.1 127 3/4/2024
15.1.0 108 2/28/2024
15.0.1 89 2/22/2024
15.0.0 127 2/20/2024
14.0.5 108 2/19/2024
14.0.4 57 2/19/2024
14.0.3 62 2/19/2024
14.0.2 86 2/15/2024
14.0.0 86 2/15/2024
14.0.0-alpha.30 43 2/15/2024
14.0.0-alpha.29 39 2/15/2024
14.0.0-alpha.28 42 2/15/2024
14.0.0-alpha.27 45 2/15/2024
14.0.0-alpha.26 51 2/15/2024
14.0.0-alpha.25 46 2/15/2024
14.0.0-alpha.24 48 2/15/2024
14.0.0-alpha.22 45 2/15/2024
14.0.0-alpha.20 48 2/15/2024
13.0.0 184 1/8/2024
12.1.2 119 1/6/2024
12.1.1 111 1/6/2024
12.1.0 91 1/6/2024
12.0.9 134 1/5/2024
12.0.8 115 1/5/2024
11.0.0 120 12/16/2023
8.0.3 102 12/11/2023
8.0.2 116 12/11/2023
8.0.0 147 12/11/2023