Json Serializer Options
It is great this library supports both System.Text.Json and Newtonsoft, but it is difficult to consume in some dev environments since System.Text.Json is unavailable.
Is there a way to decouple the serializer options into dedicated packages for people that cannot take a direct dependency on either one of the serializer options?
Would also be really interested in this issue getting resolved. In the environment I'm working in I can not load System.Text.Json at all. Since this library requires it by default I can not use it and probably have to re-implement socket.io protocol handling myself or create a custom build version that defaults to Newtonsoft 🙃.
Would also be really interested in this issue getting resolved. In the environment I'm working in I can not load System.Text.Json at all. Since this library requires it by default I can not use it and probably have to re-implement socket.io protocol handling myself or create a custom build version that defaults to Newtonsoft 🙃.
Check out my fork. I ended up closing the PR here bc it wasn't accepted and there was too many changes to reintegrate