A set of source generators for equality, immutability, ...
Перейти к файлу
Carl de Billy 807999f017
Merge pull request #36 from nventive/dev/cdb/stylecop-support
Added better support for StyleCop
2018-02-28 09:50:27 -05:00
build Fixed CI on AppVeyor 2018-02-27 10:33:46 -05:00
doc Added compilation details on README 2018-02-26 11:50:37 -05:00
src Added better support for StyleCop 2018-02-28 09:44:23 -05:00
.appveyor.yml Enable stable packaging 2018-02-26 14:01:13 -05: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 next version: 1.21.0 2018-02-27 11:02:07 -05:00
readme.md Fixed readme to add `stable` branch 2018-02-27 10:35:14 -05: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