Actually, how to connect Json.net in C #. I tried to search in extensions, but did not find
2 answers
In addition to the @VladD answer, I will say that it is possible (and perhaps necessary) to install such libraries through the Nuget package manager. If it is not installed, then install it like this: Tools => Extensions And Updates , and in the search window that opens, type in NuGet . Then, installing it and rebooting Visual Studio, open your project, go to Project => Manage Nuget Packages , go to the Online tab and type the name of the required package (JSON.NET) in the search bar, then in the search results you will get the necessary library:
In addition, you can install the package through the console. To do this, do the following: Tools => Library Package Manager => Package Manager Connsole and in the window that appears, drive Install-Package Newtonsoft.Json .
- And I did not find. - Vlmake
- +1, did not know that there is a nuget package. - VladD
Download the installation from https://json.codeplex.com/releases , unpack the archive, find the necessary binaries in the Bin / directory (your .NET version) /, specify the dll in the project dependencies.
Do not forget to include dll in the installer.