fiseni / csharp-source-generators

A list of C# Source Generators (not necessarily awesome) and associated resources: articles, talks, demos.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

C# Source Generators

A list of C# Source Generators (not necessarily awesome), because I haven't found a good list yet.

C# Source Generators is a Roslyn compiler feature introduced in C#9/.NET 5. It lets C# developers inspect user code and generate new C# source files that can be added to a compilation.

Add GitHub topic csharp-sourcegenerator to your generator repo - let's get it started!

Documentation and samples

Source Generators

  • AutoDeconstructable - stars last commit Generator for efficient and automatic flat text serializer/deserializer using Deconstructable aspect in NTP library.
  • AutoInterface - stars last commit interface-to-member source generator.
  • Avalonia.NameGenerator - stars last commit Generates typed references to named Avalonia XAML controls.
  • avatar - stars last commit A modern compile-time generated interception/proxy library.
  • Azura - stars last commit Generates binary [de]serializers on Streams at design time.
  • boilerplatezero - stars last commit WPF Dependency Property Generator.
  • Cloneable - stars last commit auto-generate Clone method.
  • Data Builder Generator - stars last commit Generate data builder patterns for your model classes.
  • Fairy - stars last commit generates C# code based on Sitecore Content Serialization (SCS) .yml files.
  • Generator.Equals - stars last commit generates equality and hashing for classes and records, supports a number of strategies for comparing collections and properties.
  • Imp.NET - stars last commit - a fast, high-level, object-oriented C# networking library that supports the invocation of remote methods through proxy interface objects.
  • IoTHubClientGenerator - stars last commit Build a C# Azure IoT Device client program in seconds!
  • JsonByExampleGenerator - stars last commit - generate classes based on example json files in your project.
  • JsonSrcGen - stars last commit - compile time JSON serializer generation.
  • lambdajection - stars last commit Framework for building AWS Lambdas using dependency injection and aspect-oriented programming.
  • MapTo - stars last commit - A convention based object to object mapper similar to Automapper.
  • MemberAccessGenerator - stars last commit generates GetMember(int) and/or GetMember(string) methods that return property value for a given property name or index (e.g. in positional records).
  • MiniRazor - stars last commit Portable Razor compiler & code generator.
  • MockableStaticGenerator - stars last commit A C# source generator to make an interface and a class wrapper to test static/extension methods.
  • MockGen - stars last commit A C# mocking library based on source generators.
  • MockSourceGenerator - stars last commit A C# mocking library that generates mocks at compile-time using a source generator.
  • net_automatic_interface - stars last commit .Net Core Source Generator for Automatic Interfaces.
  • PrimaryConstructor - stars last commit Generate primary constructor from readonly fields.
  • PrimitiveStaticDataGenerator - stars last commit for creating methods that return optimized ReadOnlySpan<T> static data from primitive values.
  • PrintMembersGenerator - stars last commit helps re-defining C# record's PrintMembers method to force include/exclude certain members.
  • ResXFileCodeGenerator - stars last commit Generates strongly-typed resource classes for looking up localized strings.
  • SmallSharp - stars last commit Create, edit and run multiple C# 9.0 top-level programs in the same project by just selecting the startup program from the start button.
  • SmartAnnotations - stars last commit A library that uses source generators to automatically generate data annotations for your models. It provides a strongly-typed mechanism (fluent like API) to define your annotation rules.
  • SourceInject - stars last commit A source generator that allow you to generate your services for dependencies injection during compile time.
  • SpreadCheetah - stars last commit Create Excel files with a C# Source Generator for generating the rows.
  • SqlMarshal - stars last commit Native AOT friendly-performant mini-ORM. Generation of wrappers for accessing SQL using ADO.NET.
  • StackXML - stars last commit Stack based zero-allocation XML serializer and deserializer.
  • StringLiteralGenerator - stars last commit for optimizing UTF-8 binaries.
  • StrongInject - stars last commit - compile time dependency injection for .NET.
  • StructPacker - stars last commit binary serializer that auto-generates C# serialization code to achieve peak runtime performance and efficiency.
  • Svg to C# Source Generators - stars last commit SVGC compiles SVG drawing markup to C# using SkiaSharp as rendering engine. SVGC can be also used as codegen for upcoming C# 9 Source Generator feature.
  • ThisAssembly - stars last commit Exposes project and assembly level information as constants in the ThisAssembly class.
  • Transplator - stars last commit A simple C# source generator for text templates.
  • Tinyhand - stars last commit - Tiny and simple data format/serializer using a source generator.
  • ValueChangedGenerator - stars last commit for generating PropertyChanged from inner struct members.
  • ValueObjectGenerator - stars last commit C# source generator is for ValueObjects (ie.Wrapper classes).
  • WrapperValueObject - stars last commit - for creating simple value objects wrapping primitive types.

Tips & Tricks

Collection of tips and tricks (simple and brief to fit in Tweet):

Tweeted by @raboof on Nov 16 2020 at 20:57:

See files emitted by #SourceGenerators by adding these properties to your (*.csproj) project file:

<EmitCompilerGeneratedFiles>true</EmitCompilerGeneratedFiles>
<CompilerGeneratedFilesOutputPath>$(BaseIntermediateOutputPath)Generated</CompilerGeneratedFilesOutputPath>

Tweeted by @Chiser99 on Sep 02 2020 at 06:41:

I made a thing: https://github.com/chsienki/Kittitas

If you're building Roslyn Source Generators or Analyzers check it out, it makes debugging them inside the compiler easier. #roslyn #csharp #dotnetcore #sourcegenerators #analyzers

Articles

Videos

Demo, PoC and excercise projects

Maybe they can inspire you too!

  • AutoCoder - stars last commit for effective and flexible object coding.
  • RyanAlameddine/SourceGeneratorDemo - stars last commit contains 3 demos: hello world, INPC and OpCode class.
  • TMC-CSharp/CodeExerciseLibrary - stars last commit Library to help creating C# exercises. Generates missing methods and classes inside tests on the fly by using Source Generators.
  • DpdtInject - stars last commit DI container based on C# Source Generators. Its goal is to remove everything possible from runtime and make resolving process as faster as we can. This is achieved by transferring huge piece of resolving logic to the compilation stage into the source generator.
  • jakubsturc/talk-csharp-source-generators - stars last commit contains 4 generators: AutoNotify, ConsoleWritelineHijack, HelloWorld and SettingsXml, plus nice presentation slides.
  • Compile Time Method Execution Generator - stars last commit proof of concept that allows executing a method during compilation, so that it can be really fast during runtime.

Projects using custom Source Generators "internally"

  • NetFabric.Hyperlinq - stars last commit generates overloads for its extension methods.
  • RestEase - stars last commit uses Source Generator to generate interface implementations on compile time instead of in runtime via Reflection.Emit.
  • WarHub/wham - stars last commit generates code for immutable tree object graph based on red-green node approach used in Roslyn; generates custom XmlSerializer that supports C#9 records and ImmutableArray.

About

A list of C# Source Generators (not necessarily awesome) and associated resources: articles, talks, demos.

License:Creative Commons Zero v1.0 Universal