-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlink.xml
More file actions
24 lines (24 loc) · 899 Bytes
/
link.xml
File metadata and controls
24 lines (24 loc) · 899 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<linker>
<!-- Json.NET compatibility -->
<!--
These here are required for Json.NET and the cineast API to work in IL2CPP
because IL2CPP strips certain code which causes json serialization to fail.
The "netstandard2.0" version of Newtonsoft.Json must be used!
-->
<assembly fullname="RestSharp.Dres">
<type fullname="*" preserve="all" />
</assembly>
<assembly fullname="Newtonsoft.Json.Dres">
<type fullname="*" preserve="all" />
</assembly>
<assembly fullname="JsonSubTypes.Dres">
<type fullname="*" preserve="all" />
</assembly>
<assembly fullname="Dev.Dres.ClientApi">
<type fullname="*" preserve="all" />
</assembly>
<assembly fullname="System.Core">
<type fullname="System.Linq.Expressions.Interpreter.LightLambda" preserve="all" />
</assembly>
<!-- Json.NET compatibility -->
</linker>