Microsoft.AspNetCore.JsonPatch 10.0.0-preview.3.25172.1

Prefix Reserved
This is a prerelease version of Microsoft.AspNetCore.JsonPatch.
dotnet add package Microsoft.AspNetCore.JsonPatch --version 10.0.0-preview.3.25172.1
                    
NuGet\Install-Package Microsoft.AspNetCore.JsonPatch -Version 10.0.0-preview.3.25172.1
                    
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="Microsoft.AspNetCore.JsonPatch" Version="10.0.0-preview.3.25172.1" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Microsoft.AspNetCore.JsonPatch" Version="10.0.0-preview.3.25172.1" />
                    
Directory.Packages.props
<PackageReference Include="Microsoft.AspNetCore.JsonPatch" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Microsoft.AspNetCore.JsonPatch --version 10.0.0-preview.3.25172.1
                    
#r "nuget: Microsoft.AspNetCore.JsonPatch, 10.0.0-preview.3.25172.1"
                    
#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.
#addin nuget:?package=Microsoft.AspNetCore.JsonPatch&version=10.0.0-preview.3.25172.1&prerelease
                    
Install Microsoft.AspNetCore.JsonPatch as a Cake Addin
#tool nuget:?package=Microsoft.AspNetCore.JsonPatch&version=10.0.0-preview.3.25172.1&prerelease
                    
Install Microsoft.AspNetCore.JsonPatch as a Cake Tool

About

Microsoft.AspNetCore.JsonPatch provides ASP.NET Core support for JSON PATCH requests.

How to Use

To use Microsoft.AspNetCore.JsonPatch, follow these steps:

Installation

dotnet add package Microsoft.AspNetCore.JsonPatch
dotnet add package Microsoft.AspNetCore.Mvc.NewtonsoftJson

Configuration

To enable JSON Patch support, call AddNewtonsoftJson in your ASP.NET Core app's Program.cs:

var builder = WebApplication.CreateBuilder(args);

builder.Services.AddControllers()
    .AddNewtonsoftJson();
Configure when using System.Text.Json

To add support for JSON Patch using Newtonsoft.Json while continuing to use System.Text.Json for other input and output formatters:

  1. Update your Program.cs with logic to construct a NewtonsoftJsonPatchInputFormatter:
    static NewtonsoftJsonPatchInputFormatter GetJsonPatchInputFormatter()
    {
        var builder = new ServiceCollection()
            .AddLogging()
            .AddMvc()
            .AddNewtonsoftJson()
            .Services.BuildServiceProvider();
    
        return builder
            .GetRequiredService<IOptions<MvcOptions>>()
            .Value
            .InputFormatters
            .OfType<NewtonsoftJsonPatchInputFormatter>()
            .First();
    }
    
  2. Configure the input formatter:
    var builder = WebApplication.CreateBuilder(args);
    
    builder.Services.AddControllers(options =>
    {
        options.InputFormatters.Insert(0, GetJsonPatchInputFormatter());
    });
    

Usage

To define an action method for a JSON Patch in an API controller:

  1. Annotate it with the HttpPatch attribute
  2. Accept a JsonPatchDocument<TModel>
  3. Call ApplyTo on the patch document to apply changes

For example:

[HttpPatch]
public IActionResult JsonPatchWithModelState(
    [FromBody] JsonPatchDocument<Customer> patchDoc)
{
    if (patchDoc is not null)
    {
        var customer = CreateCustomer();

        patchDoc.ApplyTo(customer, ModelState);

        if (!ModelState.IsValid)
        {
            return BadRequest(ModelState);
        }

        return new ObjectResult(customer);
    }
    else
    {
        return BadRequest(ModelState);
    }
}

In a real app, the code would retrieve the data from a store such as a database and update the database after applying the patch.

Additional Documentation

For additional documentation and examples, refer to the official documentation on JSON Patch in ASP.NET Core.

Feedback & Contributing

Microsoft.AspNetCore.JsonPatch is released as open-source under the MIT license. Bug reports and contributions are welcome at the GitHub repository.

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  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.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 is compatible. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 is compatible.  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 tizen40 was computed.  tizen60 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)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (177)

Showing the top 5 NuGet packages that depend on Microsoft.AspNetCore.JsonPatch:

Package Downloads
Microsoft.AspNetCore.Mvc.Formatters.Json

ASP.NET Core MVC formatters for JSON input and output and for JSON PATCH input using Json.NET.

Microsoft.AspNetCore.Mvc.NewtonsoftJson

ASP.NET Core MVC features that use Newtonsoft.Json. Includes input and output formatters for JSON and JSON PATCH. This package was built from the source code at https://github.com/dotnet/aspnetcore/tree/de35e2b0a0d8d5d1e307907983a6838da1092898

Microsoft.AspNetCore.App

Provides a default set of APIs for building an ASP.NET Core application. This package requires the ASP.NET Core runtime. This runtime is installed by the .NET Core SDK, or can be acquired separately using installers available at https://aka.ms/dotnet-download.

Microsoft.AspNetCore.All

Provides a default set of APIs for building an ASP.NET Core application, and also includes API for third-party integrations with ASP.NET Core. This package requires the ASP.NET Core runtime. This runtime is installed by the .NET Core SDK, or can be acquired separately using installers available at https://aka.ms/dotnet-download.

RavenDB.Client

RavenDB Client is the client library for accessing RavenDB

GitHub repositories (49)

Showing the top 20 popular GitHub repositories that depend on Microsoft.AspNetCore.JsonPatch:

Repository Stars
aspnet/Mvc
[Archived] ASP.NET Core MVC is a model view controller framework for building dynamic web sites with clean separation of concerns, including the merged MVC, Web API, and Web Pages w/ Razor. Project moved to https://github.com/aspnet/AspNetCore
ravendb/ravendb
ACID Document Database
thepirat000/Audit.NET
An extensible framework to audit executing operations in .NET and .NET Core.
asynkron/protoactor-dotnet
Proto Actor - Ultra fast distributed actors for Go, C# and Java/Kotlin
grandnode/grandnode2
E-commerce platform built with ASP.NET Core using MongoDB for NoSQL storage
security-code-scan/security-code-scan
Vulnerability Patterns Detector for C# and VB.NET
CodeMazeBlog/CodeMazeGuides
The main repository for all the Code Maze guides
OData/WebApi
OData Web API: A server library built upon ODataLib and WebApi
laochiangx/ABP-ASP.NET-Boilerplate-Project-CMS
ABP module-zero +AdminLTE+Bootstrap Table+jQuery+Redis + sql server+quartz+hangfire权限管理系统
Dotnet-Boxed/Framework
.NET Core Extensions and Helper NuGet packages.
JonPSmith/EfCore.GenericServices
A library to help you quickly code CRUD accesses for a web/mobile/desktop application using EF Core.
cmu-sei/GHOSTS
GHOSTS is a realistic user simulation framework for cyber experimentation, simulation, training, and exercise
TeslaFly01/SmartSqlT
🔥🔥🔥 SmartSQL 是一款方便、快捷的数据库文档查询、导出工具!该工具从最初支持CHM文档格式开始,通过不断地探索开发、集思广益和不断改进,又陆续支持Word、Excel、PDF、Html、Xml、Json、MarkDown等文档格式的导出。同时支持SqlServer、MySql、PostgreSQL、SQLite等多种数据库的文档查询和导出功能。
mattfrear/Swashbuckle.AspNetCore.Filters
A bunch of useful filters for Swashbuckle.AspNetCore
mKenfenheuer/steam-deck-windows-usermode-driver
A windows usermode controller driver for the steam deck internal controller.
itlibrium/DDD-starter-dotnet
Sample implementation and comparison of various approaches to building DDD applications. Useful as a baseline to quickly start a DDD dot net project.
VeritasSoftware/AspNetCore.ApiGateway
Framework for an API Gateway endorsed by the .NET Foundation as revolutionary!
Librum-Reader/Librum-Server
The Librum server
solenovex/ASP.NET-Core-3.x-REST-API-Tutorial-Code
mcintyre321/FormFactory
MVC5, Core or standalone - Generate rich HTML5 forms from your ViewModels, or build them programatically
Version Downloads Last updated
10.0.0-preview.3.25172.1 1,678 4/10/2025
10.0.0-preview.2.25164.1 1,219 3/18/2025
10.0.0-preview.1.25120.3 2,088 2/25/2025
9.0.4 188,274 4/8/2025
9.0.3 591,119 3/11/2025
9.0.2 885,460 2/11/2025
9.0.1 914,959 1/14/2025
9.0.0 2,429,394 11/12/2024
9.0.0-rc.2.24474.3 16,771 10/8/2024
9.0.0-rc.1.24452.1 10,555 9/10/2024
9.0.0-preview.7.24406.2 4,141 8/13/2024
9.0.0-preview.6.24328.4 14,725 7/9/2024
9.0.0-preview.5.24306.11 1,952 6/11/2024
9.0.0-preview.4.24267.6 2,522 5/21/2024
9.0.0-preview.3.24172.13 11,408 4/11/2024
9.0.0-preview.2.24128.4 3,396 3/12/2024
9.0.0-preview.1.24081.5 3,761 2/13/2024
8.0.15 158,831 4/8/2025
8.0.14 769,336 3/11/2025
8.0.13 1,178,659 2/11/2025
8.0.12 1,758,638 1/14/2025
8.0.11 5,038,654 11/12/2024
8.0.10 6,939,946 10/8/2024
8.0.8 9,038,723 8/13/2024
8.0.7 6,178,579 7/9/2024
8.0.6 6,514,815 5/28/2024
8.0.5 2,299,323 5/14/2024
8.0.4 6,216,090 4/9/2024
8.0.3 4,822,914 3/12/2024
8.0.2 4,716,718 2/13/2024
8.0.1 6,999,402 1/9/2024
8.0.0 16,014,532 11/14/2023
8.0.0-rc.2.23480.2 59,388 10/10/2023
8.0.0-rc.1.23421.29 36,704 9/12/2023
8.0.0-preview.7.23375.9 19,649 8/8/2023
8.0.0-preview.6.23329.11 15,727 7/11/2023
8.0.0-preview.5.23302.2 10,893 6/13/2023
8.0.0-preview.4.23260.4 253,361 5/16/2023
8.0.0-preview.3.23177.8 30,733 4/11/2023
8.0.0-preview.2.23153.2 18,627 3/14/2023
8.0.0-preview.1.23112.2 15,702 2/21/2023
7.0.20 608,093 5/28/2024
7.0.19 113,679 5/14/2024
7.0.18 220,467 4/9/2024
7.0.17 263,676 3/12/2024
7.0.16 358,955 2/13/2024
7.0.15 721,509 1/9/2024
7.0.14 1,769,155 11/14/2023
7.0.13 2,082,383 10/24/2023
7.0.12 1,227,949 10/10/2023
7.0.11 2,283,702 9/12/2023
7.0.10 2,592,825 8/8/2023
7.0.9 2,020,948 7/11/2023
7.0.8 1,645,016 6/22/2023
7.0.7 1,305,843 6/13/2023
7.0.5 6,236,772 4/11/2023
7.0.4 2,590,728 3/14/2023
7.0.3 2,779,817 2/14/2023
7.0.2 3,547,771 1/10/2023
7.0.1 3,541,162 12/13/2022
7.0.0 14,040,174 11/7/2022
7.0.0-rc.2.22476.2 64,988 10/11/2022
7.0.0-rc.1.22427.2 12,646 9/14/2022
7.0.0-preview.7.22376.6 14,771 8/9/2022
7.0.0-preview.6.22330.3 7,419 7/12/2022
7.0.0-preview.5.22303.8 11,276 6/14/2022
7.0.0-preview.4.22251.1 18,167 5/10/2022
7.0.0-preview.3.22178.4 3,849 4/13/2022
7.0.0-preview.2.22153.2 12,480 3/14/2022
7.0.0-preview.1.22109.13 21,304 2/17/2022
6.0.36 536,558 11/12/2024
6.0.35 365,393 10/8/2024
6.0.33 1,380,542 8/13/2024
6.0.32 620,662 7/9/2024
6.0.31 675,144 5/28/2024
6.0.30 258,507 5/14/2024
6.0.29 927,049 4/9/2024
6.0.28 879,505 3/12/2024
6.0.27 2,918,322 2/13/2024
6.0.26 1,671,263 1/9/2024
6.0.25 3,121,630 11/14/2023
6.0.24 1,757,236 10/24/2023
6.0.23 843,220 10/10/2023
6.0.22 1,618,462 9/12/2023
6.0.21 2,252,170 8/8/2023
6.0.20 2,341,467 7/11/2023
6.0.19 1,370,768 6/22/2023
6.0.18 806,199 6/13/2023
6.0.16 6,009,921 4/11/2023
6.0.15 2,844,378 3/14/2023
6.0.14 3,201,114 2/14/2023
6.0.13 5,314,733 1/10/2023
6.0.12 4,824,677 12/13/2022
6.0.11 7,604,081 11/7/2022
6.0.10 10,320,165 10/11/2022
6.0.9 7,522,240 9/13/2022
6.0.8 10,017,978 8/9/2022
6.0.7 8,021,161 7/12/2022
6.0.6 6,552,021 6/14/2022
6.0.5 12,332,849 5/10/2022
6.0.4 7,603,190 4/11/2022
6.0.3 8,604,049 3/8/2022
6.0.2 7,534,334 2/8/2022
6.0.1 16,349,905 12/14/2021
6.0.0 17,044,015 11/8/2021
6.0.0-rc.2.21480.10 71,891 10/12/2021
6.0.0-rc.1.21452.15 22,347,806 9/14/2021
6.0.0-preview.7.21378.6 61,144 8/10/2021
6.0.0-preview.6.21355.2 9,746 7/14/2021
6.0.0-preview.5.21301.17 10,536 6/15/2021
6.0.0-preview.4.21253.5 22,327 5/24/2021
6.0.0-preview.3.21201.13 14,318 4/8/2021
6.0.0-preview.2.21154.6 46,413 3/11/2021 6.0.0-preview.2.21154.6 is deprecated because it is no longer maintained.
6.0.0-preview.1.21103.6 25,334 2/12/2021 6.0.0-preview.1.21103.6 is deprecated because it is no longer maintained.
5.0.17 2,457,356 5/10/2022 5.0.17 is deprecated because it is no longer maintained.
5.0.16 331,413 4/11/2022 5.0.16 is deprecated because it is no longer maintained.
5.0.15 756,399 3/8/2022 5.0.15 is deprecated because it is no longer maintained.
5.0.14 570,251 2/8/2022 5.0.14 is deprecated because it is no longer maintained.
5.0.13 3,071,125 12/14/2021 5.0.13 is deprecated because it is no longer maintained.
5.0.12 2,305,099 11/7/2021 5.0.12 is deprecated because it is no longer maintained.
5.0.11 5,477,272 10/12/2021 5.0.11 is deprecated because it is no longer maintained.
5.0.10 7,233,110 9/14/2021 5.0.10 is deprecated because it is no longer maintained.
5.0.9 4,362,212 8/10/2021 5.0.9 is deprecated because it is no longer maintained.
5.0.8 3,904,045 7/13/2021 5.0.8 is deprecated because it is no longer maintained.
5.0.7 4,484,165 6/8/2021 5.0.7 is deprecated because it is no longer maintained.
5.0.6 3,004,915 5/11/2021 5.0.6 is deprecated because it is no longer maintained.
5.0.5 4,373,982 4/6/2021 5.0.5 is deprecated because it is no longer maintained.
5.0.4 3,313,441 3/9/2021 5.0.4 is deprecated because it is no longer maintained.
5.0.3 3,760,563 2/9/2021 5.0.3 is deprecated because it is no longer maintained.
5.0.2 3,013,083 1/12/2021 5.0.2 is deprecated because it is no longer maintained.
5.0.1 3,049,770 12/8/2020 5.0.1 is deprecated because it is no longer maintained.
5.0.0 14,413,575 11/9/2020 5.0.0 is deprecated because it is no longer maintained.
5.0.0-rc.2.20475.17 33,809 10/13/2020 5.0.0-rc.2.20475.17 is deprecated because it is no longer maintained.
5.0.0-rc.1.20451.17 21,296 9/14/2020 5.0.0-rc.1.20451.17 is deprecated because it is no longer maintained.
5.0.0-preview.8.20414.8 8,167 8/25/2020 5.0.0-preview.8.20414.8 is deprecated because it is no longer maintained.
5.0.0-preview.7.20365.19 18,456 7/21/2020 5.0.0-preview.7.20365.19 is deprecated because it is no longer maintained.
5.0.0-preview.6.20312.15 9,369 6/25/2020 5.0.0-preview.6.20312.15 is deprecated because it is no longer maintained.
5.0.0-preview.5.20279.2 22,681 6/10/2020 5.0.0-preview.5.20279.2 is deprecated because it is no longer maintained.
5.0.0-preview.4.20257.10 6,243 5/18/2020 5.0.0-preview.4.20257.10 is deprecated because it is no longer maintained.
5.0.0-preview.3.20215.14 7,478 4/23/2020 5.0.0-preview.3.20215.14 is deprecated because it is no longer maintained.
5.0.0-preview.2.20167.3 10,761 4/2/2020 5.0.0-preview.2.20167.3 is deprecated because it is no longer maintained.
5.0.0-preview.1.20124.5 5,184 3/16/2020 5.0.0-preview.1.20124.5 is deprecated because it is no longer maintained.
3.1.32 1,592,605 12/13/2022
3.1.31 215,450 11/8/2022
3.1.30 326,208 10/11/2022
3.1.29 396,447 9/13/2022
3.1.28 535,424 8/9/2022
3.1.27 578,797 7/12/2022
3.1.26 428,058 6/14/2022
3.1.25 667,584 5/10/2022
3.1.24 432,722 4/11/2022
3.1.23 847,046 3/8/2022
3.1.22 3,278,509 12/14/2021
3.1.21 1,746,802 11/7/2021
3.1.20 1,353,557 10/11/2021
3.1.19 1,319,416 9/14/2021
3.1.18 1,864,083 8/10/2021
3.1.17 1,842,029 7/13/2021
3.1.16 2,374,788 6/8/2021
3.1.15 2,043,742 5/11/2021
3.1.14 2,903,321 4/6/2021
3.1.13 3,158,846 3/9/2021
3.1.12 2,856,657 2/9/2021
3.1.11 4,015,020 1/12/2021
3.1.10 7,402,394 11/9/2020
3.1.9 7,882,266 10/13/2020
3.1.8 10,017,633 9/8/2020
3.1.7 6,886,932 8/11/2020
3.1.6 7,558,958 7/14/2020
3.1.5 10,688,407 6/9/2020
3.1.4 7,388,585 5/12/2020
3.1.3 13,719,956 3/24/2020
3.1.2 9,580,428 2/18/2020
3.1.1 11,362,620 1/14/2020
3.1.0 10,102,044 12/3/2019
3.1.0-preview3.19555.2 44,341 11/13/2019 3.1.0-preview3.19555.2 is deprecated because it is no longer maintained.
3.1.0-preview2.19528.8 7,148 11/1/2019 3.1.0-preview2.19528.8 is deprecated because it is no longer maintained.
3.1.0-preview1.19508.20 13,215 10/15/2019 3.1.0-preview1.19508.20 is deprecated because it is no longer maintained.
3.0.3 578,636 2/18/2020 3.0.3 is deprecated because it is no longer maintained.
3.0.2 573,969 1/14/2020 3.0.2 is deprecated because it is no longer maintained.
3.0.0 39,907,508 9/23/2019 3.0.0 is deprecated because it is no longer maintained.
3.0.0-rc1.19457.4 40,313 9/16/2019 3.0.0-rc1.19457.4 is deprecated because it is no longer maintained.
3.0.0-preview9.19424.4 80,257 9/4/2019 3.0.0-preview9.19424.4 is deprecated because it is no longer maintained.
3.0.0-preview8.19405.7 113,932 8/13/2019 3.0.0-preview8.19405.7 is deprecated because it is no longer maintained.
3.0.0-preview7.19365.7 95,409 7/23/2019 3.0.0-preview7.19365.7 is deprecated because it is no longer maintained.
3.0.0-preview6.19307.2 273,532 6/12/2019 3.0.0-preview6.19307.2 is deprecated because it is no longer maintained.
3.0.0-preview5-19227-01 833,776 5/6/2019 3.0.0-preview5-19227-01 is deprecated because it is no longer maintained.
3.0.0-preview4-19216-03 37,483 4/18/2019 3.0.0-preview4-19216-03 is deprecated because it is no longer maintained.
3.0.0-preview3-19153-02 6,218,522 3/6/2019 3.0.0-preview3-19153-02 is deprecated because it is no longer maintained.
3.0.0-preview-19075-0444 21,962 1/29/2019 3.0.0-preview-19075-0444 is deprecated because it is no longer maintained.
3.0.0-preview-18579-0056 4,107 12/3/2018 3.0.0-preview-18579-0056 is deprecated because it is no longer maintained.
2.3.0 998,588 1/14/2025
2.2.0 210,800,434 12/3/2018 2.2.0 is deprecated because it is no longer maintained.
2.2.0-preview3-35497 104,990 10/17/2018 2.2.0-preview3-35497 is deprecated because it is no longer maintained.
2.2.0-preview2-35157 45,157 9/12/2018 2.2.0-preview2-35157 is deprecated because it is no longer maintained.
2.2.0-preview1-35029 28,536 8/22/2018 2.2.0-preview1-35029 is deprecated because it is no longer maintained.
2.1.1 39,676,495 6/18/2018
2.1.0 103,685,403 5/29/2018
2.1.0-rc1-final 114,277 5/6/2018 2.1.0-rc1-final is deprecated because it is no longer maintained.
2.1.0-preview2-final 185,404 4/10/2018 2.1.0-preview2-final is deprecated because it is no longer maintained.
2.1.0-preview1-final 164,139 2/26/2018 2.1.0-preview1-final is deprecated because it is no longer maintained.
2.0.0 82,070,818 8/11/2017 2.0.0 is deprecated because it is no longer maintained.
2.0.0-preview2-final 103,221 6/27/2017 2.0.0-preview2-final is deprecated because it is no longer maintained.
2.0.0-preview1-final 32,343 5/10/2017 2.0.0-preview1-final is deprecated because it is no longer maintained.
1.1.2 9,051,753 5/9/2017 1.1.2 is deprecated because it is no longer maintained.
1.1.1 4,022,594 3/6/2017 1.1.1 is deprecated because it is no longer maintained.
1.1.0 2,991,975 11/16/2016 1.1.0 is deprecated because it is no longer maintained.
1.1.0-preview1-final 30,203 10/24/2016 1.1.0-preview1-final is deprecated because it is no longer maintained.
1.0.0 55,339,487 6/27/2016 1.0.0 is deprecated because it is no longer maintained.
1.0.0-rc2-final 183,327 5/16/2016 1.0.0-rc2-final is deprecated because it is no longer maintained.