https://github.com/SleepWellPupper/RhoMicro.CodeAnalysis
Source code generators, analyzers and utilities for code analysis
https://github.com/SleepWellPupper/RhoMicro.CodeAnalysis
Last synced: 3 months ago
JSON representation
Source code generators, analyzers and utilities for code analysis
- Host: GitHub
- URL: https://github.com/SleepWellPupper/RhoMicro.CodeAnalysis
- Owner: SleepWellPupper
- Created: 2023-11-29T21:36:45.000Z (about 2 years ago)
- Default Branch: release
- Last Pushed: 2025-08-20T01:18:53.000Z (5 months ago)
- Last Synced: 2025-08-29T02:43:28.622Z (5 months ago)
- Language: C#
- Homepage:
- Size: 4.04 MB
- Stars: 20
- Watchers: 1
- Forks: 2
- Open Issues: 24
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- RSCG_Examples - https://github.com/PaulBraetz/RhoMicro.CodeAnalysis/
README
# RhoMicro.CodeAnalysis
This repository contains my explorations on c# source code generation and analysis.
The [UnionsGenerator](UnionsGenerator) generator enables the use of union types in C#.
The [JsonSchemaGenerator](JsonSchemaGenerator) generator generates json schemata from C# class definitions.
The [UtilityGenerators](UtilityGenerators) generator helps you write code generators and analyzers.
The [CopyTo](CopyTo) generator generates methods to copy the contents of one instance to another. I created this generator for a friend, so it is not as feature rich as it could be.
The [VisitorGenerator](VisitorGenerator) generator generates visitor pattern implementations for various node kinds, for example for implementing syntax tree walkers.
The [OptionsGenerator](OptionsGenerator) generator generates an opinionated implementation of the options pattern.