-
Notifications
You must be signed in to change notification settings - Fork 163
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support System.Text.Json #389
Comments
This is unfortunately not possible at this time as System.Text.Json is not supported on .NET Framework 4.5.2 that we currently support. We would need to drop support for everything prior to .NET Framework 4.7.2 for that migration to happen so we'd need to consider that for the next major based on current usage statistics for this library. |
I'm going to milestone it to the next major so we can consider it then. |
How about Utf8Json which is one of the fastest JSON parsers? (or allow developers to select their own?) |
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. If you have not received a response for our team (apologies for the delay) and this is still a blocker, please reply with additional information or just a ping. Thank you for your contribution! 🙇♂️ |
I still forced to use Newtonsoft.Json to work if Auth0.ManagementApi. Hope devs will support System.Text.Json |
@frederikprijck Could this issue be reopened and possibly added to a milestone now that 4.5.2 is EOL and removed from this library as of #687? This project supports back to |
Please do not report security vulnerabilities here. The Responsible Disclosure Program details the procedure for disclosing security issues.
Thank you in advance for helping us to improve this library! Your attention to detail here is greatly appreciated and will help us respond as quickly as possible. For general support or usage questions, use the Auth0 Community or Auth0 Support. Finally, to avoid duplicates, please search existing Issues before submitting one here.
By submitting an Issue to this repository, you agree to the terms within the Auth0 Code of Conduct.
Describe the problem you'd like to have solved
The System.Text.Json namespace provides functionality for serializing to and deserializing from JavaScript Object Notation (JSON). The library design emphasizes high performance and low memory allocation over an extensive feature set.
Describe the ideal solution
Remove Newtonsoft.Json from Auth0.Core.csproj and use System.Text.Json instead.
Additional context
https://docs.microsoft.com/en-us/dotnet/standard/serialization/system-text-json-migrate-from-newtonsoft-how-to
The text was updated successfully, but these errors were encountered: