Microsoft.AspNetCore.Authentication.JwtBearer 10.0.1

Prefix Reserved
dotnet add package Microsoft.AspNetCore.Authentication.JwtBearer --version 10.0.1
                    
NuGet\Install-Package Microsoft.AspNetCore.Authentication.JwtBearer -Version 10.0.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.Authentication.JwtBearer" Version="10.0.1" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="10.0.1" />
                    
Directory.Packages.props
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" />
                    
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.Authentication.JwtBearer --version 10.0.1
                    
#r "nuget: Microsoft.AspNetCore.Authentication.JwtBearer, 10.0.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.
#:package Microsoft.AspNetCore.Authentication.JwtBearer@10.0.1
                    
#: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.Authentication.JwtBearer&version=10.0.1
                    
Install as a Cake Addin
#tool nuget:?package=Microsoft.AspNetCore.Authentication.JwtBearer&version=10.0.1
                    
Install as a Cake Tool

About

Microsoft.AspNetCore.Authentication.JwtBearer is a middleware component designed for ASP.NET Core applications. It facilitates JSON Web Token (JWT) authentication, enabling secure authentication for APIs and web services. This package allows you to validate JWT tokens issued by an authentication server, ensuring secure access to your application's resources.

Key Features

  • Seamless integration with ASP.NET Core applications.
  • Supports JSON Web Token (JWT) authentication.
  • Enables secure authentication for APIs and web services.
  • Flexible configuration options for token validation parameters.
  • Works with .NET Core 3.0 and newer, as well as .NET Standard 2.1.

How to Use

using Microsoft.AspNetCore.Authentication.JwtBearer;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.IdentityModel.Tokens;
using System.Text;

public void ConfigureServices(IServiceCollection services)
{
    services.AddAuthentication(JwtBearerDefaults.AuthenticationScheme)
        .AddJwtBearer(options =>
        {
            options.TokenValidationParameters = new TokenValidationParameters
            {
                ValidateIssuer = true,
                ValidateAudience = true,
                ValidateLifetime = true,
                ValidateIssuerSigningKey = true,
                ValidIssuer = "your_issuer",
                ValidAudience = "your_audience",
                IssuerSigningKey = new SymmetricSecurityKey(Encoding.UTF8.GetBytes("your_secret_key"))
            };
        });

    // Other configurations...
}

For more detailed configuration options and advanced scenarios, please refer to the blog JWT Validation and Authorization in ASP.NET Core.

Main Types

The main types provided by this library are:

  • JwtBearerDefaults: Contains default values for JWT Bearer authentication.
  • JwtBearerEvents: Events used to handle JWT Bearer authentication events.
  • JwtBearerHandler: Handles JWT Bearer authentication requests.
  • wtBearerOptions: Options for configuring JWT Bearer authentication.

Additional Documentation

Feedback & Contributing

Microsoft.AspNetCore.Authentication.JwtBearer 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 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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (3.3K)

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

Package Downloads
Microsoft.Identity.Web.TokenAcquisition

Implementation for higher level API for confidential client applications (ASP.NET Core and SDK/.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.

Microsoft.AspNetCore.Authentication.AzureAD.UI

ASP.NET Core Azure Active Directory Integration provides components for easily integrating Azure Active Directory authentication within your ASP.NET Core application. This package was built from the source code at https://github.com/dotnet/aspnetcore/tree/ab1f1c636afa3a6607f2d67bc387b586596d1d38

Okta.AspNetCore

Official Okta middleware for ASP.NET Core 3.1+. Easily add authentication and authorization to ASP.NET Core applications.

GitHub repositories (485)

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

Repository Stars
bitwarden/server
Bitwarden infrastructure/backend (API, database, Docker, etc).
abpframework/abp
Open-source web application framework for ASP.NET Core! Offers an opinionated architecture to build enterprise software solutions with best practices on top of the .NET. Provides the fundamental infrastructure, cross-cutting-concern implementations, startup templates, application modules, UI themes, tooling and documentation.
duplicati/duplicati
Store securely encrypted backups in the cloud!
dotnet/AspNetCore.Docs
Documentation for ASP.NET Core
dotnet-architecture/eShopOnWeb
Sample ASP.NET Core 8.0 reference application, now community supported: https://github.com/NimblePros/eShopOnWeb
dodyg/practical-aspnetcore
Practical samples of ASP.NET Core 10, 9, 8.0, 7.0, 6.0, 5.0, 3.1, 2.2, and 2.1,projects you can use. Readme contains explanations on all projects.
dotnet/eShop
A reference .NET application implementing an eCommerce site
Kareadita/Kavita
Kavita is a fast, feature rich, cross platform reading server. Built with the goal of being a full solution for all your reading needs. Setup your own server and share your reading collection with your friends and family.
ThreeMammals/Ocelot
.NET API Gateway
dotnetcore/CAP
Distributed transaction solution in micro-service base on eventually consistency, also an eventbus with Outbox pattern
EduardoPires/EquinoxProject
Web Application ASP.NET 9 using Clean Architecture, DDD, CQRS, Event Sourcing and a lot of good practices
fullstackhero/dotnet-starter-kit
Production Grade Cloud-Ready .NET 10 Starter Kit (Web API + Blazor Client) with Multitenancy Support, and Clean/Modular Architecture that saves roughly 200+ Development Hours! All Batteries Included.
FastEndpoints/FastEndpoints
A light-weight REST API development framework for ASP.NET 8 and newer.
ChilliCream/graphql-platform
Welcome to the home of the Hot Chocolate GraphQL server for .NET, the Strawberry Shake GraphQL client for .NET and Nitro the awesome Monaco based GraphQL IDE.
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
ServiceStack/ServiceStack
Thoughtfully architected, obscenely fast, thoroughly enjoyable web services for all
domaindrivendev/Swashbuckle.AspNetCore
Swagger tools for documenting API's built on ASP.NET Core
anjoy8/Blog.Core
💖 ASP.NET Core 8.0 全家桶教程,前后端分离后端接口,vue教程姊妹篇,官方文档:
dotnet/aspire
Aspire is the tool for code-first, extensible, observable dev and deploy.
dotnetcore/Util
Util是一个.Net平台下的应用框架,旨在提升中小团队的开发能力,由工具类、分层架构基类、Ui组件,配套代码生成模板,权限等组成。
Version Downloads Last Updated
10.0.1 97,381 12/9/2025
10.0.0 1,401,385 11/11/2025
10.0.0-rc.2.25502.107 67,243 10/14/2025
10.0.0-rc.1.25451.107 70,023 9/9/2025
10.0.0-preview.7.25380.108 20,250 8/12/2025
10.0.0-preview.6.25358.103 13,322 7/15/2025
10.0.0-preview.5.25277.114 16,454 6/6/2025
10.0.0-preview.4.25258.110 24,616 5/12/2025
10.0.0-preview.3.25172.1 25,123 4/10/2025
10.0.0-preview.2.25164.1 4,446 3/18/2025
10.0.0-preview.1.25120.3 6,275 2/25/2025
9.0.11 628,825 11/11/2025
9.0.10 2,519,735 10/14/2025
9.0.9 3,878,581 9/9/2025
9.0.8 3,486,561 8/5/2025
9.0.7 2,659,184 7/8/2025
9.0.6 3,509,175 6/10/2025
9.0.5 3,641,223 5/13/2025
9.0.4 3,942,398 4/8/2025
9.0.3 3,294,278 3/11/2025
9.0.2 3,589,565 2/11/2025
9.0.1 3,558,249 1/14/2025
9.0.0 16,682,497 11/12/2024
9.0.0-rc.2.24474.3 311,342 10/8/2024
9.0.0-rc.1.24452.1 133,425 9/10/2024
9.0.0-preview.7.24406.2 12,143 8/13/2024
9.0.0-preview.6.24328.4 115,136 7/9/2024
9.0.0-preview.5.24306.11 9,251 6/11/2024
9.0.0-preview.4.24267.6 16,774 5/21/2024
9.0.0-preview.3.24172.13 85,228 4/11/2024
9.0.0-preview.2.24128.4 31,627 3/12/2024
9.0.0-preview.1.24081.5 37,758 2/13/2024
8.0.22 723,855 11/11/2025
8.0.21 1,504,817 10/14/2025
8.0.20 2,149,619 9/9/2025
8.0.19 3,351,487 8/4/2025
8.0.18 2,113,068 7/8/2025
8.0.17 3,531,526 6/10/2025
8.0.16 3,232,889 5/13/2025
8.0.15 5,080,730 4/8/2025
8.0.14 4,914,096 3/11/2025
8.0.13 5,638,045 2/11/2025
8.0.12 6,070,288 1/14/2025
8.0.11 17,405,916 11/12/2024
8.0.10 19,609,772 10/8/2024
8.0.8 20,538,142 8/13/2024
8.0.7 14,075,520 7/9/2024
8.0.6 15,414,141 5/28/2024
8.0.5 5,333,512 5/14/2024
8.0.4 13,908,526 4/9/2024
8.0.3 8,812,776 3/12/2024
8.0.2 10,293,488 2/13/2024
8.0.1 11,713,275 1/9/2024
8.0.0 52,670,264 11/14/2023
8.0.0-rc.2.23480.2 707,838 10/10/2023
8.0.0-rc.1.23421.29 150,196 9/12/2023
8.0.0-preview.7.23375.9 395,168 8/8/2023
8.0.0-preview.6.23329.11 125,459 7/11/2023
8.0.0-preview.5.23302.2 12,635 6/13/2023
8.0.0-preview.4.23260.4 13,834 5/16/2023
8.0.0-preview.3.23177.8 26,931 4/11/2023
8.0.0-preview.2.23153.2 11,235 3/14/2023
8.0.0-preview.1.23112.2 62,910 2/21/2023
7.0.20 2,698,579 5/28/2024
7.0.19 245,016 5/14/2024
7.0.18 571,468 4/9/2024
7.0.17 592,491 3/12/2024
7.0.16 851,693 2/13/2024
7.0.15 1,533,073 1/9/2024
7.0.14 2,858,963 11/14/2023
7.0.13 3,010,936 10/24/2023
7.0.12 2,533,412 10/10/2023
7.0.11 4,132,334 9/12/2023
7.0.10 4,497,278 8/8/2023
7.0.9 3,258,761 7/11/2023
7.0.8 2,616,817 6/22/2023
7.0.7 1,423,739 6/13/2023
7.0.5 8,071,753 4/11/2023
7.0.4 3,920,814 3/14/2023
7.0.3 3,853,817 2/14/2023
7.0.2 5,124,306 1/10/2023
7.0.1 10,567,420 12/13/2022
7.0.0 6,191,930 11/7/2022
7.0.0-rc.2.22476.2 90,541 10/11/2022
7.0.0-rc.1.22427.2 26,682 9/14/2022
7.0.0-preview.7.22376.6 28,950 8/9/2022
7.0.0-preview.6.22330.3 410,448 7/12/2022
7.0.0-preview.5.22303.8 6,565 6/14/2022
7.0.0-preview.4.22251.1 10,693 5/10/2022
7.0.0-preview.3.22178.4 4,689 4/13/2022
7.0.0-preview.2.22153.2 4,225 3/14/2022
7.0.0-preview.1.22109.13 3,667 2/17/2022
6.0.36 2,967,656 11/12/2024
6.0.35 957,848 10/8/2024
6.0.33 2,558,382 8/13/2024
6.0.32 2,173,773 7/9/2024
6.0.31 1,554,875 5/28/2024
6.0.30 709,557 5/14/2024
6.0.29 2,202,224 4/9/2024
6.0.28 1,556,430 3/12/2024
6.0.27 2,027,691 2/13/2024
6.0.26 3,687,890 1/9/2024
6.0.25 4,338,123 11/14/2023
6.0.24 2,592,506 10/24/2023
6.0.23 1,319,755 10/10/2023
6.0.22 2,495,994 9/12/2023
6.0.21 3,342,006 8/8/2023
6.0.20 3,102,124 7/11/2023
6.0.19 2,042,333 6/22/2023
6.0.18 1,044,367 6/13/2023
6.0.16 8,566,051 4/11/2023
6.0.15 5,385,178 3/14/2023
6.0.14 5,252,087 2/14/2023
6.0.13 8,454,807 1/10/2023
6.0.12 12,850,503 12/13/2022
6.0.11 9,031,138 11/7/2022
6.0.10 13,405,371 10/11/2022
6.0.9 10,056,252 9/13/2022
6.0.8 12,488,124 8/9/2022
6.0.7 10,077,597 7/12/2022
6.0.6 8,096,228 6/14/2022
6.0.5 11,463,559 5/10/2022
6.0.4 9,157,160 4/11/2022
6.0.3 10,375,660 3/8/2022
6.0.2 8,210,553 2/8/2022
6.0.1 14,329,909 12/14/2021
6.0.0 15,449,104 11/8/2021
6.0.0-rc.2.21480.10 77,867 10/12/2021
6.0.0-rc.1.21452.15 65,077 9/14/2021
6.0.0-preview.7.21378.6 67,081 8/10/2021
6.0.0-preview.6.21355.2 20,406 7/14/2021
6.0.0-preview.5.21301.17 12,153 6/15/2021
6.0.0-preview.4.21253.5 10,374 5/24/2021
6.0.0-preview.3.21201.13 14,225 4/8/2021
6.0.0-preview.2.21154.6 4,316 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 7,012 2/12/2021 6.0.0-preview.1.21103.6 is deprecated because it is no longer maintained.
5.0.17 3,321,206 5/10/2022 5.0.17 is deprecated because it is no longer maintained.
5.0.16 748,449 4/11/2022 5.0.16 is deprecated because it is no longer maintained.
5.0.15 1,318,644 3/8/2022 5.0.15 is deprecated because it is no longer maintained.
5.0.14 1,088,368 2/8/2022 5.0.14 is deprecated because it is no longer maintained.
5.0.13 2,753,729 12/14/2021 5.0.13 is deprecated because it is no longer maintained.
5.0.12 23,070,648 11/7/2021 5.0.12 is deprecated because it is no longer maintained.
5.0.11 4,158,563 10/12/2021 5.0.11 is deprecated because it is no longer maintained.
5.0.10 4,217,270 9/14/2021 5.0.10 is deprecated because it is no longer maintained.
5.0.9 8,059,852 8/10/2021 5.0.9 is deprecated because it is no longer maintained.
5.0.8 3,060,491 7/13/2021 5.0.8 is deprecated because it is no longer maintained; 5.0.8 has at least one vulnerability with moderate severity.
5.0.7 4,461,149 6/8/2021 5.0.7 is deprecated because it is no longer maintained; 5.0.7 has at least one vulnerability with moderate severity.
5.0.6 3,174,054 5/11/2021 5.0.6 is deprecated because it is no longer maintained; 5.0.6 has at least one vulnerability with moderate severity.
5.0.5 4,473,035 4/6/2021 5.0.5 is deprecated because it is no longer maintained; 5.0.5 has at least one vulnerability with moderate severity.
5.0.4 3,149,381 3/9/2021 5.0.4 is deprecated because it is no longer maintained; 5.0.4 has at least one vulnerability with moderate severity.
5.0.3 3,304,939 2/9/2021 5.0.3 is deprecated because it is no longer maintained; 5.0.3 has at least one vulnerability with moderate severity.
5.0.2 3,020,081 1/12/2021 5.0.2 is deprecated because it is no longer maintained; 5.0.2 has at least one vulnerability with moderate severity.
5.0.1 3,413,076 12/8/2020 5.0.1 is deprecated because it is no longer maintained; 5.0.1 has at least one vulnerability with moderate severity.
5.0.0 12,678,243 11/9/2020 5.0.0 is deprecated because it is no longer maintained; 5.0.0 has at least one vulnerability with moderate severity.
5.0.0-rc.2.20475.17 113,694 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 377,604 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 4,825,652 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 17,179 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 21,926 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 3,896 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 4,722 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 4,821 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 3,879 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,967 3/16/2020 5.0.0-preview.1.20124.5 is deprecated because it is no longer maintained.
3.1.32 3,395,860 12/13/2022
3.1.31 371,602 11/8/2022
3.1.30 291,515 10/11/2022
3.1.29 345,287 9/13/2022
3.1.28 2,739,316 8/9/2022
3.1.27 457,215 7/12/2022
3.1.26 441,375 6/14/2022
3.1.25 754,909 5/10/2022
3.1.24 578,326 4/11/2022
3.1.23 2,452,190 3/8/2022
3.1.22 3,542,287 12/14/2021
3.1.21 2,383,302 11/7/2021
3.1.20 1,124,678 10/11/2021
3.1.19 1,349,809 9/14/2021
3.1.18 9,179,232 8/10/2021
3.1.17 1,210,378 7/13/2021 3.1.17 has at least one vulnerability with moderate severity.
3.1.16 2,337,765 6/8/2021 3.1.16 has at least one vulnerability with moderate severity.
3.1.15 1,725,118 5/11/2021 3.1.15 has at least one vulnerability with moderate severity.
3.1.14 2,216,941 4/6/2021 3.1.14 has at least one vulnerability with moderate severity.
3.1.13 2,493,480 3/9/2021 3.1.13 has at least one vulnerability with moderate severity.
3.1.12 2,273,514 2/9/2021 3.1.12 has at least one vulnerability with moderate severity.
3.1.11 3,615,010 1/12/2021 3.1.11 has at least one vulnerability with moderate severity.
3.1.10 5,855,519 11/9/2020 3.1.10 has at least one vulnerability with moderate severity.
3.1.9 6,541,454 10/13/2020 3.1.9 has at least one vulnerability with moderate severity.
3.1.8 11,020,606 9/8/2020 3.1.8 has at least one vulnerability with moderate severity.
3.1.7 4,943,118 8/11/2020 3.1.7 has at least one vulnerability with moderate severity.
3.1.6 5,888,595 7/14/2020 3.1.6 has at least one vulnerability with moderate severity.
3.1.5 8,289,519 6/9/2020 3.1.5 has at least one vulnerability with moderate severity.
3.1.4 7,597,215 5/12/2020 3.1.4 has at least one vulnerability with moderate severity.
3.1.3 10,237,661 3/24/2020 3.1.3 has at least one vulnerability with moderate severity.
3.1.2 7,428,673 2/18/2020 3.1.2 has at least one vulnerability with moderate severity.
3.1.1 10,045,214 1/14/2020 3.1.1 has at least one vulnerability with moderate severity.
3.1.0 7,670,064 12/3/2019 3.1.0 has at least one vulnerability with moderate severity.
3.1.0-preview3.19555.2 14,342 11/13/2019 3.1.0-preview3.19555.2 is deprecated because it is no longer maintained; 3.1.0-preview3.19555.2 has at least one vulnerability with moderate severity.
3.1.0-preview2.19528.8 3,898 11/1/2019 3.1.0-preview2.19528.8 is deprecated because it is no longer maintained; 3.1.0-preview2.19528.8 has at least one vulnerability with moderate severity.
3.1.0-preview1.19508.20 7,894 10/15/2019 3.1.0-preview1.19508.20 is deprecated because it is no longer maintained; 3.1.0-preview1.19508.20 has at least one vulnerability with moderate severity.
3.0.3 757,087 2/18/2020 3.0.3 is deprecated because it is no longer maintained; 3.0.3 has at least one vulnerability with moderate severity.
3.0.2 353,448 1/14/2020 3.0.2 is deprecated because it is no longer maintained; 3.0.2 has at least one vulnerability with moderate severity.
3.0.0 45,838,883 9/23/2019 3.0.0 is deprecated because it is no longer maintained; 3.0.0 has at least one vulnerability with moderate severity.
3.0.0-rc1.19457.4 25,576 9/16/2019 3.0.0-rc1.19457.4 is deprecated because it is no longer maintained.
3.0.0-preview9.19424.4 166,171 9/4/2019 3.0.0-preview9.19424.4 is deprecated because it is no longer maintained.
3.0.0-preview8.19405.7 28,343 8/13/2019 3.0.0-preview8.19405.7 is deprecated because it is no longer maintained.
3.0.0-preview7.19365.7 40,623 7/23/2019 3.0.0-preview7.19365.7 is deprecated because it is no longer maintained.
3.0.0-preview6.19307.2 37,413 6/12/2019 3.0.0-preview6.19307.2 is deprecated because it is no longer maintained.
3.0.0-preview5-19227-01 25,069 5/6/2019 3.0.0-preview5-19227-01 is deprecated because it is no longer maintained.
3.0.0-preview4-19216-03 7,496 4/18/2019 3.0.0-preview4-19216-03 is deprecated because it is no longer maintained.
3.0.0-preview3-19153-02 8,256 3/6/2019 3.0.0-preview3-19153-02 is deprecated because it is no longer maintained.
3.0.0-preview-19075-0444 13,061 1/29/2019 3.0.0-preview-19075-0444 is deprecated because it is no longer maintained.
2.3.0 196,777 1/14/2025
2.2.0 32,036,408 12/3/2018 2.2.0 is deprecated because it is no longer maintained.
2.2.0-preview3-35497 72,677 10/17/2018 2.2.0-preview3-35497 is deprecated because it is no longer maintained.
2.2.0-preview2-35157 39,452 9/12/2018 2.2.0-preview2-35157 is deprecated because it is no longer maintained.
2.2.0-preview1-35029 9,882 8/22/2018 2.2.0-preview1-35029 is deprecated because it is no longer maintained.
2.1.30 1,761,057 8/19/2021
2.1.2 18,139,928 8/21/2018 2.1.2 has at least one vulnerability with moderate severity.
2.1.1 14,141,214 6/18/2018 2.1.1 has at least one vulnerability with moderate severity.
2.1.0 16,106,808 5/29/2018 2.1.0 has at least one vulnerability with moderate severity.
2.1.0-rc1-final 44,010 5/6/2018 2.1.0-rc1-final is deprecated because it is no longer maintained.
2.1.0-preview2-final 41,386 4/10/2018 2.1.0-preview2-final is deprecated because it is no longer maintained.
2.1.0-preview1-final 55,549 2/26/2018 2.1.0-preview1-final is deprecated because it is no longer maintained.
2.0.4 4,904,132 5/7/2018 2.0.4 is deprecated because it is no longer maintained.
2.0.3 4,410,390 3/13/2018 2.0.3 is deprecated because it is no longer maintained.
2.0.1 7,981,455 11/14/2017 2.0.1 is deprecated because it is no longer maintained.
2.0.0 12,743,313 8/11/2017 2.0.0 is deprecated because it is no longer maintained.
2.0.0-preview2-final 58,106 6/27/2017 2.0.0-preview2-final is deprecated because it is no longer maintained.
2.0.0-preview1-final 18,838 5/10/2017 2.0.0-preview1-final is deprecated because it is no longer maintained.
1.1.3 593,604 9/20/2017 1.1.3 is deprecated because it is no longer maintained.
1.1.2 1,352,634 5/9/2017 1.1.2 is deprecated because it is no longer maintained.
1.1.1 547,606 3/6/2017 1.1.1 is deprecated because it is no longer maintained.
1.1.0 460,680 11/16/2016 1.1.0 is deprecated because it is no longer maintained.
1.1.0-preview1-final 7,394 10/24/2016 1.1.0-preview1-final is deprecated because it is no longer maintained.
1.0.5 68,905 11/14/2017 1.0.5 is deprecated because it is no longer maintained.
1.0.4 62,718 9/20/2017 1.0.4 is deprecated because it is no longer maintained.
1.0.3 75,166 5/9/2017 1.0.3 is deprecated because it is no longer maintained.
1.0.2 175,121 3/6/2017 1.0.2 is deprecated because it is no longer maintained.
1.0.1 77,827 12/12/2016 1.0.1 is deprecated because it is no longer maintained.
1.0.0 1,122,869 6/27/2016 1.0.0 is deprecated because it is no longer maintained.
1.0.0-rc2-final 20,373 5/16/2016 1.0.0-rc2-final is deprecated because it is no longer maintained.