SteveDunn / Vogen

A semi-opinionated library which is a source generator and a code analyser. It Source generates Value Objects
Apache License 2.0
734 stars 41 forks source link

Code fix provider that converts the `Instance` attributes to static field in the value object #602

Open SteveDunn opened 1 month ago

SteveDunn commented 1 month ago

Describe the feature

We want to move away from using [Instance("Unspecified", -1")] in a value object to just public static readonly MyId Unspecified = new(-1)

Have an analyser that spots them, and have a code fix to convert them.