asyncapi / saunter

Saunter is a code-first AsyncAPI documentation generator for dotnet.
https://www.asyncapi.com/
MIT License
195 stars 55 forks source link

Description for Enums are not rendered #162

Open vnea opened 1 year ago

vnea commented 1 year ago

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:

Am I doing something wrong?

I am using the following versions:

vnea commented 1 year ago

Up.