aspnet-api-versioning Questions
1
Solved
I am using NET 7 in a project and I have a question about which package to use for versioning API controllers. There are two packages Microsoft.AspNetCore.Mvc.Versioning and Asp.Versioning.Http whi...
Zygote asked 31/5, 2023 at 9:24
3
Solved
I'm upgrading an ASP.NET Core API project from v5 to v6.
Service config in v5:
services.AddSwaggerGen();
Service config in v6:
builder.Services.AddEndpointsApiExplorer(); // what is this?
builder....
Rebus asked 20/4, 2022 at 1:4
1
Solved
I am using Net 6 Minimal APIs:
application.MapGet("countries", async (IService service) => {
var countries = await mediator.Send(request);
return Results.Ok(countries);
});
Is it po...
Eurhythmy asked 3/12, 2021 at 14:34
1
© 2022 - 2024 — McMap. All rights reserved.