I have an application that uses Swashbuckle.AspNetCore" Version="5.6.3"
.
The implementation in startup is straight forward, the services inject the generator:
services.AddSwaggerGen();
And the app builder activates swagger in standard manner:
app.UseSwagger();
Why is it then that I find "application/*+json" as content type for certain post operations in the definition?. This is an issue as it breaks certain services that re-use the openapi definition.
Is there any known way of avoiding this and using plain "application/json" content type in the definition?.
Thanks,