You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Nov 16, 2023. It is now read-only.
I have a use case where my Json property names need to be formatted as lower-case, and I would prefer to not use the Newtonsoft JsonProperty attribute on every property to accomplish this. I figured using a custom IPropertyNameResolver would do the trick, but found that CamelCasePropertyNameResolver is the only non-default IPropertyNameResolver that works, due to this section of code: https://github.com/microsoft/OpenAPI.NET.CSharpAnnotations/blob/master/src/Microsoft.OpenApi.CSharpAnnotations.DocumentGeneration/AssemblyLoader/AssemblyLoader.cs#L180
Open Api generation should allow for any class that implements IPropertyNameResolver to be accepted and used.
The text was updated successfully, but these errors were encountered: