Microsoft.AspNetCore.Identity.EntityFrameworkCore
                               
                            
                                10.0.0-rc.2.25502.107
                            
                        
                            
                                
                                
                                    Prefix Reserved
                                
                            
                    dotnet add package Microsoft.AspNetCore.Identity.EntityFrameworkCore --version 10.0.0-rc.2.25502.107
NuGet\Install-Package Microsoft.AspNetCore.Identity.EntityFrameworkCore -Version 10.0.0-rc.2.25502.107
<PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="10.0.0-rc.2.25502.107" />
<PackageVersion Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="10.0.0-rc.2.25502.107" />
<PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" />
paket add Microsoft.AspNetCore.Identity.EntityFrameworkCore --version 10.0.0-rc.2.25502.107
#r "nuget: Microsoft.AspNetCore.Identity.EntityFrameworkCore, 10.0.0-rc.2.25502.107"
#:package Microsoft.AspNetCore.Identity.EntityFrameworkCore@10.0.0-rc.2.25502.107
#addin nuget:?package=Microsoft.AspNetCore.Identity.EntityFrameworkCore&version=10.0.0-rc.2.25502.107&prerelease
#tool nuget:?package=Microsoft.AspNetCore.Identity.EntityFrameworkCore&version=10.0.0-rc.2.25502.107&prerelease
About
Microsoft.AspNetCore.Identity.EntityFrameworkCore utilizes Entity Framework Core to provide functionality enabling the storage of user, role, and other identity-related data in a database.
Key Features
- Provides user and role management
 - Enables secure authentication and authorization mechanisms
 - Allows storage and validatation of user passwords using hashing
 - Tracks email confirmation for user account validation
 - Tracks two-factor authentication to provide an extra layer of security
 - Tracks failed login attempts to help protect against brute-force attacks enabling locking out user accounts after multiple failed login attempts
 - Uses claims to define fine-grained access control policies
 - Seamlessly integrates with Entity Framework Core for data storage and retrieval
 
How to Use
To use Microsoft.AspNetCore.Identity.EntityFrameworkCore, follow these steps:
Installation
dotnet add package Microsoft.AspNetCore.Identity.EntityFrameworkCore
Configuration
Add the following code to the Program.cs of your ASP.NET Core app:
builder.Services.AddDbContext<ApplicationDbContext>(options =>
    options.UseSqlServer(builder.Configuration.GetConnectionString("DefaultConnection")));
builder.Services.AddDefaultIdentity<ApplicationUser>()
    .AddEntityFrameworkStores<ApplicationDbContext>();
You can replace ApplicationDbContext with your own database context class derived from IdentityDbContext and ApplicationUser with your own user class containing additional properties derived from IdentityUser.
Make sure to configure the connection string via "ConnectionStrings:DefaultConnection" (or whatever you rename it to) so it can connect to your database.
Main Types
The main types provided by Microsoft.AspNetCore.Identity.EntityFrameworkCore include:
IdentityDbContext: Provides the database context for storing and managing user, role, and other identity-related dataIdentityUserContext: Provides methods and properties for querying and manipulating user informationRoleStore: Provides methods for creating, updating, and deleting roles, as well as querying and managing role-related dataUserStore: Provides methods for creating, updating, and deleting users, as well as querying and managing user-related dataUserOnlyStore: Provides methods for creating, updating, and deleting users, as well as querying and managing user-related data for users without roles
Additional Documentation
For additional documentation and examples, refer to the official documentation on ASP.NET Core Identity.
Feedback & Contributing
Microsoft.AspNetCore.Identity.EntityFrameworkCore is released as open-source under the MIT license. Bug reports and contributions are welcome at the GitHub repository.
| Product | Versions 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. | 
- 
                                                    
net10.0
- Microsoft.EntityFrameworkCore.Relational (>= 10.0.0-rc.2.25502.107)
 - Microsoft.Extensions.Identity.Stores (>= 10.0.0-rc.2.25502.107)
 
 
NuGet packages (1.1K)
Showing the top 5 NuGet packages that depend on Microsoft.AspNetCore.Identity.EntityFrameworkCore:
| Package | Downloads | 
|---|---|
| 
                                                        
                                                            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.ApiAuthorization.IdentityServer
                                                        
                                                            
                                                         ASP.NET Core API Authorization package powered by Identity Server. This package was built from the source code at https://github.com/dotnet/aspnetcore/tree/fb4b5a21ebd67b31fff4ddf5c039181da504c932  | 
                                                    |
| 
                                                        
                                                            Microting.eFormApi.BasePn
                                                        
                                                            
                                                         Package Description  | 
                                                    |
| 
                                                        
                                                            Finbuckle.MultiTenant.EntityFrameworkCore
                                                        
                                                            
                                                         Entity Framework Core support for Finbuckle.MultiTenant.  | 
                                                    
GitHub repositories (323)
Showing the top 20 popular GitHub repositories that depend on Microsoft.AspNetCore.Identity.EntityFrameworkCore:
| Repository | Stars | 
|---|---|
| 
                                                        
                                                            dotnet/maui
                                                        
                                                         
                                                            .NET MAUI is the .NET Multi-platform App UI, a framework for building native device applications spanning mobile, tablet, and desktop.
                                                         
                                                     | 
                                                    |
| 
                                                        
                                                            dotnet/efcore
                                                        
                                                         
                                                            EF Core is a modern object-database mapper for .NET. It supports LINQ queries, change tracking, updates, and schema migrations.
                                                         
                                                     | 
                                                    |
| 
                                                        
                                                            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 RC 2, 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.
                                                         
                                                     | 
                                                    |
| 
                                                        
                                                            btcpayserver/btcpayserver
                                                        
                                                         
                                                            Accept Bitcoin payments. Free, open-source & self-hosted, Bitcoin payment processor. 
                                                         
                                                     | 
                                                    |
| 
                                                        
                                                            EduardoPires/EquinoxProject
                                                        
                                                         
                                                            Web Application ASP.NET 9 using Clean Architecture, DDD, CQRS, Event Sourcing and a lot of good practices
                                                         
                                                     | 
                                                    |
| 
                                                        
                                                            ant-design-blazor/ant-design-blazor
                                                        
                                                         
                                                            🌈A rich set of enterprise-class UI components based on Ant Design and Blazor.
                                                         
                                                     | 
                                                    |
| 
                                                        
                                                            ServiceStack/ServiceStack
                                                        
                                                         
                                                            Thoughtfully architected, obscenely fast, thoroughly enjoyable web services for all
                                                         
                                                     | 
                                                    |
| 
                                                        
                                                            jasontaylordev/NorthwindTraders
                                                        
                                                         
                                                            Northwind Traders is a sample application built using ASP.NET Core and Entity Framework Core.
                                                         
                                                     | 
                                                    |
| 
                                                        
                                                            openiddict/openiddict-core
                                                        
                                                         
                                                            Flexible and versatile OAuth 2.0/OpenID Connect stack for .NET
                                                         
                                                     | 
                                                    |
| 
                                                        
                                                            immense/Remotely
                                                        
                                                         
                                                            A remote control and remote scripting solution, built with .NET 8, Blazor, and SignalR.
                                                         
                                                     | 
                                                    |
| 
                                                        
                                                            microsoft/fluentui-blazor
                                                        
                                                         
                                                            Microsoft Fluent UI Blazor components library. For use with ASP.NET Core Blazor applications
                                                         
                                                     | 
                                                    |
| 
                                                        
                                                            cobbr/Covenant
                                                        
                                                         
                                                            Covenant is a collaborative .NET C2 framework for red teamers.
                                                         
                                                     | 
                                                    |
| 
                                                        
                                                            simplcommerce/SimplCommerce
                                                        
                                                         
                                                            A simple, cross platform, modulith ecommerce system built on .NET
                                                         
                                                     | 
                                                    |
| 
                                                        
                                                            Ombi-app/Ombi
                                                        
                                                         
                                                            Want a Movie or TV Show on Plex/Emby/Jellyfin? Use Ombi!
                                                         
                                                     | 
                                                    |
| 
                                                        
                                                            skoruba/IdentityServer4.Admin
                                                        
                                                         
                                                            The administration for the IdentityServer4 and Asp.Net Core Identity
                                                         
                                                     | 
                                                    |
| 
                                                        
                                                            fullstackhero/blazor-starter-kit
                                                        
                                                         
                                                            Clean Architecture Template for Blazor WebAssembly Built with MudBlazor Components.
                                                         
                                                     | 
                                                    
| Version | Downloads | Last Updated | |
|---|---|---|---|
| 10.0.0-rc.2.25502.107 | 12,867 | 10/14/2025 | |
| 10.0.0-rc.1.25451.107 | 45,962 | 9/9/2025 | |
| 10.0.0-preview.7.25380.108 | 24,774 | 8/12/2025 | |
| 10.0.0-preview.6.25358.103 | 4,171 | 7/15/2025 | |
| 10.0.0-preview.5.25277.114 | 4,650 | 6/6/2025 | |
| 10.0.0-preview.4.25258.110 | 3,065 | 5/12/2025 | |
| 10.0.0-preview.3.25172.1 | 3,288 | 4/10/2025 | |
| 10.0.0-preview.2.25164.1 | 61,873 | 3/18/2025 | |
| 10.0.0-preview.1.25120.3 | 2,740 | 2/25/2025 | |
| 9.0.10 | 182,050 | 10/14/2025 | |
| 9.0.9 | 519,485 | 9/9/2025 | |
| 9.0.8 | 668,975 | 8/5/2025 | |
| 9.0.7 | 458,696 | 7/8/2025 | |
| 9.0.6 | 540,992 | 6/10/2025 | |
| 9.0.5 | 697,947 | 5/13/2025 | |
| 9.0.4 | 824,440 | 4/8/2025 | |
| 9.0.3 | 882,980 | 3/11/2025 | |
| 9.0.2 | 854,465 | 2/11/2025 | |
| 9.0.1 | 721,035 | 1/14/2025 | |
| 9.0.0 | 1,798,286 | 11/12/2024 | |
| 9.0.0-rc.2.24474.3 | 29,250 | 10/8/2024 | |
| 9.0.0-rc.1.24452.1 | 9,059 | 9/10/2024 | |
| 9.0.0-preview.7.24406.2 | 39,677 | 8/13/2024 | |
| 9.0.0-preview.6.24328.4 | 100,131 | 7/9/2024 | |
| 9.0.0-preview.5.24306.11 | 3,687 | 6/11/2024 | |
| 9.0.0-preview.4.24267.6 | 4,118 | 5/21/2024 | |
| 9.0.0-preview.3.24172.13 | 73,950 | 4/11/2024 | |
| 9.0.0-preview.2.24128.4 | 4,485 | 3/12/2024 | |
| 9.0.0-preview.1.24081.5 | 27,506 | 2/13/2024 | |
| 8.0.21 | 82,493 | 10/14/2025 | |
| 8.0.20 | 193,203 | 9/9/2025 | |
| 8.0.19 | 281,655 | 8/4/2025 | |
| 8.0.18 | 263,484 | 7/8/2025 | |
| 8.0.17 | 408,120 | 6/10/2025 | |
| 8.0.16 | 411,426 | 5/13/2025 | |
| 8.0.15 | 652,907 | 4/8/2025 | |
| 8.0.14 | 1,287,756 | 3/11/2025 | |
| 8.0.13 | 655,435 | 2/11/2025 | |
| 8.0.12 | 1,058,054 | 1/14/2025 | |
| 8.0.11 | 2,701,767 | 11/12/2024 | |
| 8.0.10 | 3,340,017 | 10/8/2024 | |
| 8.0.8 | 3,673,848 | 8/13/2024 | |
| 8.0.7 | 2,451,756 | 7/9/2024 | |
| 8.0.6 | 2,765,428 | 5/28/2024 | |
| 8.0.5 | 1,276,882 | 5/14/2024 | |
| 8.0.4 | 2,627,984 | 4/9/2024 | |
| 8.0.3 | 1,976,461 | 3/12/2024 | |
| 8.0.2 | 2,393,948 | 2/13/2024 | |
| 8.0.1 | 2,071,513 | 1/9/2024 | |
| 8.0.0 | 4,511,823 | 11/14/2023 | |
| 8.0.0-rc.2.23480.2 | 53,614 | 10/10/2023 | |
| 8.0.0-rc.1.23421.29 | 25,738 | 9/12/2023 | |
| 8.0.0-preview.7.23375.9 | 59,220 | 8/8/2023 | |
| 8.0.0-preview.6.23329.11 | 83,185 | 7/11/2023 | |
| 8.0.0-preview.5.23302.2 | 9,506 | 6/13/2023 | |
| 8.0.0-preview.4.23260.4 | 7,537 | 5/16/2023 | |
| 8.0.0-preview.3.23177.8 | 13,929 | 4/11/2023 | |
| 8.0.0-preview.2.23153.2 | 95,216 | 3/14/2023 | |
| 8.0.0-preview.1.23112.2 | 60,522 | 2/21/2023 | |
| 7.0.20 | 616,032 | 5/28/2024 | |
| 7.0.19 | 48,930 | 5/14/2024 | |
| 7.0.18 | 107,100 | 4/9/2024 | |
| 7.0.17 | 347,512 | 3/12/2024 | |
| 7.0.16 | 219,871 | 2/13/2024 | |
| 7.0.15 | 391,150 | 1/9/2024 | |
| 7.0.14 | 537,033 | 11/14/2023 | |
| 7.0.13 | 795,865 | 10/24/2023 | |
| 7.0.12 | 502,789 | 10/10/2023 | |
| 7.0.11 | 893,969 | 9/12/2023 | |
| 7.0.10 | 989,336 | 8/8/2023 | |
| 7.0.9 | 860,460 | 7/11/2023 | |
| 7.0.8 | 498,881 | 6/22/2023 | |
| 7.0.7 | 289,381 | 6/13/2023 | |
| 7.0.5 | 2,848,174 | 4/11/2023 | |
| 7.0.4 | 959,761 | 3/14/2023 | |
| 7.0.3 | 1,091,247 | 2/14/2023 | |
| 7.0.2 | 1,560,319 | 1/10/2023 | |
| 7.0.1 | 592,243 | 12/13/2022 | |
| 7.0.0 | 1,530,015 | 11/7/2022 | |
| 7.0.0-rc.2.22476.2 | 43,712 | 10/11/2022 | |
| 7.0.0-rc.1.22427.2 | 74,412 | 9/14/2022 | |
| 7.0.0-preview.7.22376.6 | 9,894 | 8/9/2022 | |
| 7.0.0-preview.6.22330.3 | 4,165 | 7/12/2022 | |
| 7.0.0-preview.5.22303.8 | 7,955 | 6/14/2022 | |
| 7.0.0-preview.4.22251.1 | 7,116 | 5/10/2022 | |
| 7.0.0-preview.3.22178.4 | 4,304 | 4/13/2022 | |
| 7.0.0-preview.2.22153.2 | 2,563 | 3/14/2022 | |
| 7.0.0-preview.1.22109.13 | 2,538 | 2/17/2022 | |
| 6.0.36 | 243,168 | 11/12/2024 | |
| 6.0.35 | 108,867 | 10/8/2024 | |
| 6.0.33 | 1,112,278 | 8/13/2024 | |
| 6.0.32 | 104,621 | 7/9/2024 | |
| 6.0.31 | 113,132 | 5/28/2024 | |
| 6.0.30 | 83,337 | 5/14/2024 | |
| 6.0.29 | 312,611 | 4/9/2024 | |
| 6.0.28 | 305,889 | 3/12/2024 | |
| 6.0.27 | 218,329 | 2/13/2024 | |
| 6.0.26 | 424,329 | 1/9/2024 | |
| 6.0.25 | 518,826 | 11/14/2023 | |
| 6.0.24 | 285,066 | 10/24/2023 | |
| 6.0.23 | 217,855 | 10/10/2023 | |
| 6.0.22 | 434,220 | 9/12/2023 | |
| 6.0.21 | 544,078 | 8/8/2023 | |
| 6.0.20 | 457,715 | 7/11/2023 | |
| 6.0.19 | 314,414 | 6/22/2023 | |
| 6.0.18 | 322,329 | 6/13/2023 | |
| 6.0.16 | 1,453,858 | 4/11/2023 | |
| 6.0.15 | 625,474 | 3/14/2023 | |
| 6.0.14 | 802,108 | 2/14/2023 | |
| 6.0.13 | 1,186,991 | 1/10/2023 | |
| 6.0.12 | 812,123 | 12/13/2022 | |
| 6.0.11 | 1,450,227 | 11/7/2022 | |
| 6.0.10 | 2,206,630 | 10/11/2022 | |
| 6.0.9 | 2,158,101 | 9/13/2022 | |
| 6.0.8 | 2,677,844 | 8/9/2022 | |
| 6.0.7 | 2,633,234 | 7/12/2022 | |
| 6.0.6 | 1,686,998 | 6/14/2022 | |
| 6.0.5 | 2,888,059 | 5/10/2022 | |
| 6.0.4 | 2,048,679 | 4/11/2022 | |
| 6.0.3 | 2,265,046 | 3/8/2022 | |
| 6.0.2 | 2,641,313 | 2/8/2022 | |
| 6.0.1 | 3,214,862 | 12/14/2021 | |
| 6.0.0 | 6,721,158 | 11/8/2021 | |
| 6.0.0-rc.2.21480.10 | 37,966 | 10/12/2021 | |
| 6.0.0-rc.1.21452.15 | 36,959 | 9/14/2021 | |
| 6.0.0-preview.7.21378.6 | 24,034 | 8/10/2021 | |
| 6.0.0-preview.6.21355.2 | 11,507 | 7/14/2021 | |
| 6.0.0-preview.5.21301.17 | 13,476 | 6/15/2021 | |
| 6.0.0-preview.4.21253.5 | 7,215 | 5/24/2021 | |
| 6.0.0-preview.3.21201.13 | 20,872 | 4/8/2021 | |
| 6.0.0-preview.2.21154.6 | 6,637 | 3/11/2021 | |
| 6.0.0-preview.1.21103.6 | 13,094 | 2/12/2021 | |
| 5.0.17 | 1,028,311 | 5/10/2022 | |
| 5.0.16 | 146,059 | 4/11/2022 | |
| 5.0.15 | 318,757 | 3/8/2022 | |
| 5.0.14 | 216,428 | 2/8/2022 | |
| 5.0.13 | 422,813 | 12/14/2021 | |
| 5.0.12 | 525,256 | 11/7/2021 | |
| 5.0.11 | 1,186,904 | 10/12/2021 | |
| 5.0.10 | 1,326,512 | 9/14/2021 | |
| 5.0.9 | 1,318,912 | 8/10/2021 | |
| 5.0.8 | 1,225,540 | 7/13/2021 | |
| 5.0.7 | 1,624,785 | 6/8/2021 | |
| 5.0.6 | 1,266,015 | 5/11/2021 | |
| 5.0.5 | 1,534,684 | 4/6/2021 | |
| 5.0.4 | 1,354,698 | 3/9/2021 | |
| 5.0.3 | 1,109,542 | 2/9/2021 | |
| 5.0.2 | 986,504 | 1/12/2021 | |
| 5.0.1 | 1,089,033 | 12/8/2020 | |
| 5.0.0 | 1,930,708 | 11/9/2020 | |
| 5.0.0-rc.2.20475.17 | 24,975 | 10/13/2020 | |
| 5.0.0-rc.1.20451.17 | 21,074 | 9/14/2020 | |
| 5.0.0-preview.8.20414.8 | 19,176 | 8/25/2020 | |
| 5.0.0-preview.7.20365.19 | 11,461 | 7/21/2020 | |
| 5.0.0-preview.6.20312.15 | 9,100 | 6/25/2020 | |
| 5.0.0-preview.5.20279.2 | 2,910 | 6/10/2020 | |
| 5.0.0-preview.4.20257.10 | 4,051 | 5/18/2020 | |
| 5.0.0-preview.3.20215.14 | 5,664 | 4/23/2020 | |
| 5.0.0-preview.2.20167.3 | 4,715 | 4/2/2020 | |
| 5.0.0-preview.1.20124.5 | 7,294 | 3/16/2020 | |
| 3.1.32 | 291,942 | 12/13/2022 | |
| 3.1.31 | 36,529 | 11/8/2022 | |
| 3.1.30 | 42,805 | 10/11/2022 | |
| 3.1.29 | 37,447 | 9/13/2022 | |
| 3.1.28 | 59,218 | 8/9/2022 | |
| 3.1.27 | 53,725 | 7/12/2022 | |
| 3.1.26 | 48,196 | 6/14/2022 | |
| 3.1.25 | 93,324 | 5/10/2022 | |
| 3.1.24 | 75,862 | 4/11/2022 | |
| 3.1.23 | 160,104 | 3/8/2022 | |
| 3.1.22 | 417,741 | 12/14/2021 | |
| 3.1.21 | 360,392 | 11/7/2021 | |
| 3.1.20 | 237,186 | 10/11/2021 | |
| 3.1.19 | 150,660 | 9/14/2021 | |
| 3.1.18 | 315,557 | 8/10/2021 | |
| 3.1.17 | 189,544 | 7/13/2021 | |
| 3.1.16 | 234,756 | 6/8/2021 | |
| 3.1.15 | 302,210 | 5/11/2021 | |
| 3.1.14 | 278,609 | 4/6/2021 | |
| 3.1.13 | 441,488 | 3/9/2021 | |
| 3.1.12 | 543,555 | 2/9/2021 | |
| 3.1.11 | 621,725 | 1/12/2021 | |
| 3.1.10 | 1,236,876 | 11/9/2020 | |
| 3.1.9 | 1,642,469 | 10/13/2020 | |
| 3.1.8 | 3,059,965 | 9/8/2020 | |
| 3.1.7 | 1,495,459 | 8/11/2020 | |
| 3.1.6 | 1,529,090 | 7/14/2020 | |
| 3.1.5 | 1,761,267 | 6/9/2020 | |
| 3.1.4 | 1,248,541 | 5/12/2020 | |
| 3.1.3 | 2,516,199 | 3/24/2020 | |
| 3.1.2 | 2,009,444 | 2/18/2020 | |
| 3.1.1 | 1,971,892 | 1/14/2020 | |
| 3.1.0 | 2,412,984 | 12/3/2019 | |
| 3.1.0-preview3.19555.2 | 12,805 | 11/13/2019 | |
| 3.1.0-preview2.19528.8 | 7,609 | 11/1/2019 | |
| 3.1.0-preview1.19508.20 | 10,088 | 10/15/2019 | |
| 3.0.3 | 64,566 | 2/18/2020 | |
| 3.0.2 | 17,214 | 1/14/2020 | |
| 3.0.0 | 2,205,305 | 9/23/2019 | |
| 3.0.0-rc1.19457.4 | 22,513 | 9/16/2019 | |
| 3.0.0-preview9.19424.4 | 21,564 | 9/4/2019 | |
| 3.0.0-preview8.19405.7 | 14,614 | 8/13/2019 | |
| 3.0.0-preview7.19365.7 | 33,239 | 7/23/2019 | |
| 3.0.0-preview6.19307.2 | 16,873 | 6/12/2019 | |
| 3.0.0-preview5-19227-01 | 11,986 | 5/6/2019 | |
| 3.0.0-preview4-19216-03 | 3,898 | 4/18/2019 | |
| 3.0.0-preview3-19153-02 | 7,059 | 3/6/2019 | |
| 3.0.0-preview-19075-0444 | 2,870 | 1/29/2019 | |
| 3.0.0-preview-18579-0056 | 3,379 | 12/3/2018 | |
| 2.3.0 | 10,416 | 1/14/2025 | |
| 2.2.0 | 17,546,798 | 12/3/2018 | |
| 2.2.0-preview3-35497 | 72,271 | 10/17/2018 | |
| 2.2.0-preview2-35157 | 38,644 | 9/12/2018 | |
| 2.2.0-preview1-35029 | 5,611 | 8/22/2018 | |
| 2.1.6 | 6,945,265 | 11/13/2018 | |
| 2.1.3 | 8,067,135 | 8/21/2018 | |
| 2.1.2 | 3,468,265 | 7/10/2018 | |
| 2.1.1 | 11,385,306 | 6/18/2018 | |
| 2.1.0 | 3,794,209 | 5/29/2018 | |
| 2.1.0-rc1-final | 26,863 | 5/6/2018 | |
| 2.1.0-preview2-final | 26,872 | 4/10/2018 | |
| 2.1.0-preview1-final | 43,033 | 2/26/2018 | |
| 2.0.4 | 2,496,643 | 7/10/2018 | |
| 2.0.3 | 2,439,806 | 5/7/2018 | |
| 2.0.2 | 3,728,344 | 3/13/2018 | |
| 2.0.1 | 5,704,602 | 11/14/2017 | |
| 2.0.0 | 6,987,691 | 8/11/2017 | |
| 2.0.0-preview2-final | 57,664 | 6/27/2017 | |
| 2.0.0-preview1-final | 28,760 | 5/10/2017 | |
| 1.1.6 | 23,562 | 7/10/2018 | |
| 1.1.5 | 25,993 | 12/12/2017 | |
| 1.1.4 | 9,499 | 11/14/2017 | |
| 1.1.3 | 28,242 | 9/20/2017 | |
| 1.1.2 | 325,000 | 5/9/2017 | |
| 1.1.1 | 204,266 | 3/6/2017 | |
| 1.1.0 | 266,120 | 11/16/2016 | |
| 1.1.0-preview1-final | 10,066 | 10/24/2016 | |
| 1.0.6 | 5,952 | 7/10/2018 | |
| 1.0.5 | 6,685 | 11/14/2017 | |
| 1.0.4 | 9,317 | 9/20/2017 | |
| 1.0.3 | 8,576 | 5/9/2017 | |
| 1.0.2 | 225,507 | 3/6/2017 | |
| 1.0.1 | 29,616 | 12/12/2016 | |
| 1.0.0 | 390,216 | 6/27/2016 | |
| 1.0.0-rc2-final | 37,078 | 5/16/2016 |