saunter icon indicating copy to clipboard operation
saunter copied to clipboard

Description for Enums are not rendered

Open vnea opened this issue 2 years ago • 2 comments

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:

image

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.

vnea avatar Mar 07 '23 17:03 vnea

Up.

vnea avatar Mar 24 '23 17:03 vnea