Manatee.Json 2.8.6

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

// Install Manatee.Json as a Cake Tool
#tool nuget:?package=Manatee.Json&version=2.8.6

A fully object-oriented approach to JSON manipulation, validation, and serialization that focuses on modeling the JSON structure rather than mere string parsing.

Product Compatible and additional computed target framework versions.
.NET net6.0-android was computed.  net7.0-android was computed.  net8.0-android was computed. 
.NET Framework net35 is compatible.  net35-client is compatible.  net40 is compatible.  net40-client 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 is compatible. 
MonoMac monomac is compatible. 
MonoTouch monotouch is compatible. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

GitHub repositories (3)

Showing the top 3 popular GitHub repositories that depend on Manatee.Json:

Repository Stars
dotnet/corefxlab
This repo is for experimentation and exploring new ideas that may or may not make it into the main corefx repo.
microsoft/PSRule
Validate infrastructure as code (IaC) and objects using PowerShell rules.
cdmdotnet/Manatee.Trello
A fully object-oriented .Net wrapper for Trello's RESTful API written in C#.
Version Downloads Last updated
2.8.6 434 4/18/2015

See Trello board for this project at https://trello.com/b/bQ7Io1z9/manatee-json.  Feedback is welcome through the board, on StackOverflow, or by emailing littlecrabsolutions@yahoo.com.

If you use this library for a business, you can let the world know on the aforementioned Trello board.

v2.8.6
Made schema validation errors more precise.

v2.8.5
BUG FIX: Validation of schemas using JsonSchema.Draft04 not working properly.

v2.8.4
BUG FIX: Enum deserialization does not respect CaseSensitiveDeserialization option

v2.8.3
BUG FIX: Draft04 not self-validating.  Affected enum schemas as well.

v2.8.2.1 (no functional changes)
Removed JetBrains.Annotations from project (could interfere with their Nuget package).
Added reference to the Nuget package published by JetBrains.

v2.8.2
Added enum serialization format autodetection to deserialization.
BUG FIX: Schema basic type definitions serialize as full schema.
BUG FIX: #Def key is not added when only two references are present.

v2.8.1
Updated default resolver to look at non-public constructors as well as public.
Added exception when default constructor cannot instantiate a type.

v2.8.0.2
Rebuilt libraries and repackaged.  No functional changes from v2.8.0.1.

v2.8.0.1
BUG FIX: Nullables with default values may be ignored.

v2.8.0 (may contain breaking changes)
Added auto-registration of specific generic types.
Removed specific generic type registration methods from JsonSerializationTypeRegistry.
Replaced usages of JsonValueParseException and JsonKeyParseException with JsonSyntaxException.
Removed JsonValueParseException and JsonKeyParseException.