Replacement of JsonMediaTypeFormatter using JIL
First install the nuget package
Remove old JSON formatter
config.Formatters.Remove( config.Formatters.JsonFormatter );
Add new JIL formatter
config.Formatters.Add( new JilMediaTypeFormatter() );
JIL is fast
config.Formatters.JsonFormatter
is going to be null
after you install the JIL formatter.