Fix Autorest Problems Generating a C# Client with .NET 6
This post shows how to fix common problems when generating an autorest client for C# with the new CSharp code generator.
This post shows how to fix common problems when generating an autorest client for C# with the new CSharp code generator.
How to fix the default configuration of Swashbuckle in asp.netcore services to enable client generation with autorest, and best practices for improving the client. All code samples are based on a C# 9 reference service which is available in GitHub.
While creating another post I stubled across the problem that the C# autorest client never created enumerations. All I got was strings with some documentation! Despite specifying the enum-types flag…
This post explains simple patterns for using Typescript promises. These basic patterns will be sufficient to cover most standard use cases. Even though they may not be the most 'elegant'…
Authentication is a standard feature which can be added with very few steps to generated autorest clients. This will work regardless of whether the swagger.json contains the 'Authorization' header or…