Reputation: 4687
I need to generate the swagger client SDK for my rest api in .net core project. The option "New REST API Client" is not in the context menu for the project under Add. How do I get it (or otherwise generate the SDK for my project so I can write simple tests)?
Upvotes: 0
Views: 392
Reputation: 19598
Currently, generate new REST API client option is not available for .NET Core projects. You can use tools like NSwagStudio or autorest or Open API Generator to generate clients.
Upvotes: 2