You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+8Lines changed: 8 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -28,6 +28,14 @@ Point point = JsonConvert.DeserializeObject<Point>(json);
28
28
29
29
See the [Tests](https://github.com/GeoJSON-Net/GeoJSON.Net/tree/master/src/GeoJSON.Net.Tests) for more examples.
30
30
31
+
## Special considerations for ASP.Net Core 3+
32
+
33
+
System.Text.Json is the default (recommended) serializer. GeoJSON.Net **does not play well with System.Text.Json**. Here are the recommended steps as a workaround:
34
+
35
+
- add the "Microsoft.AspNetCore.Mvc.NewtonsoftJson" NuGet Package
36
+
- add "services.AddControllers().AddNewtonsoftJson();" to your service configuration.
37
+
38
+
(Thanks for @jrowe88 for pointing this out)
31
39
32
40
## Contributing
33
41
Highly welcome! Just fork away and send a pull request. We try and review most pull requests within a couple of days. There is now a version 2.0.0 branch. I've created this ready for any breaking changes and any extra features and would encourage anything that isn't a bug fix to go in there.
0 commit comments