A set of source generators for equality, immutability, ...
Перейти к файлу
Miguel Rochefort fc214b0145 InjectableGenerator: Add support for generic types 2018-05-28 11:13:13 -04:00
build Fixed CI on AppVeyor 2018-02-27 10:33:46 -05:00
doc Add lazy injection support 2018-05-22 09:18:45 -04:00
src InjectableGenerator: Add support for generic types 2018-05-28 11:13:13 -04:00
.appveyor.yml Enable stable packaging 2018-02-26 14:01:13 -05:00
.editorconfig Added EditorConfig for easier convention enforcement. 2018-05-16 10:54:33 -04:00
.gitattributes Initial push 2018-02-02 01:23:14 -05:00
.gitignore Fixed CI on AppVeyor 2018-02-27 10:33:46 -05:00
License.md Initial push 2018-02-02 01:23:14 -05:00
gitversion.yml Bump version after stable 1.22.0 2018-05-17 12:21:04 -04:00
readme.md Add InjectableGenerator 2018-05-22 09:18:45 -04:00

readme.md

Uno CodeGen

Uno.CodeGen is a set of tools to generate C# code in msbuild based projects.

Build status

Target Branch Status Recent builds Recommended Nuget packages version
development master Build status Build Stats NuGet
stable stable Build status Build Stats NuGet

Available Generators

Generator Triggering Attributes Usage
ClassLifecycleGenerator [ConstructorMethod] [DisposeMethod] [FinalizerMethod] Generate code to extend the lifecyle of a class. Documentation
CompilationReferencesListingGenerator none Generate a file without useful code, containing only comments detailing references used to compile the project. Documentation
EqualityGenerator [GenerateEquality] Generate code for efficient .Equals() members generation. Documentation
ImmutableGenerator [GenerateImmutable] Generate code to build truly immutable entities. Documentation
InjectableGenerator [Inject] Generate code to resolve and inject dependencies. Documentation

Release Notes

1.22.0 (May 17th 2018)

  • Added support for System.Guid as a supported immutable type.