You can do this a couple of ways.

Via the "Solution Explorer"

  1. Simply right-click the "References" folder and select "Manage NuGet Packages..."
  2. Once that window comes up click on the option labeled "Online" in the left most part of the dialog.
  3. Then in the search bar in the upper right type "json.net"
  4. Click "Install" and you're done.

Via the "Package Manager Console"

  1. Open the console. "View" > "Other Windows" > "Package Manager Console"
  2. Then type the following:
    Install-Package Newtonsoft.Json

For more info on how to use the "Package Manager Console" check out the nuget docs.

Answer from Mateo on Stack Overflow
🌐
Microsoft Learn
learn.microsoft.com › en-us › nuget › quickstart › install-and-use-a-package-in-visual-studio
Quickstart: Install and use a NuGet package in Visual Studio (Windows only) | Microsoft Learn
From Visual Studio, select Tools > NuGet Package Manager > Package Manager Console. After the Package Manager Console pane opens, verify that the Default project drop-down list shows the project in which you want to install the package.
🌐
Vikas D More
moredvikas.wordpress.com › 2019 › 03 › 06 › add-the-newtonsoft-json-nuget-package-in-visual-studio-to-dot-net-project
Add the Newtonsoft.Json NuGet package in Visual Studio to dot net project | Vikas D More
March 6, 2019 - Choose “nuget.org” as the Package source, select the Browse tab, search for Newtonsoft.Json, select that package in the list, and select Install: Accept any license prompts. (Visual Studio 2017) If prompted to select a package management ...
🌐
Microsoft Learn
learn.microsoft.com › en-us › nuget › quickstart › install-and-use-a-package-using-the-dotnet-cli
Install and use a NuGet package with the dotnet CLI | Microsoft Learn
March 3, 2025 - <ItemGroup> <PackageReference Include="Newtonsoft.Json" Version="13.0.1" /> </ItemGroup> In Visual Studio, open the Program.cs file and add the following line at the top of the file:
🌐
Microsoft
devblogs.microsoft.com › dev blogs › visual studio blog › using newtonsoft.json in a visual studio extension
Using Newtonsoft.Json in a Visual Studio extension - Visual Studio Blog
January 7, 2022 - Visual Studio ships with Newtonsoft.Json and extension authors can use it too. However, it can be confusing to understand what version to use, how binding redirects work and whether to ship Newtonsoft.Json in the extension itself. This post helps to clarify how it all works.
🌐
NuGet
nuget.org › packages › Newtonsoft.Json
NuGet Gallery | Newtonsoft.Json 13.0.4
August 3, 2023 - NuGet\Install-Package Newtonsoft.Json -Version 13.0.4 · Copy · This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package. <PackageReference Include="Newtonsoft.Json" Version="13.0.4" /> Copy ·
Find elsewhere
🌐
GameDev.tv
community.gamedev.tv › unity courses › ask
How to install NewtonSoft Json in unity or Visual studio code? - Ask - GameDev.tv
April 22, 2025 - Hello. I’m transitioning to Json saving trying following the Brian’s tutorial but I must admit i’m a little bit confuse according NewtonSoft Json. I assume I haven’t any Json install in my unity version: or Json: …
🌐
Rip Tutorial
riptutorial.com › how to install json.net in visual studio projects
json.net Tutorial => How to Install Json.Net in Visual Studio Projects
Open the Package Manager Console ... Console. Once the Package Manager Console is visible, select the project within your solution, into which you want to install Json.Net, by selecting it from the Default Project dropdown...
🌐
Newtonsoft
newtonsoft.com › json › install
Json.NET Install - Newtonsoft
Json.NET documentation is the first place to go for help. It includes over 100 code samples.
🌐
CopyProgramming
copyprogramming.com › howto › install-newtonsoft-json-visual-studio-code-example
How to Install Newtonsoft JSON in Visual Studio Code: Complete 2026 Guide - Install newtonsoft json in visual studio code complete
January 3, 2026 - Installing Newtonsoft.Json in Visual Studio Code involves using the .NET CLI to add the NuGet package to your project, making it immediately available for JSON serialization, deserialization, and advanced JSON manipulation tasks. This guide covers the complete installation process, the latest ...
🌐
Microsoft Learn
learn.microsoft.com › en-us › answers › questions › 1461692 › imports-newtonsoft-json-to-my-azure-we-app
Imports Newtonsoft.Json to my Azure we app - Microsoft Q&A
December 12, 2023 - Right-click on your project in Visual Studio and select "Manage NuGet Packages". In the "Browse" tab, search for Newtonsoft.Json. Click on the "Install" button to install the package.
🌐
TechBloat
techbloat.com › home › how to add newtonsoft.json to c# project
How to Add Newtonsoft.Json to C# Project - TechBloat
January 21, 2026 - From the search results, locate Newtonsoft.Json. Ensure it’s the official package maintained by James Newton-King. Click on it, then select your project(s) from the list on the right. Press the Install button. Review the license agreement that appears. Click Accept if you agree. Visual Studio will then download and install Newtonsoft.Json into your project, updating the references accordingly.
🌐
Newtonsoft
newtonsoft.com › json
Json.NET - Newtonsoft
Json.NET documentation is the first place to go for help. It includes over 100 code samples.
🌐
CopyProgramming
copyprogramming.com › howto › how-to-install-json-for-visual-studio-2013
How to Add Newtonsoft JSON to Visual Studio: Complete Installation & Best Practices Guide for 2026 - Add newtonsoft json to visual studio complete installation
December 7, 2025 - The NuGet Package Manager is the easiest way to add Newtonsoft.Json to Visual Studio 2013. This graphical interface requires no command-line knowledge and handles dependency management automatically. ... For developers who prefer command-line interfaces, the Package Manager Console offers a faster installation method using PowerShell commands.
🌐
Microsoft Learn
learn.microsoft.com › en-us › nuget › quickstart › install-and-use-a-package-in-visual-studio-mac
Install and use a NuGet package in Visual Studio for Mac | Microsoft Learn
September 3, 2019 - Choose "nuget.org" as the Package source in the top left corner of the dialog, and search for Newtonsoft.Json, select that package in the list, and select Add Packages...: If you want more information on the NuGet Package Manager, see Install and manage packages using Visual Studio for Mac.