An easy-to-use source generator providing efficient access to enum description text.
When binding an enum to a UI component, it's uncommon to want to display the enum identifier itself, EG. "OutOfStock" doesn't adhere to english grammar. Working around this usually either comes with a runtime cost (reflection) or maintainability cost (manual enum -> text mapping)
EnumScribe simplifies the process by generating the mapping at compile time based on Description attributes and exposing it via properties added to the type, making the text easier to consume in most UI frameworks.
- Create additional properties returning the matching enum's description
- Implement available partial methods instead of creating new properties
- Customise the default suffix ("Description")
- Selectively scribe enums by accessibility and member type
- Ignore individual enums with
NoScribe - Opt out of serializing generated properties with
JsonIgnore(Supports Json.NET and System.Text.Json) - Access descriptions for scribed enums directly by using the
DescriptionText()extension method (included in theEnumScribe.Extensionsnamespace)
using EnumScribe;
// Source code
[Scribe]
public partial class MyDto
{
public MyEnum? ToProperty { get; set; }
public MyEnum ToMethod { get; set; }
public partial string ToMethodDescription();
[NoScribe]
public MyEnum HiddenProperty { get; set; }
}
// Generated code
public partial class MyDto
{
// "ToProperty" + "Description"
public string? ToPropertyDescription { get { /* ... */ } }
// "ToMethod" + "Description"
public partial string ToMethodDescription() { /* ... */ }
}Source generators are a relatively new feature and are still facing some intermittent teething issues (EG. #49249)
Most issues are addressed by cleaning the project, then restarting your IDE and rebuilding it.
It can be helpful to opt into outputting generated files by including the below snippet in the consuming project. While these are normally viewable in the VS solution explorer (Dependencies\Analyzers\EnumScribe) it's not entirely reliable yet.
<PropertyGroup Condition="'$(Configuration)'=='Debug'">
<!-- MyProject\obj\GeneratedFiles by default -->
<CompilerGeneratedFilesOutputPath>$(BaseIntermediateOutputPath)\GeneratedFiles</CompilerGeneratedFilesOutputPath>
<EmitCompilerGeneratedFiles>true</EmitCompilerGeneratedFiles>
</PropertyGroup>Compiler errors CS1061 and CS8795 warns of missing or unimplemented type members and may erronously report that generated code is missing. This may presist through project rebuilds, but can usually be resolved by restarting your IDE.
- Proper tests (no longer pending package update)
- Update to source generators 2.0 (
IIncrementalGenerator) - Benchmarks
- Localise diagnostic text
- Scribe
Tin generic types whereTis an enum - New attribute
ReScribeto manually override scribe rules on a property/field basis (suffix, accessibility, json ignore) - Acknowledge
ReScribeattribute on property without the containing class requiring ScribeEnum - Scribe functionality for structs and record structs