System.Text.Json 2.0.0.6

dotnet add package System.Text.Json --version 2.0.0.6
NuGet\Install-Package System.Text.Json -Version 2.0.0.6
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="System.Text.Json" Version="2.0.0.6" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add System.Text.Json --version 2.0.0.6
#r "nuget: System.Text.Json, 2.0.0.6"
#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 System.Text.Json as a Cake Addin
#addin nuget:?package=System.Text.Json&version=2.0.0.6

// Install System.Text.Json as a Cake Tool
#tool nuget:?package=System.Text.Json&version=2.0.0.6

A minimalistic and fast JSON parser/deserializer, for full .NET

Product Compatible and additional computed target framework versions.
.NET Framework net40 is compatible.  net403 was computed.  net45 was computed.  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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

GitHub repositories (621)

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

Repository Stars
jellyfin/jellyfin
The Free Software Media System
DevToys-app/DevToys
A Swiss Army knife for developers.
dotnet/roslyn
The Roslyn .NET compiler provides C# and Visual Basic languages with rich code analysis APIs.
microsoft/semantic-kernel
Integrate cutting-edge LLM technology quickly and easily into your apps
dotnet/runtime
.NET is a cross-platform runtime for cloud, mobile, desktop, and IoT apps.
Version Downloads Last updated
2.0.0.6 362 11/26/2014
2.0.0.5 59 11/26/2014
2.0.0.4 60 11/25/2014
2.0.0.3 177 11/23/2014
2.0.0.2 136 11/22/2014
2.0.0.1 125 11/21/2014
2.0.0 128 11/21/2014
1.9.9.9 148 11/20/2014
1.9.9.8 195 11/20/2014
1.9.9.7 287 11/17/2014
1.9.9.6 199 11/12/2014
1.9.9.5 210 11/11/2014
1.9.9.4 223 11/11/2014
1.9.9.3 379 11/10/2014
1.9.9.2 725 11/5/2014
1.9.9.1 211 1/6/2014
1.9.9 59 1/5/2014
1.9.8 67 1/3/2014
1.9.7 58 1/2/2014
1.9.6 62 1/2/2014
1.9.5 71 12/31/2013
1.9.4 73 12/31/2013
1.9.3 71 12/31/2013
1.9.2 67 12/30/2013
1.9.1 68 12/30/2013
1.9.0 68 12/30/2013
1.8.0 72 12/29/2013
1.7.0 70 12/29/2013
1.6.0 71 12/28/2013
1.5.0 72 12/27/2013
1.4.0 69 12/26/2013
1.3.0 71 12/24/2013
1.2.0 73 12/24/2013
1.1.0 74 12/23/2013

Starting with version 2.0.0.6, Android and WP8 are supported in a separate package:

https://www.nuget.org/packages/System.Text.Json.Mobile

In this version:

Bug fixes and improved support of nullable types used for dictionary keys and/or values.

Cf. corresponding new unit tests:

https://github.com/ysharplanguage/FastJsonParser/blob/master/JsonTest/ParserTests.cs#L755

For JSONPath- and anonymous types-related usage examples, refer to:

https://github.com/ysharplanguage/FastJsonParser#JSONPath

https://github.com/ysharplanguage/FastJsonParser#AnonymousTypes

https://github.com/ysharplanguage/FastJsonParser/blob/master/JsonTest/ParserTests.cs#L333

and

https://github.com/ysharplanguage/FastJsonParser/blob/master/JsonTest/ParserTests.cs#L510