Microsoft.AspNetCore.JsonPatch 10.0.0

Prefix Reserved
dotnet add package Microsoft.AspNetCore.JsonPatch --version 10.0.0
                    
NuGet\Install-Package Microsoft.AspNetCore.JsonPatch -Version 10.0.0
                    
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" />
                    
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" />
                    
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
                    
#r "nuget: Microsoft.AspNetCore.JsonPatch, 10.0.0"
                    
#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.
#:package Microsoft.AspNetCore.JsonPatch@10.0.0
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Microsoft.AspNetCore.JsonPatch&version=10.0.0
                    
Install as a Cake Addin
#tool nuget:?package=Microsoft.AspNetCore.JsonPatch&version=10.0.0
                    
Install 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.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
.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 (187)

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

Package Downloads
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/dotnet/tree/b0f34d51fccc69fd334253924abd8d6853fad7aa

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.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 (52)

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
emberstack/kubernetes-reflector
Custom Kubernetes controller that can be used to replicate secrets, configmaps and certificates.
grandnode/grandnode2
E-commerce platform built with ASP.NET Core using MongoDB for NoSQL storage
CodeMazeBlog/CodeMazeGuides
The main repository for all the Code Maze guides
security-code-scan/security-code-scan
Vulnerability Patterns Detector for C# and VB.NET
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.
cmu-sei/GHOSTS
GHOSTS is a realistic user simulation framework for cyber experimentation, simulation, training, and exercise
JonPSmith/EfCore.GenericServices
A library to help you quickly code CRUD accesses for a web/mobile/desktop application using EF Core.
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.
Librum-Reader/Librum-Server
The Librum server
VeritasSoftware/AspNetCore.ApiGateway
Framework for an API Gateway endorsed by the .NET Foundation as revolutionary!
solenovex/ASP.NET-Core-3.x-REST-API-Tutorial-Code
Version Downloads Last Updated
10.0.0 130,664 11/11/2025
10.0.0-rc.2.25502.107 29,535 10/14/2025
10.0.0-rc.1.25451.107 24,970 9/9/2025
10.0.0-preview.7.25380.108 4,967 8/12/2025
10.0.0-preview.6.25358.103 3,258 7/15/2025
10.0.0-preview.5.25277.114 9,760 6/6/2025
10.0.0-preview.4.25258.110 2,873 5/12/2025
10.0.0-preview.3.25172.1 6,929 4/10/2025
10.0.0-preview.2.25164.1 1,822 3/18/2025
10.0.0-preview.1.25120.3 112,189 2/25/2025
9.0.11 91,815 11/11/2025
9.0.10 825,812 10/14/2025
9.0.9 1,302,907 9/9/2025
9.0.8 1,505,681 8/5/2025
9.0.7 1,081,255 7/8/2025
9.0.6 1,408,483 6/10/2025
9.0.5 1,404,066 5/13/2025
9.0.4 1,879,861 4/8/2025
9.0.3 1,488,473 3/11/2025
9.0.2 1,746,417 2/11/2025
9.0.1 1,858,311 1/14/2025
9.0.0 5,662,640 11/12/2024
9.0.0-rc.2.24474.3 19,304 10/8/2024
9.0.0-rc.1.24452.1 12,929 9/10/2024
9.0.0-preview.7.24406.2 5,990 8/13/2024
9.0.0-preview.6.24328.4 16,297 7/9/2024
9.0.0-preview.5.24306.11 2,819 6/11/2024
9.0.0-preview.4.24267.6 4,144 5/21/2024
9.0.0-preview.3.24172.13 15,390 4/11/2024
9.0.0-preview.2.24128.4 8,846 3/12/2024
9.0.0-preview.1.24081.5 5,594 2/13/2024
8.0.22 128,368 11/11/2025
8.0.21 651,883 10/14/2025
8.0.20 1,032,011 9/9/2025
8.0.19 2,081,610 8/4/2025
8.0.18 997,167 7/8/2025
8.0.17 2,145,161 6/10/2025
8.0.16 1,707,212 5/13/2025
8.0.15 2,721,302 4/8/2025
8.0.14 2,468,178 3/11/2025
8.0.13 2,717,982 2/11/2025
8.0.12 4,146,266 1/14/2025
8.0.11 10,094,565 11/12/2024
8.0.10 11,869,967 10/8/2024
8.0.8 13,958,860 8/13/2024
8.0.7 9,852,649 7/9/2024
8.0.6 9,112,257 5/28/2024
8.0.5 3,212,921 5/14/2024
8.0.4 8,664,786 4/9/2024
8.0.3 6,330,591 3/12/2024
8.0.2 6,180,867 2/13/2024
8.0.1 9,326,161 1/9/2024
8.0.0 26,230,495 11/14/2023
8.0.0-rc.2.23480.2 66,504 10/10/2023
8.0.0-rc.1.23421.29 39,173 9/12/2023
8.0.0-preview.7.23375.9 21,002 8/8/2023
8.0.0-preview.6.23329.11 19,561 7/11/2023
8.0.0-preview.5.23302.2 12,097 6/13/2023
8.0.0-preview.4.23260.4 280,574 5/16/2023
8.0.0-preview.3.23177.8 32,689 4/11/2023
8.0.0-preview.2.23153.2 21,492 3/14/2023
8.0.0-preview.1.23112.2 16,826 2/21/2023
7.0.20 997,532 5/28/2024
7.0.19 148,098 5/14/2024
7.0.18 268,283 4/9/2024
7.0.17 318,836 3/12/2024
7.0.16 394,208 2/13/2024
7.0.15 833,374 1/9/2024
7.0.14 2,030,252 11/14/2023
7.0.13 2,415,456 10/24/2023
7.0.12 1,416,792 10/10/2023
7.0.11 3,176,401 9/12/2023
7.0.10 2,850,763 8/8/2023
7.0.9 2,233,191 7/11/2023
7.0.8 1,826,283 6/22/2023
7.0.7 1,577,130 6/13/2023
7.0.5 6,785,666 4/11/2023
7.0.4 2,762,930 3/14/2023
7.0.3 3,040,109 2/14/2023
7.0.2 3,777,172 1/10/2023
7.0.1 4,160,229 12/13/2022
7.0.0 17,329,421 11/7/2022
7.0.0-rc.2.22476.2 67,327 10/11/2022
7.0.0-rc.1.22427.2 15,529 9/14/2022
7.0.0-preview.7.22376.6 15,031 8/9/2022
7.0.0-preview.6.22330.3 7,951 7/12/2022
7.0.0-preview.5.22303.8 11,925 6/14/2022
7.0.0-preview.4.22251.1 18,374 5/10/2022
7.0.0-preview.3.22178.4 4,217 4/13/2022
7.0.0-preview.2.22153.2 13,322 3/14/2022
7.0.0-preview.1.22109.13 21,526 2/17/2022
6.0.36 1,388,698 11/12/2024
6.0.35 585,498 10/8/2024
6.0.33 2,290,733 8/13/2024
6.0.32 815,882 7/9/2024
6.0.31 829,122 5/28/2024
6.0.30 298,931 5/14/2024
6.0.29 1,122,565 4/9/2024
6.0.28 1,024,229 3/12/2024
6.0.27 3,665,815 2/13/2024
6.0.26 2,036,586 1/9/2024
6.0.25 3,527,500 11/14/2023
6.0.24 2,044,917 10/24/2023
6.0.23 927,877 10/10/2023
6.0.22 1,845,703 9/12/2023
6.0.21 2,507,767 8/8/2023
6.0.20 2,560,862 7/11/2023
6.0.19 1,525,485 6/22/2023
6.0.18 883,382 6/13/2023
6.0.16 6,570,510 4/11/2023
6.0.15 3,223,325 3/14/2023
6.0.14 3,492,130 2/14/2023
6.0.13 5,940,166 1/10/2023
6.0.12 5,172,681 12/13/2022
6.0.11 8,386,452 11/7/2022
6.0.10 11,233,116 10/11/2022
6.0.9 8,216,558 9/13/2022
6.0.8 10,735,287 8/9/2022
6.0.7 8,527,500 7/12/2022
6.0.6 7,082,596 6/14/2022
6.0.5 13,574,408 5/10/2022
6.0.4 8,036,434 4/11/2022
6.0.3 9,014,025 3/8/2022
6.0.2 7,901,232 2/8/2022
6.0.1 18,003,486 12/14/2021
6.0.0 18,979,158 11/8/2021
6.0.0-rc.2.21480.10 81,120 10/12/2021
6.0.0-rc.1.21452.15 24,054,826 9/14/2021
6.0.0-preview.7.21378.6 71,967 8/10/2021
6.0.0-preview.6.21355.2 9,968 7/14/2021
6.0.0-preview.5.21301.17 10,785 6/15/2021
6.0.0-preview.4.21253.5 26,533 5/24/2021
6.0.0-preview.3.21201.13 16,847 4/8/2021
6.0.0-preview.2.21154.6 48,004 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,967 2/12/2021 6.0.0-preview.1.21103.6 is deprecated because it is no longer maintained.
5.0.17 2,685,838 5/10/2022 5.0.17 is deprecated because it is no longer maintained.
5.0.16 349,094 4/11/2022 5.0.16 is deprecated because it is no longer maintained.
5.0.15 812,401 3/8/2022 5.0.15 is deprecated because it is no longer maintained.
5.0.14 607,483 2/8/2022 5.0.14 is deprecated because it is no longer maintained.
5.0.13 3,147,387 12/14/2021 5.0.13 is deprecated because it is no longer maintained.
5.0.12 2,415,050 11/7/2021 5.0.12 is deprecated because it is no longer maintained.
5.0.11 5,710,009 10/12/2021 5.0.11 is deprecated because it is no longer maintained.
5.0.10 7,589,229 9/14/2021 5.0.10 is deprecated because it is no longer maintained.
5.0.9 4,621,956 8/10/2021 5.0.9 is deprecated because it is no longer maintained.
5.0.8 4,071,812 7/13/2021 5.0.8 is deprecated because it is no longer maintained.
5.0.7 4,717,040 6/8/2021 5.0.7 is deprecated because it is no longer maintained.
5.0.6 3,098,548 5/11/2021 5.0.6 is deprecated because it is no longer maintained.
5.0.5 4,521,215 4/6/2021 5.0.5 is deprecated because it is no longer maintained.
5.0.4 3,473,207 3/9/2021 5.0.4 is deprecated because it is no longer maintained.
5.0.3 3,917,690 2/9/2021 5.0.3 is deprecated because it is no longer maintained.
5.0.2 3,140,140 1/12/2021 5.0.2 is deprecated because it is no longer maintained.
5.0.1 3,142,168 12/8/2020 5.0.1 is deprecated because it is no longer maintained.
5.0.0 15,352,168 11/9/2020 5.0.0 is deprecated because it is no longer maintained.
5.0.0-rc.2.20475.17 35,359 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 23,149 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,527 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 19,018 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,650 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,953 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,525 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 8,355 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 11,038 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,459 3/16/2020 5.0.0-preview.1.20124.5 is deprecated because it is no longer maintained.
3.1.32 2,352,649 12/13/2022
3.1.31 237,602 11/8/2022
3.1.30 364,071 10/11/2022
3.1.29 437,925 9/13/2022
3.1.28 575,751 8/9/2022
3.1.27 611,729 7/12/2022
3.1.26 457,363 6/14/2022
3.1.25 706,385 5/10/2022
3.1.24 447,243 4/11/2022
3.1.23 879,684 3/8/2022
3.1.22 3,496,471 12/14/2021
3.1.21 1,867,466 11/7/2021
3.1.20 1,420,250 10/11/2021
3.1.19 1,368,870 9/14/2021
3.1.18 1,963,436 8/10/2021
3.1.17 1,931,476 7/13/2021
3.1.16 2,486,865 6/8/2021
3.1.15 2,157,789 5/11/2021
3.1.14 3,072,844 4/6/2021
3.1.13 3,259,340 3/9/2021
3.1.12 3,001,429 2/9/2021
3.1.11 4,130,922 1/12/2021
3.1.10 7,750,539 11/9/2020
3.1.9 8,192,332 10/13/2020
3.1.8 10,305,751 9/8/2020
3.1.7 7,062,135 8/11/2020
3.1.6 7,972,448 7/14/2020
3.1.5 11,036,423 6/9/2020
3.1.4 7,681,513 5/12/2020
3.1.3 14,222,025 3/24/2020
3.1.2 9,892,061 2/18/2020
3.1.1 11,777,765 1/14/2020
3.1.0 10,590,252 12/3/2019
3.1.0-preview3.19555.2 45,506 11/13/2019 3.1.0-preview3.19555.2 is deprecated because it is no longer maintained.
3.1.0-preview2.19528.8 7,437 11/1/2019 3.1.0-preview2.19528.8 is deprecated because it is no longer maintained.
3.1.0-preview1.19508.20 13,555 10/15/2019 3.1.0-preview1.19508.20 is deprecated because it is no longer maintained.
3.0.3 606,834 2/18/2020 3.0.3 is deprecated because it is no longer maintained.
3.0.2 587,413 1/14/2020 3.0.2 is deprecated because it is no longer maintained.
3.0.0 41,738,648 9/23/2019 3.0.0 is deprecated because it is no longer maintained.
3.0.0-rc1.19457.4 41,636 9/16/2019 3.0.0-rc1.19457.4 is deprecated because it is no longer maintained.
3.0.0-preview9.19424.4 83,659 9/4/2019 3.0.0-preview9.19424.4 is deprecated because it is no longer maintained.
3.0.0-preview8.19405.7 117,166 8/13/2019 3.0.0-preview8.19405.7 is deprecated because it is no longer maintained.
3.0.0-preview7.19365.7 99,690 7/23/2019 3.0.0-preview7.19365.7 is deprecated because it is no longer maintained.
3.0.0-preview6.19307.2 285,223 6/12/2019 3.0.0-preview6.19307.2 is deprecated because it is no longer maintained.
3.0.0-preview5-19227-01 859,934 5/6/2019 3.0.0-preview5-19227-01 is deprecated because it is no longer maintained.
3.0.0-preview4-19216-03 39,185 4/18/2019 3.0.0-preview4-19216-03 is deprecated because it is no longer maintained.
3.0.0-preview3-19153-02 6,426,571 3/6/2019 3.0.0-preview3-19153-02 is deprecated because it is no longer maintained.
3.0.0-preview-19075-0444 23,362 1/29/2019 3.0.0-preview-19075-0444 is deprecated because it is no longer maintained.
3.0.0-preview-18579-0056 4,378 12/3/2018 3.0.0-preview-18579-0056 is deprecated because it is no longer maintained.
2.3.0 6,695,775 1/14/2025
2.2.0 250,532,561 12/3/2018 2.2.0 is deprecated because it is no longer maintained.
2.2.0-preview3-35497 106,418 10/17/2018 2.2.0-preview3-35497 is deprecated because it is no longer maintained.
2.2.0-preview2-35157 46,655 9/12/2018 2.2.0-preview2-35157 is deprecated because it is no longer maintained.
2.2.0-preview1-35029 29,682 8/22/2018 2.2.0-preview1-35029 is deprecated because it is no longer maintained.
2.1.1 43,248,614 6/18/2018
2.1.0 107,619,894 5/29/2018
2.1.0-rc1-final 121,951 5/6/2018 2.1.0-rc1-final is deprecated because it is no longer maintained.
2.1.0-preview2-final 201,847 4/10/2018 2.1.0-preview2-final is deprecated because it is no longer maintained.
2.1.0-preview1-final 173,629 2/26/2018 2.1.0-preview1-final is deprecated because it is no longer maintained.
2.0.0 85,103,944 8/11/2017 2.0.0 is deprecated because it is no longer maintained.
2.0.0-preview2-final 106,354 6/27/2017 2.0.0-preview2-final is deprecated because it is no longer maintained.
2.0.0-preview1-final 33,033 5/10/2017 2.0.0-preview1-final is deprecated because it is no longer maintained.
1.1.2 9,559,653 5/9/2017 1.1.2 is deprecated because it is no longer maintained.
1.1.1 4,134,855 3/6/2017 1.1.1 is deprecated because it is no longer maintained.
1.1.0 3,240,635 11/16/2016 1.1.0 is deprecated because it is no longer maintained.
1.1.0-preview1-final 31,043 10/24/2016 1.1.0-preview1-final is deprecated because it is no longer maintained.
1.0.0 57,096,690 6/27/2016 1.0.0 is deprecated because it is no longer maintained.
1.0.0-rc2-final 191,592 5/16/2016 1.0.0-rc2-final is deprecated because it is no longer maintained.