GenerateAspNetCoreClient icon indicating copy to clipboard operation
GenerateAspNetCoreClient copied to clipboard

DotNet tool to generate HTTP client classes from ASP.NET Core api controllers.

Results 9 GenerateAspNetCoreClient issues
Sort by recently updated
recently updated
newest added

This could be a cli flag or a package that you reference and based on that the target app may only build the service provider and stop before running the...

It would be awesome if we could have model generation so the client could be distributed individually

With version 1.1.0, I get the following exception when trying to run the `dotnet-generate-client MyProject -o MyClient -n MyClient` command. `Could not load type 'System.Net.Quic.QuicImplementationProviders' from assembly 'System.Net.Quic` It still...

If you have based your contracts in your API on records then this tool will not work since it relies on XML serializing. Records don't have any empty default constructors...

Hello, I am trying to run this tool against a simple dotnet 6 project, but something goes wrong during the execution. The build step runs fine, but the execution right...

I really the idea behind this tool, but it would be great to run this as a source generator, so that the API interfaces are updated pretty much every time...

Now i get ``` [Get("/some-api")] Task GetSome([AliasAs("page_number")] int? pagenumber = null, [AliasAs("date_types")] DateType[] dateTypes = null, [AliasAs("q")] string query = null); ``` It should add nullability operator ? on string...

The generated method contains an extra Multipartitem param when you add an IFormFile property as the 1st property. to replicate: `namespace TestWebApi.Models { public class SomeQueryModel { public IFormFile File...

Refit allows a return type if Task or IObservable. It would be nice if there was a flag to replace Tasks with Iobservables

enhancement