Massimo Crippa

Results 18 comments of Massimo Crippa

> A few months have passed since the last update, are there any timelines known concerning the release of the v4 package yet? Any news on this? Thanks!!!!!!!

Actually in the first simple implementation I've explicitly excluded the Health check controller from the Open API generation ([ApiExplorerSettings(IgnoreApi = true)]) I thought was better to hide all those technical...

Add this as guidance on the maturity level2

@FilipVanRaemdonck please also make sure the guideline cover the discussion #102

> I don't know if adding the [produces] attribute has much value. Even with the XML formatter installed, the controllers will default to JSON in no "accept" header is included....

Introduce [`ConsumesAttribute`](https://docs.microsoft.com/en-us/dotnet/api/microsoft.aspnetcore.mvc.consumesattribute?view=aspnetcore-2.2) and [`ProducesAttribute`](https://docs.microsoft.com/en-us/dotnet/api/microsoft.aspnetcore.mvc.producesattribute?view=aspnetcore-2.2) Having the operations decorated with these attributes should also affect the Swagger documentation. For example: ```csharp [SwaggerResponse((int)HttpStatusCode.OK, "Player data object")] [SwaggerResponse((int)HttpStatusCode.NotFound, "Player not found")] [SwaggerResponse((int)HttpStatusCode.InternalServerError, "API...

> I'd also make it clear that the logging framework chosen it's just a suggestion I agree, on the other hand it would be nice to have a a single...

Ok to use AI with the default logging mechanism of aspnetcore. It's important to be practical so the logging mechanism should be easily configurable to sink to AI, console and...

For practical reasons, let’s move this to the “should have” (level two)