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 contains tips on how to set up ASP.NET Core Integration tests so that they will scale well with the service.
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…