Replies: 1 comment 1 reply
-
This tool purely piggybacks on other code generators. Generators like NSwag, Kiota, OpenAPI Generator, and Refitter will respect (or at least try their best) to implement what is described in the OpenAPI document @awdorrin Do you know what version of the OpenAPI specifications is being used here? Can you share the OpenAPI document? |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I am attempting to generate C# Client code using .net8.0 and an openapi.yml file using the openapi generator.
Since this is the first time doing this, I'm not sure if this is an issue with this tool, or the openapi generator itself.
But I am getting checks in the validation code that look like this:
Now, I think this is a result of how the YML is being defined and a difference in format and type definitions, and how the generator is trying to convert to native formats (GUID, DateTime)
I am assuming, I could do a simple .ToString() in front of the length check, but, since this is the first encounter with this, I am not entirely sure, and I have not found anything on my searching yet.
Thanks for any suggestions
Beta Was this translation helpful? Give feedback.
All reactions