Skip to content

bradphelan/CodeGeneration.Roslyn

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

63 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Roslyn-based Code Generation

Build status NuGet package

Assists in performing Roslyn-based code generation during a build. This includes design-time support, such that code generation can respond to changes made in hand-authored code files by generating new code that shows up to Intellisense as soon as the file is saved to disk.

Installation

Install the CodeGeneration.Roslyn NuGet package.

Define code generation

To write your code that generates more code, after installing the package, define two classes. First, an attribute class. This is the attribute your users will affix to a type or member to produce more code based on it. That attribute will refer to another class which actually performs the code generation.

In the following example, we define a pair of classes which exactly duplicates any class the attribute is applied to, but adds some suffix to the name on the copy.

using System;
using System.Diagnostics;
using System.Threading;
using System.Threading.Tasks;
using CodeGeneration.Roslyn;
using Microsoft.CodeAnalysis;
using Microsoft.CodeAnalysis.CSharp;
using Microsoft.CodeAnalysis.CSharp.Syntax;
using Validation;

[AttributeUsage(AttributeTargets.Class, Inherited = false, AllowMultiple = true)]
[CodeGenerationAttribute(typeof(DuplicateWithSuffixGenerator))]
[Conditional("CodeGeneration")]
public class DuplicateWithSuffixAttribute : Attribute
{
    public DuplicateWithSuffixAttribute(string suffix)
    {
        Requires.NotNullOrEmpty(suffix, nameof(suffix));

        this.Suffix = suffix;
    }

    public string Suffix { get; }
}

public class DuplicateWithSuffixGenerator : ICodeGenerator
{
    private readonly string suffix;

    public DuplicateWithSuffixGenerator(AttributeData attributeData)
    {
        Requires.NotNull(attributeData, nameof(attributeData));

        this.suffix = (string)attributeData.ConstructorArguments[0].Value;
    }

    public Task<SyntaxList<MemberDeclarationSyntax>> GenerateAsync(MemberDeclarationSyntax applyTo, Document document, IProgress<Diagnostic> progress, CancellationToken cancellationToken)
    {
        var results = SyntaxFactory.List<MemberDeclarationSyntax>();

        var applyToClass = (ClassDeclarationSyntax)applyTo;
        var copy = applyToClass
            .WithIdentifier(SyntaxFactory.Identifier(applyToClass.Identifier.ValueText + this.suffix));
        results = results.Add(copy);

        return Task.FromResult<SyntaxList<MemberDeclarationSyntax>>(results);
    }
}

The [Conditional("CodeGeneration")] attribute is not necessary, but it will prevent the attribute from persisting in the compiled assembly that consumes it, leaving it instead as just a compile-time hint to code generation, and allowing you to not ship with a dependency on your code generation assembly.

Apply code generation

The attribute may not be applied in the same assembly that defines the generator. This is because the code generator must be compiled in order to execute before compiling the project that applies the attribute.

Applying code generation is incredibly simple. Just add the attribute on any type or member supported by the attribute and generator you wrote:

[DuplicateWithSuffix("A")]
public class Foo
{
}

Any file that uses this attribute should have its Custom Tool property set to MSBuild:GenerateCodeFromAttributes so that when you save the file or compile the project, the code generator runs and acts on your attribute.

Install the CodeGeneration.Roslyn.BuildTime package into the project using your attribute:

Install-Package CodeGeneration.Roslyn.BuildTime -Pre

You can then consume the generated code at design-time:

[Fact]
public void SimpleGenerationWorks()
{
    var foo = new Foo();
    var fooA = new FooA();
}

You should see Intellisense help you in all your interactions with FooA. If you execute Go To Definition on it, Visual Studio will open the generated code file that actually defines FooA, and you'll notice it's exactly like Foo, just renamed as our code generator defined it to be.

Shared Projects

When using shared projects and partial classes across the definitions of your class in shared and platform projects:

  • The code generation attributes should be applied only to the files in the shared project (or in other words, the attribute should only be applied once per type to avoid multiple generator invocations).
  • The MSBuild:GenerateCodeFromAttributes custom tool must be applied to every file we want to auto generate code from.

Developing your code generator

Your code generator can be defined in a project in the same solution as the solution with the project that consumes it. You can edit your code generator and build the solution to immediately see the effects of your changes on the generated code.

Packaging up your code generator for others' use

You can also package up your code generator as a NuGet package for others to install and use. Your NuGet package should include a dependency on the CodeGeneration.Roslyn.BuildTime that matches the version of CodeGeneration.Roslyn that you used to produce your generator. For example, if you used version 0.1.57 of this project, your .nuspec file would include this tag:

<dependency id="CodeGeneration.Roslyn.BuildTime" version="0.1.57" />

In addition to this dependency, your NuGet package should include a build folder with an MSBuild file (either a .props or a .targets file) that defines an GeneratorAssemblySearchPaths MSBuild item pointing to the folder containing your code generator assembly and its dependencies. For example your package should have a build\MyPackage.targets file with this content:

<?xml version="1.0" encoding="utf-8" ?>
<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  <ItemGroup>
    <GeneratorAssemblySearchPaths Include="$(MSBuildThisFileDirectory)..\tools" />
  </ItemGroup>
</Project>

Then your package should also have a tools folder that contains your code generator and any of the runtime dependencies it needs besides those delivered by the CodeGeneration.Roslyn.BuildTime package. This will typically mean it has your attributes assembly and your generator assembly.

About

Assists in performing Roslyn-based code generation during a build.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • C# 100.0%