How to install newtonsoft in visual studio without nuget

1

I would like to know how do I install newtonsoft-json in Visual Studio without nuget, because I heard that I would have to install it without nuget.

    
asked by anonymous 20.02.2014 / 01:57

1 answer

5

An alternative is to checkout the repository, compile it yourself, and add the reference in your project ... so that's fine even by hand.

link

You can even include the entire project in your solution, and make a project reference if you want.

Or, you can download the DLL already compiled and refer to it, through the link below:

link

    
20.02.2014 / 02:10