I have an issue with a dll im using inside unity3d. Im trying to use the jose-jwt.dll
link to the library: https://www.nuget.org/packages/jose-jwt-forunity/
and when I'm importing it into unity3d I get this error: Assembly 'Assets/jose-jwt.dll' will not be loaded due to errors: jose-jwt references strong named Newtonsoft.Json Assembly references 10.0.0.0 Found in project: 13.0.0.0. Assembly Version Validation can be disabled in Player Settings "Assembly Version Validation"
now from my understanding the jose-jwt.dll have a dependency of at least version of 10.0.0.0 of the Newtonsoft.Json, so why this error occurs and how should I fix it?
Unity3d has its own Newtonsoft.Json from what i can tell.
I need it to create a JWT and send it to an api server. Thanks for the help!