JunaidAK / SpeedTest.Net

A simple https://speedtest.net client to calculate download speed in KB/s.
MIT License
24 stars 11 forks source link

Replace Newtonsoft.Json with System.Text.Json #2

Open kinosang opened 4 years ago

JunaidAK commented 4 years ago

@kinosang Is there something wrong with Newtonsoft.Json?

kinosang commented 4 years ago

@JunaidAK System.Text.Json is faster and smaller than Newtonsoft.Json, and it's highly compatible to .net core. It also can reduce size of compiling outputs and the complexity.

JunaidAK commented 4 years ago

Ok. Let me look into it as I have to update the nuget package too after this change.