You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
A clear and concise description of what the problem is.
Example: I am trying to use Microsoft.AspNetCore.JsonPatch.JsonPatchDocument but it requires Newtonsoft.Json
Describe the solution you'd like
Since, NET Core is moving away from Newtonsoft.Json dependency as default JSON formatter, it is logical to upgrade JsonPatchDocument. Yes, we can simply add AddNewtonsoftJson() on the service collection instance, but it replaces the default System.Text.Json formatter for all JSON which is very unfortunate and defeat the purpose of moving away from using Newtonsoft.JSON.
Is there any workaround to configure JsonPatchDocument to use Newtonsoft.Json without calling .AddNewtonsftJson()?