Skip to content

Commit 8d210ec

Browse files
committed
For @xpaulbettsx
1 parent acd270c commit 8d210ec

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

readme.txt

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,18 @@
22

33
In 103.0, JSON.NET was removed as a dependency.
44

5-
If this is still installed in your project and no other libraries depend on it you may remove it from your installed packages.
5+
If this is still installed in your project and no other libraries depend on
6+
it you may remove it from your installed packages.
67

7-
There is one breaking change: the default Json*Serializer* is no longer compatible with Json.NET. To use Json.NET for serialization, copy the code from https://github.com/restsharp/RestSharp/blob/86b31f9adf049d7fb821de8279154f41a17b36f7/RestSharp/Serializers/JsonSerializer.cs and register it with your client:
8+
There is one breaking change: the default Json*Serializer* is no longer
9+
compatible with Json.NET. To use Json.NET for serialization, copy the code
10+
from https://github.com/restsharp/RestSharp/blob/86b31f9adf049d7fb821de8279154f41a17b36f7/RestSharp/Serializers/JsonSerializer.cs
11+
and register it with your client:
812

913
var client = new RestClient();
1014
client.JsonSerializer = new YourCustomSerializer();
1115

1216
The default Json*Deserializer* should be 100% compatible.
1317

14-
If you run into any compatibility issues with deserialization, please report it to http://groups.google.com/group/restsharp
18+
If you run into any compatibility issues with deserialization,
19+
please report it to http://groups.google.com/group/restsharp

0 commit comments

Comments
 (0)