Click here to Skip to main content
15,887,477 members
Articles / Programming Languages / C# 8.0

Boilerplate Guide to Creating a Source Generator - Part 2

Rate me:
Please Sign up or sign in to vote.
0.00/5 (No votes)
18 Jan 2024MIT3 min read 2.3K   2  
A series of 6 articles to provide you with a boilerplate guide to create Source Generators
This tutorial instructs users to create a .NET Standard 2.0 Class Library for a source generator, emphasizing specific project modifications, addition of necessary NuGet packages, and providing a basic infrastructure with objects like BaseClass, Comparers, Models, and BaseGenerator to facilitate the creation of a reusable source generator for multiple projects, with optional modifications outlined for customization.

Introduction

Looking to create a Source Generator and don't know where to begin? This 6-part article will provide you with a boilerplate guide that will guide you through the process.

Table of Contents

Create the Basic Infrastructure of the Source Generator

Create the Source Generator Library

Create a new .NET Standard 2.0 Class Library and add it to your existing solution.

WARNING: It is very important that you create it as a .NET Standard 2.0 Class Library. If you do not, the generator will not run.

WARNING: Changing the library type after creation has led to odd results. Best to delete project and start over before you get too far.

Project Modifications

  • Add NuGet package - Microsoft.CodeAnalysis.CSharp
  • Add the following to the PropertyGroup in the project file:
    XML
    <LangVersion>Latest</LangVersion>
    <EnforceExtendedAnalyzerRules>true</EnforceExtendedAnalyzerRules>
    <Nullable>enable</Nullable>    
    The last one is optional and you can specify an actual version of at least 10.0.

Add the Basic Infrastructure

Take a look at the source code provided.

These objects layout the basic structure for any source source generator.

You will see the following structure:

  • BaseClass
    • Comparers
      • ClassInformationComparer
      • GeneratorInformationComparer
    • Models
      • ClassInformation
      • GeneratorInformation
      • PropertyInformation
    • BaseGenerator
  • RandomTestDataGenerator

These objects are my attempt to start to normalize the creation of a basic infrastructure that can be re-used for multiple projects. While the names are unimportant, the general structure and contents will be important.

Models and comparers are necessary in order to prevent unnecessary thrashing of the generator, so do not skip using them.

  • Models - Hold the information that you will need for your generator to work properly
  • Comparers - Compare your models to determine if a meaningful change has been made. By using this in conjuction with
    C#
    .WithComparer(_comparer);
    , adding a comment to the item being investigated will not cause the generator to run.
  • BaseGenerator - Contains the basic flow of the generator. The majority of this file can be left alone.

Making Modifications

BaseGenerator - This largely could be left alone. If you don't plan on using the GeneratorInformation class, then you will need to do a search on GeneratorInformation and replace it with the class name you plan on using.

The parts you might need to change:

  • GetSemanticTarget - Depending on what your generator needs to look at, you may need information from the class that the attribute is attached to, or information about another class as defined within the interface itself. For the generator we will be building, both will be necessary.
  • GetClassInformation - This is just a helper method for extracting information about a class out of the Microsoft Semantic Model.

    This method will give you a good idea of how to get to the data you need.

If you don't intend to use my BaseGenerator class, you will need to derive from IIncrementalGenerator. At this point, I highly recommend leaving both: Initialize and IsSyntaxTarget in whole. This is boilerplate stuff that you definitely need.

RandomTestDataGenerator - Change the following:

  • Name of the class to your generator name
  • Class namespace
  • Constant values

The attribute [Generator] is very much needed, so leave it in place.

History

  • 18th January, 2024: Initial version

License

This article, along with any associated source code and files, is licensed under The MIT License


Written By
Software Developer (Senior) Webbert Solutions
United States United States
Dave is an independent consultant working in a variety of industries utilizing Microsoft .NET technologies.

Comments and Discussions

 
-- There are no messages in this forum --