Skip to content

Latest commit

 

History

History
7 lines (4 loc) · 535 Bytes

README.md

File metadata and controls

7 lines (4 loc) · 535 Bytes

C# Source Generators: How to get build information?

Source generators are a powerful feature introduced to C#, allowing developers to generate additional code during the compilation process automatically. They can help reduce boilerplate, improve performance, and simplify your codebase.

This blog post will introduce source generators, discuss how they work, and walk through an example of a source generator for generating build information.

Found here