saunter
saunter copied to clipboard
Description for Enums are not rendered
Hello,
I have the following C# record event:
/// <summary> Summary of the dummy event. </summary>
public record DummyEvent
{
public DummyType Type { get; init; }
public enum DummyType
{
/// <summary> Dummy type 1. </summary>
DummyType1,
/// <summary> Dummy type 2. </summary>
DummyType2
}
}
Here the result:

As we can see:
- ✅ The summary of the record is well rendered (in blue).
- ❌ The summaries of the Enums are not rendered (in red).
Am I doing something wrong?
I am using the following versions:
- Saunter version 0.11.0.
- .NET version 6.
Up.