-
Notifications
You must be signed in to change notification settings - Fork 31
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
Library Refactor for DotNet 8 and Signature Version 5 #37
base: master
Are you sure you want to change the base?
Conversation
Hi @Bottswana I have a question. Why did you choose Newtonsoft over System.Text.Json. The duo_universal_csharp project currently uses System.Text.Json and does not use Newtonsoft. It there something in Newtonsoft that cannot be accomplished with System.Text.Json? System.Text.Json Positives:
|
Hi, I simply have far more experience across all my projects with the battle tested Newtonsoft over the .NET equivalent. I would rather focus time on building additional endpoints than changing the JSON library, and while I do not mind if it was something different, I am unlikely to dedicate time to changing it as part of this PR unless someone else wanted to commit the time and test that it is working correctly. |
Description
This PR represents a significant rewrite of the library to bring it up to modern dotnet core standards.
This includes:
Motivation and Context
Current library state is not usable in modern DotNet projects as it relies on 4.0 framework.
This closes issues #30 and #33
How Has This Been Tested?
Test suite has been adapted to include test coverage of the library.
Other tests concluded via Examples project.
Additional testing will be required as more endpoints are added.
Types of Changes
This represents significant breaking changes.
Next Steps
Additional work will need to be completed. More tests are needed to ensure code coverage, and the remaining API endpoints need to be implemented.
I will continue to do so as time permits
Additionally, a maintainer should look into setting up a Actions pipeline to upload tagged releases to NuGet, as many developers will expect the package to be available in the dotnet ecosystem package library.