Skip to content

Latest commit

 

History

History
29 lines (22 loc) · 1.44 KB

README.md

File metadata and controls

29 lines (22 loc) · 1.44 KB

Pearl's Source Generators

A set of source generators, mostly written for my own convenience. Based on the template from JetBrains for a Roslyn source generator.

Content

PearlSourceGenerators

A .NET Standard project with implementations of sample source generators. You must build this project to see the result (generated code) in the IDE.

PearlSourceGenerators.Sample

A project that references source generators. Note the parameters of ProjectReference in PearlSourceGenerators.Sample.csproj, they make sure that the project is referenced as a set of source generators.

PearlSourceGenerators.Tests

Unit tests for source generators. The easiest way to develop language-related features is to start with unit tests, even if the unit test always passes while you are still developing. Note that before a new source generator is merged into main, it must have at least one unit test that can fail if the source generator is broken.

How To?****

How to debug?