Chris Martinez
Chris Martinez
Great to hear @Mhirji. @agilenut Hopefully that is the same situation you're in. No casts are required. What is returned from `WebApplication.Create(args)` or `WebApplication.CreateBuilder(args).Build()` are both `WebApplication`. `WebApplication` implements `IEndpointRouteBuilder`,...
@agilenut to be clear, `app.UseSwaggerUI` does **not** have to be the _last_ step, it just has to occur _sometime_ **after** the endpoints are registered. Endpoint registration for _Minimal APIs_ don't...
@agilenut I think we may be talking 🍎s and 🟠s here. The original question was about the setup for Minimal APIs, but it sounds like you are talking about the...
Sounds like the issue might be related. Not so worried about a different issue, I just want to make sure we're on the same page. 😉 Looking back at the...
FYI, _Preview 3_ is now available. The ordering issue is unsolved (and probably won't ever be), but the regression issue should be fixed for _"Old Style"_ configurations. Let me know...
FYI `6.0` has been officially released and includes all of this functionality as well as any fixes. It looks like the original issue has been resolved and all the questions...
I have a similar, but slightly more complex use case. I fundamentally suffer from the same issue with large files where I need to stream over tens of thousands of...
It took a couple of weeks, but I finally figured out how to stream an arbitrary JSON sequence when it's **not** the root element. My approach is heavily based on...
@djrietberg I think you _may_ be confused as to which `AddApiExplorer` you are looking for. 😉 ```c# builder.Services.AddEndpointsApiExplorer(); // ← ASP.NET Core builder.Services .AddApiVersioning(options => options.ApiVersionReader = new UrlSegmentApiVersionReader()) //...
@HuntJason I wish I could give you an answer. I've asked the same question many times. There are several (unofficial) reasons I can speculate on: 1. It's not a priority...