What's new
  • Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • Visit Resources
  • Visit Downloads
  • Visit Portal

Plugin Developement Newtonsoft.Json.dll

torstmn

New Member
Joined
May 30, 2014
Messages
44
Reaction score
0
Hello guys,
I wanted to develope a plugin which uses the Newtonsoft.Json.dll but the compiler always says that the namespace "Newtonsoft.Json" does not exist. Is there another way to implement this dll? (The compiler does not accept 3rd party libraries)

Greeting!
 
First of all, thanks for the quick reply.
I tried to add the comment //!CompilerOption:AddRef:Newtonsoft.Json.dll to the code but it did not work. The error is still the same. Is there any other way to do that?
 
Okay, it seems like the comment has to be on top of the Plugin's bootstrapping file (before the usings section start)

//!CompilerOption:Optimize:On
//!CompilerOption:AddRef:Newtonsoft.Json.dll

works now.
 
Back
Top