docfx v3 - Newtonsoft.Json #8137
-
Any reason you are using |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 5 replies
-
AFAIK, System.Text.Json does not implement JSON Path used in the |
Beta Was this translation helpful? Give feedback.
-
When we were building the JSON pipeline for v3, Today the biggest blocker to move to |
Beta Was this translation helpful? Give feedback.
When we were building the JSON pipeline for v3,
System.Text.Json
was very immature.Today the biggest blocker to move to
System.Text.Json
is the propagation of line info. We rely on this propagation mechanism to report detailed diagnostic locations for YAML files. WithNewtonsoft.Json
, we can attach custom source info toJToken
and deserialize it intoSource<T>
with a custom JsonConverter. There doesn't seem to be a straightforward way of achieving the same inSystem.Text.Json
.