CenterEdge / Yardarm

OpenAPI 3 SDK Generator for C#
Apache License 2.0
46 stars 6 forks source link

Don't create duplicate JsonSerializable attributes #232

Closed brantburnett closed 6 months ago

brantburnett commented 6 months ago

Motivation

For List types that appear in multiple schemas we're currently repeating the JsonSerializable attribute on ModelSerializerContext for each occurrence.

Modifications

Rewrite to use a clearer approach to building the list of attributes which also uses a HashSet to prevent duplicates.

brantburnett commented 6 months ago

/merge