A set of source generators for equality, immutability, ...
Перейти к файлу
Carl de Billy 99bb659ce9
Merge pull request #54 from nventive/dev/cdb/immutable/treat-as-immutable
[KnownAsImmutable] -> [TreatAsImmutable]
2018-07-25 09:53:42 -04:00
build Fixed CI on AppVeyor 2018-02-27 10:33:46 -05:00
doc Cosmetic changes. 2018-07-25 09:44:25 -04:00
src Cosmetic changes. 2018-07-25 09:44:25 -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 Set launchSettings to work on all version of VS 2017 2018-07-23 14:36:17 -04:00
License.md Initial push 2018-02-02 01:23:14 -05:00
gitversion.yml Bumps version to 1.24.0 after release V. 2018-07-03 16:42: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.