Newtonsoft.Json 13.0.3-beta1

.NET 6.0 .NET Standard 1.0 .NET Framework 2.0
This is a prerelease version of Newtonsoft.Json.

Requires NuGet 2.12 or higher.

dotnet add package Newtonsoft.Json --version 13.0.3-beta1
NuGet\Install-Package Newtonsoft.Json -Version 13.0.3-beta1
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.3-beta1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Newtonsoft.Json --version 13.0.3-beta1
#r "nuget: Newtonsoft.Json, 13.0.3-beta1"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Newtonsoft.Json as a Cake Addin
#addin nuget:?package=Newtonsoft.Json&version=13.0.3-beta1&prerelease

// Install Newtonsoft.Json as a Cake Tool
#tool nuget:?package=Newtonsoft.Json&version=13.0.3-beta1&prerelease

Logo Json.NET

NuGet version (Newtonsoft.Json) Build status

Json.NET is a popular high-performance JSON framework for .NET

Serialize JSON

Product product = new Product();
product.Name = "Apple";
product.Expiry = new DateTime(2008, 12, 28);
product.Sizes = new string[] { "Small" };

string json = JsonConvert.SerializeObject(product);
// {
//   "Name": "Apple",
//   "Expiry": "2008-12-28T00:00:00",
//   "Sizes": [
//     "Small"
//   ]
// }

Deserialize JSON

string json = @"{
  'Name': 'Bad Boys',
  'ReleaseDate': '1995-4-7T00:00:00',
  'Genres': [
    'Action',
    'Comedy'
  ]
}";

Movie m = JsonConvert.DeserializeObject<Movie>(json);

string name = m.Name;
// Bad Boys

LINQ to JSON

JArray array = new JArray();
array.Add("Manual text");
array.Add(new DateTime(2000, 5, 23));

JObject o = new JObject();
o["MyArray"] = array;

string json = o.ToString();
// {
//   "MyArray": [
//     "Manual text",
//     "2000-05-23T00:00:00"
//   ]
// }
Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed. 
.NET Core netcoreapp1.0 was computed.  netcoreapp1.1 was computed.  netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard1.0 is compatible.  netstandard1.1 was computed.  netstandard1.2 was computed.  netstandard1.3 is compatible.  netstandard1.4 was computed.  netstandard1.5 was computed.  netstandard1.6 was computed.  netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net20 is compatible.  net35 is compatible.  net40 is compatible.  net403 was computed.  net45 is compatible.  net451 was computed.  net452 was computed.  net46 was computed.  net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen30 was computed.  tizen40 was computed.  tizen60 was computed. 
Universal Windows Platform uap was computed.  uap10.0 was computed. 
Windows Phone wp8 was computed.  wp81 was computed.  wpa81 was computed. 
Windows Store netcore was computed.  netcore45 was computed.  netcore451 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Additional computed target framework(s)
Learn more about Target Frameworks and .NET Standard.

GitHub repositories (3.0K)

Showing the top 5 popular GitHub repositories that depend on Newtonsoft.Json:

Repository Stars
microsoft/PowerToys
Windows system utilities to maximize productivity
2dust/v2rayN
A GUI client for Windows, support Xray core and v2fly core and others
PowerShell/PowerShell
PowerShell for every system!
ShareX/ShareX
ShareX is a free and open source program that lets you capture or record any area of your screen and share it with a single press of a key. It also allows uploading images, text or other types of files to many supported destinations you can choose from.
jellyfin/jellyfin
The Free Software Media System
Version Downloads Last updated
13.0.3-beta1 5 2/28/2023
7.0.1-beta3 24,687 5/3/2015
7.0.1-beta2 20,208 4/6/2015
7.0.1-beta1 38,623 2/17/2015
6.0.8 1,609,147 1/11/2015
6.0.7 393,132 12/23/2014
6.0.6 1,154,154 10/24/2014
6.0.5 882,334 9/6/2014
6.0.4 1,403,852 8/3/2014
6.0.3 759,429 4/27/2014
6.0.2 285,982 3/30/2014
6.0.1 469,122 2/1/2014
6.0.1-beta1 1,870 1/10/2014
5.0.8 782,672 10/17/2013
5.0.7 177,214 10/14/2013
5.0.6 622,226 6/6/2013
5.0.5 151,446 5/8/2013
5.0.4 298,945 4/25/2013
5.0.3 99,736 4/14/2013
5.0.2 95,386 4/8/2013
5.0.1 151,770 4/7/2013
4.5.11 820,892 11/20/2012
4.5.10 56,001 10/7/2012
4.5.9 36,247 9/8/2012
4.5.8 37,182 8/4/2012
4.5.7 44,562 6/9/2012
4.5.6 287,298 5/30/2012
4.5.5 10,227 5/8/2012
4.5.4 9,065 4/24/2012
4.5.3 5,068 4/13/2012
4.5.2 4,379 4/11/2012
4.5.1 43,553 3/20/2012
4.0.8 35,442 2/12/2012
4.0.7 3,915 1/24/2012
4.0.6 2,665 1/23/2012
4.0.5 12,055 12/10/2011
4.0.4 3,134 11/19/2011
4.0.3 4,398 10/2/2011
4.0.2 5,073 4/23/2011
4.0.1 6,299 4/22/2011
3.5.8 4,360 1/8/2011