-
Notifications
You must be signed in to change notification settings - Fork 1
/
link.xml
24 lines (24 loc) · 913 Bytes
/
link.xml
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.Cineast">
<type fullname="*" preserve="all" />
</assembly>
<assembly fullname="Newtonsoft.Json.Cineast">
<type fullname="*" preserve="all" />
</assembly>
<assembly fullname="JsonSubTypes.Cineast">
<type fullname="*" preserve="all" />
</assembly>
<assembly fullname="Org.Vitrivr.CineastApi">
<type fullname="*" preserve="all" />
</assembly>
<assembly fullname="System.Core">
<type fullname="System.Linq.Expressions.Interpreter.LightLambda" preserve="all" />
</assembly>
<!-- Json.NET compatibility -->
</linker>