I'm developing a REST Api using ASP.NET Core. I want to force the application to produce JSON responses which I can achive decorating my controllers with the "Produces" attribute. Example:
[Produces("application/json")]
public class ProductsController : ControllerBase
{
...
}
But according to this article: https://learn.microsoft.com/en-us/aspnet/core/mvc/models/formatting the filter can be applied globally, but I can't really figure out how.
Is there anyone out there that could provide a simple example of how to apply the "Produces" filter globally?
The linked documentation tells it already, you just have to read carefully and follow the link ;)
and when you follow the link you find an sample:
In your case: