I have a REST API which generates a swagger through /swagger endpoint. I need to generate a .net core client SDK for consumers so they can easily use it to connect to the service from .net core code. The REST service itself is not developed in .net core, but in Node.js.
Is there a tool that will read the swagger definitions and generate a .net core sdk bindings ?
Options already evaluated(with no success): a. openapi-generator (only generates .Net Framework code, not compatible with .net core) b. NSwag (could not generate any useful code out of it)
Use any standard swagger and try to generate sdk for .net core. e.g. https://petstore.swagger.io/v2/swagger.json
I am expecting a client side sdk project that will build on .net core.