我正在使用JsonApiSerializer遵守Json API Spec,如下所示:
services.AddMvc(options =>
{
var jsonApiFormatter = new JsonOutputFormatter(new JsonApiSerializerSettings(), ArrayPool<char>.Shared);
options.OutputFormatters.RemoveType<JsonOutputFormatter>();
options.OutputFormatters.Insert(0, jsonApiFormatter);
});
但是SwaggerGen忽略它,仍然使用默认的Json序列化器(Json.NET)
如何执行它以适应新的序列化器。