Microsoft.Extensions.Hosting
                              
                            
                                9.0.10
                            
                        
                            
                                
                                
                                    Prefix Reserved
                                
                            
                    See the version list below for details.
dotnet add package Microsoft.Extensions.Hosting --version 9.0.10
NuGet\Install-Package Microsoft.Extensions.Hosting -Version 9.0.10
<PackageReference Include="Microsoft.Extensions.Hosting" Version="9.0.10" />
<PackageVersion Include="Microsoft.Extensions.Hosting" Version="9.0.10" />
<PackageReference Include="Microsoft.Extensions.Hosting" />
paket add Microsoft.Extensions.Hosting --version 9.0.10
#r "nuget: Microsoft.Extensions.Hosting, 9.0.10"
#:package Microsoft.Extensions.Hosting@9.0.10
#addin nuget:?package=Microsoft.Extensions.Hosting&version=9.0.10
#tool nuget:?package=Microsoft.Extensions.Hosting&version=9.0.10
About
Contains the .NET Generic Host HostBuilder which layers on the Microsoft.Extensions.Hosting.Abstractions package.
Key Features
- Contains the .NET Generic Host 
HostBuilder. 
How to Use
For a console app project:
    using (IHost host = new HostBuilder().Build())
    {
        var lifetime = host.Services.GetRequiredService<IHostApplicationLifetime>();
    
        lifetime.ApplicationStarted.Register(() =>
        {
            Console.WriteLine("Started");
        });
        lifetime.ApplicationStopping.Register(() =>
        {
            Console.WriteLine("Stopping firing");
            Console.WriteLine("Stopping end");
        });
        lifetime.ApplicationStopped.Register(() =>
        {
            Console.WriteLine("Stopped firing");
            Console.WriteLine("Stopped end");
        });
    
        host.Start();
    
        // Listens for Ctrl+C.
        host.WaitForShutdown();
    }
Main Types
The main types provided by this library are:
Microsoft.Extensions.Host.Microsoft.Extensions.Hosting.HostApplicationBuilderMicrosoft.Extensions.Hosting.HostBuilderMicrosoft.Extensions.Hosting.IHostedServiceMicrosoft.Extensions.Hosting.IHostedLifecycleService
Additional Documentation
- Generic host
 - API documentation
 
Related Packages
Microsoft.Extensions.ConfigurationMicrosoft.Extensions.DependencyInjectionMicrosoft.Extensions.Hosting.AbstractionsMicrosoft.Extensions.LoggingMicrosoft.Extensions.Options
Feedback & Contributing
Microsoft.Extensions.Hosting 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 | 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 is compatible. 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 is compatible. 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 was computed. 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 is compatible. | 
| .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. | 
- 
                                                    
.NETFramework 4.6.2
- Microsoft.Bcl.AsyncInterfaces (>= 9.0.10)
 - Microsoft.Extensions.Configuration (>= 9.0.10)
 - Microsoft.Extensions.Configuration.Abstractions (>= 9.0.10)
 - Microsoft.Extensions.Configuration.Binder (>= 9.0.10)
 - Microsoft.Extensions.Configuration.CommandLine (>= 9.0.10)
 - Microsoft.Extensions.Configuration.EnvironmentVariables (>= 9.0.10)
 - Microsoft.Extensions.Configuration.FileExtensions (>= 9.0.10)
 - Microsoft.Extensions.Configuration.Json (>= 9.0.10)
 - Microsoft.Extensions.Configuration.UserSecrets (>= 9.0.10)
 - Microsoft.Extensions.DependencyInjection (>= 9.0.10)
 - Microsoft.Extensions.DependencyInjection.Abstractions (>= 9.0.10)
 - Microsoft.Extensions.Diagnostics (>= 9.0.10)
 - Microsoft.Extensions.FileProviders.Abstractions (>= 9.0.10)
 - Microsoft.Extensions.FileProviders.Physical (>= 9.0.10)
 - Microsoft.Extensions.Hosting.Abstractions (>= 9.0.10)
 - Microsoft.Extensions.Logging (>= 9.0.10)
 - Microsoft.Extensions.Logging.Abstractions (>= 9.0.10)
 - Microsoft.Extensions.Logging.Configuration (>= 9.0.10)
 - Microsoft.Extensions.Logging.Console (>= 9.0.10)
 - Microsoft.Extensions.Logging.Debug (>= 9.0.10)
 - Microsoft.Extensions.Logging.EventLog (>= 9.0.10)
 - Microsoft.Extensions.Logging.EventSource (>= 9.0.10)
 - Microsoft.Extensions.Options (>= 9.0.10)
 - System.Threading.Tasks.Extensions (>= 4.5.4)
 
 - 
                                                    
.NETStandard 2.0
- Microsoft.Bcl.AsyncInterfaces (>= 9.0.10)
 - Microsoft.Extensions.Configuration (>= 9.0.10)
 - Microsoft.Extensions.Configuration.Abstractions (>= 9.0.10)
 - Microsoft.Extensions.Configuration.Binder (>= 9.0.10)
 - Microsoft.Extensions.Configuration.CommandLine (>= 9.0.10)
 - Microsoft.Extensions.Configuration.EnvironmentVariables (>= 9.0.10)
 - Microsoft.Extensions.Configuration.FileExtensions (>= 9.0.10)
 - Microsoft.Extensions.Configuration.Json (>= 9.0.10)
 - Microsoft.Extensions.Configuration.UserSecrets (>= 9.0.10)
 - Microsoft.Extensions.DependencyInjection (>= 9.0.10)
 - Microsoft.Extensions.DependencyInjection.Abstractions (>= 9.0.10)
 - Microsoft.Extensions.Diagnostics (>= 9.0.10)
 - Microsoft.Extensions.FileProviders.Abstractions (>= 9.0.10)
 - Microsoft.Extensions.FileProviders.Physical (>= 9.0.10)
 - Microsoft.Extensions.Hosting.Abstractions (>= 9.0.10)
 - Microsoft.Extensions.Logging (>= 9.0.10)
 - Microsoft.Extensions.Logging.Abstractions (>= 9.0.10)
 - Microsoft.Extensions.Logging.Configuration (>= 9.0.10)
 - Microsoft.Extensions.Logging.Console (>= 9.0.10)
 - Microsoft.Extensions.Logging.Debug (>= 9.0.10)
 - Microsoft.Extensions.Logging.EventLog (>= 9.0.10)
 - Microsoft.Extensions.Logging.EventSource (>= 9.0.10)
 - Microsoft.Extensions.Options (>= 9.0.10)
 - System.Threading.Tasks.Extensions (>= 4.5.4)
 
 - 
                                                    
.NETStandard 2.1
- Microsoft.Extensions.Configuration (>= 9.0.10)
 - Microsoft.Extensions.Configuration.Abstractions (>= 9.0.10)
 - Microsoft.Extensions.Configuration.Binder (>= 9.0.10)
 - Microsoft.Extensions.Configuration.CommandLine (>= 9.0.10)
 - Microsoft.Extensions.Configuration.EnvironmentVariables (>= 9.0.10)
 - Microsoft.Extensions.Configuration.FileExtensions (>= 9.0.10)
 - Microsoft.Extensions.Configuration.Json (>= 9.0.10)
 - Microsoft.Extensions.Configuration.UserSecrets (>= 9.0.10)
 - Microsoft.Extensions.DependencyInjection (>= 9.0.10)
 - Microsoft.Extensions.DependencyInjection.Abstractions (>= 9.0.10)
 - Microsoft.Extensions.Diagnostics (>= 9.0.10)
 - Microsoft.Extensions.FileProviders.Abstractions (>= 9.0.10)
 - Microsoft.Extensions.FileProviders.Physical (>= 9.0.10)
 - Microsoft.Extensions.Hosting.Abstractions (>= 9.0.10)
 - Microsoft.Extensions.Logging (>= 9.0.10)
 - Microsoft.Extensions.Logging.Abstractions (>= 9.0.10)
 - Microsoft.Extensions.Logging.Configuration (>= 9.0.10)
 - Microsoft.Extensions.Logging.Console (>= 9.0.10)
 - Microsoft.Extensions.Logging.Debug (>= 9.0.10)
 - Microsoft.Extensions.Logging.EventLog (>= 9.0.10)
 - Microsoft.Extensions.Logging.EventSource (>= 9.0.10)
 - Microsoft.Extensions.Options (>= 9.0.10)
 
 - 
                                                    
net8.0
- Microsoft.Extensions.Configuration (>= 9.0.10)
 - Microsoft.Extensions.Configuration.Abstractions (>= 9.0.10)
 - Microsoft.Extensions.Configuration.Binder (>= 9.0.10)
 - Microsoft.Extensions.Configuration.CommandLine (>= 9.0.10)
 - Microsoft.Extensions.Configuration.EnvironmentVariables (>= 9.0.10)
 - Microsoft.Extensions.Configuration.FileExtensions (>= 9.0.10)
 - Microsoft.Extensions.Configuration.Json (>= 9.0.10)
 - Microsoft.Extensions.Configuration.UserSecrets (>= 9.0.10)
 - Microsoft.Extensions.DependencyInjection (>= 9.0.10)
 - Microsoft.Extensions.DependencyInjection.Abstractions (>= 9.0.10)
 - Microsoft.Extensions.Diagnostics (>= 9.0.10)
 - Microsoft.Extensions.FileProviders.Abstractions (>= 9.0.10)
 - Microsoft.Extensions.FileProviders.Physical (>= 9.0.10)
 - Microsoft.Extensions.Hosting.Abstractions (>= 9.0.10)
 - Microsoft.Extensions.Logging (>= 9.0.10)
 - Microsoft.Extensions.Logging.Abstractions (>= 9.0.10)
 - Microsoft.Extensions.Logging.Configuration (>= 9.0.10)
 - Microsoft.Extensions.Logging.Console (>= 9.0.10)
 - Microsoft.Extensions.Logging.Debug (>= 9.0.10)
 - Microsoft.Extensions.Logging.EventLog (>= 9.0.10)
 - Microsoft.Extensions.Logging.EventSource (>= 9.0.10)
 - Microsoft.Extensions.Options (>= 9.0.10)
 
 - 
                                                    
net9.0
- Microsoft.Extensions.Configuration (>= 9.0.10)
 - Microsoft.Extensions.Configuration.Abstractions (>= 9.0.10)
 - Microsoft.Extensions.Configuration.Binder (>= 9.0.10)
 - Microsoft.Extensions.Configuration.CommandLine (>= 9.0.10)
 - Microsoft.Extensions.Configuration.EnvironmentVariables (>= 9.0.10)
 - Microsoft.Extensions.Configuration.FileExtensions (>= 9.0.10)
 - Microsoft.Extensions.Configuration.Json (>= 9.0.10)
 - Microsoft.Extensions.Configuration.UserSecrets (>= 9.0.10)
 - Microsoft.Extensions.DependencyInjection (>= 9.0.10)
 - Microsoft.Extensions.DependencyInjection.Abstractions (>= 9.0.10)
 - Microsoft.Extensions.Diagnostics (>= 9.0.10)
 - Microsoft.Extensions.FileProviders.Abstractions (>= 9.0.10)
 - Microsoft.Extensions.FileProviders.Physical (>= 9.0.10)
 - Microsoft.Extensions.Hosting.Abstractions (>= 9.0.10)
 - Microsoft.Extensions.Logging (>= 9.0.10)
 - Microsoft.Extensions.Logging.Abstractions (>= 9.0.10)
 - Microsoft.Extensions.Logging.Configuration (>= 9.0.10)
 - Microsoft.Extensions.Logging.Console (>= 9.0.10)
 - Microsoft.Extensions.Logging.Debug (>= 9.0.10)
 - Microsoft.Extensions.Logging.EventLog (>= 9.0.10)
 - Microsoft.Extensions.Logging.EventSource (>= 9.0.10)
 - Microsoft.Extensions.Options (>= 9.0.10)
 
 
NuGet packages (3.1K)
Showing the top 5 NuGet packages that depend on Microsoft.Extensions.Hosting:
| Package | Downloads | 
|---|---|
| 
                                                        
                                                            Microsoft.Azure.WebJobs
                                                        
                                                            
                                                         This package contains the runtime host components of the WebJobs SDK. For more information, please visit https://go.microsoft.com/fwlink/?linkid=2279708.  | 
                                                    |
| 
                                                        
                                                            Microsoft.AspNetCore.Mvc.Testing
                                                        
                                                            
                                                         Support for writing functional tests for MVC applications. This package was built from the source code at https://github.com/dotnet/dotnet/tree/89c8f6a112d37d2ea8b77821e56d170a1bccdc5a  | 
                                                    |
| 
                                                        
                                                            Microsoft.Identity.Web
                                                        
                                                            
                                                         This package enables ASP.NET Core web apps and web APIs to use the Microsoft identity platform (formerly Azure AD v2.0). This package is specifically used for web applications, which sign-in users, and protected web APIs, which optionally call downstream web APIs.  | 
                                                    |
| 
                                                        
                                                            Microsoft.Azure.Functions.Worker.Core
                                                        
                                                            
                                                         This library provides the core functionality to build an Azure Functions .NET Worker, adding support for the isolated, out-of-process execution model.  | 
                                                    |
| 
                                                        
                                                            Microsoft.Extensions.Hosting.WindowsServices
                                                        
                                                            
                                                         .NET hosting infrastructure for Windows Services.  | 
                                                    
GitHub repositories (608)
Showing the top 20 popular GitHub repositories that depend on Microsoft.Extensions.Hosting:
| Repository | Stars | 
|---|---|
| 
                                                        
                                                            microsoft/PowerToys
                                                        
                                                         
                                                            Microsoft PowerToys is a collection of utilities that help you customize Windows and streamline everyday tasks
                                                         
                                                     | 
                                                    |
| 
                                                        
                                                            files-community/Files
                                                        
                                                         
                                                            A modern file manager that helps users organize their files and folders.
                                                         
                                                     | 
                                                    |
| 
                                                        
                                                            microsoft/semantic-kernel
                                                        
                                                         
                                                            Integrate cutting-edge LLM technology quickly and easily into your apps
                                                         
                                                     | 
                                                    |
| 
                                                        
                                                            icsharpcode/ILSpy
                                                        
                                                         
                                                            .NET Decompiler with support for PDB generation, ReadyToRun, Metadata (&more) - cross-platform!
                                                         
                                                     | 
                                                    |
| 
                                                        
                                                            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.
                                                         
                                                     | 
                                                    |
| 
                                                        
                                                            dotnet/AspNetCore.Docs
                                                        
                                                         
                                                            Documentation for ASP.NET Core
                                                         
                                                     | 
                                                    |
| 
                                                        
                                                            Flow-Launcher/Flow.Launcher
                                                        
                                                         
                                                            :mag: Quick file search & app launcher for Windows with community-made plugins
                                                         
                                                     | 
                                                    |
| 
                                                        
                                                            microsoft/garnet
                                                        
                                                         
                                                            Garnet is a remote cache-store from Microsoft Research that offers strong performance (throughput and latency), scalability, storage, recovery, cluster sharding, key migration, and replication features. Garnet can work with existing Redis clients.
                                                         
                                                     | 
                                                    |
| 
                                                        
                                                            babalae/better-genshin-impact
                                                        
                                                         
                                                            📦BetterGI · 更好的原神 - 自动拾取 | 自动剧情 | 全自动钓鱼(AI) | 全自动七圣召唤 | 自动伐木 | 自动刷本 | 自动采集/挖矿/锄地 | 一条龙 | 全连音游 - UI Automation Testing Tools For Genshin Impact
                                                         
                                                     | 
                                                    |
| 
                                                        
                                                            dotnet/orleans
                                                        
                                                         
                                                            Cloud Native application framework for .NET
                                                         
                                                     | 
                                                    |
| 
                                                        
                                                            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.
                                                         
                                                     | 
                                                    |
| 
                                                        
                                                            HangfireIO/Hangfire
                                                        
                                                         
                                                            An easy way to perform background job processing in .NET and .NET Core applications. No Windows Service or separate process required
                                                         
                                                     | 
                                                    |
| 
                                                        
                                                            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.
                                                         
                                                     | 
                                                    |
| 
                                                        
                                                            lepoco/wpfui
                                                        
                                                         
                                                            WPF UI provides the Fluent experience in your known and loved WPF framework. Intuitive design, themes, navigation and new immersive controls. All natively and effortlessly.
                                                         
                                                     | 
                                                    |
| 
                                                        
                                                            JeffreySu/WeiXinMPSDK
                                                        
                                                         
                                                            微信全平台 .NET SDK, Senparc.Weixin for C#,支持 .NET Framework 及 .NET Core、.NET 10.0。已支持微信公众号、小程序、小游戏、微信支付、企业微信/企业号、开放平台、JSSDK、微信周边等全平台。 WeChat SDK for C#.
                                                         
                                                     | 
                                                    |
| 
                                                        
                                                            RayWangQvQ/BiliBiliToolPro
                                                        
                                                         
                                                            B 站(bilibili)自动任务工具,支持docker、青龙、k8s等多种部署方式。敏感肌也能用。
                                                         
                                                     | 
                                                    |
| 
                                                        
                                                            microsoft/ailab
                                                        
                                                         
                                                            Experience, Learn and Code the latest breakthrough innovations with Microsoft AI
                                                         
                                                     | 
                                                    |
| 
                                                        
                                                            quartznet/quartznet
                                                        
                                                         
                                                            Quartz Enterprise Scheduler .NET
                                                         
                                                     | 
                                                    |
| 
                                                        
                                                            LykosAI/StabilityMatrix
                                                        
                                                         
                                                            Multi-Platform Package Manager for Stable Diffusion
                                                         
                                                     | 
                                                    |
| 
                                                        
                                                            TechnitiumSoftware/DnsServer
                                                        
                                                         
                                                            Technitium DNS Server
                                                         
                                                     | 
                                                    
| Version | Downloads | Last Updated | |
|---|---|---|---|
| 10.0.0-rc.2.25502.107 | 46,774 | 10/14/2025 | |
| 10.0.0-rc.1.25451.107 | 101,977 | 9/9/2025 | |
| 10.0.0-preview.7.25380.108 | 36,929 | 8/12/2025 | |
| 10.0.0-preview.6.25358.103 | 38,966 | 7/15/2025 | |
| 10.0.0-preview.5.25277.114 | 31,727 | 6/6/2025 | |
| 10.0.0-preview.4.25258.110 | 23,099 | 5/12/2025 | |
| 10.0.0-preview.3.25171.5 | 48,823 | 4/10/2025 | |
| 10.0.0-preview.2.25163.2 | 21,416 | 3/18/2025 | |
| 10.0.0-preview.1.25080.5 | 55,132 | 2/25/2025 | |
| 9.0.10 | 1,162,219 | 10/14/2025 | |
| 9.0.9 | 3,929,555 | 9/9/2025 | |
| 9.0.8 | 4,770,169 | 8/4/2025 | |
| 9.0.7 | 4,150,147 | 7/8/2025 | |
| 9.0.6 | 4,727,399 | 6/10/2025 | |
| 9.0.5 | 4,944,154 | 5/13/2025 | |
| 9.0.4 | 7,766,715 | 4/8/2025 | |
| 9.0.3 | 5,594,332 | 3/11/2025 | |
| 9.0.2 | 6,222,870 | 2/11/2025 | |
| 9.0.1 | 5,984,361 | 1/14/2025 | |
| 9.0.0 | 18,484,727 | 11/12/2024 | |
| 9.0.0-rc.2.24473.5 | 123,108 | 10/8/2024 | |
| 9.0.0-rc.1.24431.7 | 77,777 | 9/10/2024 | |
| 9.0.0-preview.7.24405.7 | 42,479 | 8/13/2024 | |
| 9.0.0-preview.6.24327.7 | 44,071 | 7/9/2024 | |
| 9.0.0-preview.5.24306.7 | 34,701 | 6/11/2024 | |
| 9.0.0-preview.4.24266.19 | 31,298 | 5/21/2024 | |
| 9.0.0-preview.3.24172.9 | 113,407 | 4/11/2024 | |
| 9.0.0-preview.2.24128.5 | 34,613 | 3/12/2024 | |
| 9.0.0-preview.1.24080.9 | 56,784 | 2/13/2024 | |
| 8.0.1 | 73,270,600 | 10/8/2024 | |
| 8.0.0 | 126,855,435 | 11/14/2023 | |
| 8.0.0-rc.2.23479.6 | 148,897 | 10/10/2023 | |
| 8.0.0-rc.1.23419.4 | 129,036 | 9/12/2023 | |
| 8.0.0-preview.7.23375.6 | 54,158 | 8/8/2023 | |
| 8.0.0-preview.6.23329.7 | 67,269 | 7/11/2023 | |
| 8.0.0-preview.5.23280.8 | 60,932 | 6/13/2023 | |
| 8.0.0-preview.4.23259.5 | 298,877 | 5/16/2023 | |
| 8.0.0-preview.3.23174.8 | 109,807 | 4/11/2023 | |
| 8.0.0-preview.2.23128.3 | 30,908 | 3/14/2023 | |
| 8.0.0-preview.1.23110.8 | 94,283 | 2/21/2023 | |
| 7.0.1 | 55,481,405 | 2/14/2023 | |
| 7.0.0 | 28,716,008 | 11/7/2022 | |
| 7.0.0-rc.2.22472.3 | 152,275 | 10/11/2022 | |
| 7.0.0-rc.1.22426.10 | 80,406 | 9/14/2022 | |
| 7.0.0-preview.7.22375.6 | 58,079 | 8/9/2022 | |
| 7.0.0-preview.6.22324.4 | 48,707 | 7/12/2022 | |
| 7.0.0-preview.5.22301.12 | 42,549 | 6/14/2022 | |
| 7.0.0-preview.4.22229.4 | 38,589 | 5/10/2022 | |
| 7.0.0-preview.3.22175.4 | 46,351 | 4/13/2022 | |
| 7.0.0-preview.2.22152.2 | 11,792 | 3/14/2022 | |
| 7.0.0-preview.1.22076.8 | 22,655 | 2/17/2022 | |
| 6.0.1 | 141,240,353 | 2/8/2022 | |
| 6.0.0 | 61,305,079 | 11/8/2021 | |
| 6.0.0-rc.2.21480.5 | 381,174 | 10/12/2021 | |
| 6.0.0-rc.1.21451.13 | 271,402 | 9/14/2021 | |
| 6.0.0-preview.7.21377.19 | 131,453 | 8/10/2021 | |
| 6.0.0-preview.6.21352.12 | 45,247 | 7/14/2021 | |
| 6.0.0-preview.5.21301.5 | 28,460 | 6/15/2021 | |
| 6.0.0-preview.4.21253.7 | 21,405 | 5/24/2021 | |
| 6.0.0-preview.3.21201.4 | 37,090 | 4/8/2021 | |
| 6.0.0-preview.2.21154.6 | 22,879 | 3/11/2021 | |
| 6.0.0-preview.1.21102.12 | 32,359 | 2/12/2021 | |
| 5.0.0 | 121,861,043 | 11/9/2020 | |
| 5.0.0-rc.2.20475.5 | 95,563 | 10/13/2020 | |
| 5.0.0-rc.1.20451.14 | 41,406 | 9/14/2020 | |
| 5.0.0-preview.8.20407.11 | 25,218 | 8/25/2020 | |
| 5.0.0-preview.7.20364.11 | 21,575 | 7/21/2020 | |
| 5.0.0-preview.6.20305.6 | 18,194 | 6/25/2020 | |
| 5.0.0-preview.5.20278.1 | 11,321 | 6/10/2020 | |
| 5.0.0-preview.4.20251.6 | 25,665 | 5/18/2020 | |
| 5.0.0-preview.3.20215.2 | 13,663 | 4/23/2020 | |
| 5.0.0-preview.2.20160.3 | 42,050 | 4/2/2020 | |
| 5.0.0-preview.1.20120.4 | 10,401 | 3/16/2020 | |
| 3.1.32 | 2,512,838 | 12/13/2022 | |
| 3.1.31 | 638,022 | 11/8/2022 | |
| 3.1.30 | 1,139,878 | 10/11/2022 | |
| 3.1.29 | 390,862 | 9/13/2022 | |
| 3.1.28 | 540,268 | 8/9/2022 | |
| 3.1.27 | 351,614 | 7/12/2022 | |
| 3.1.26 | 347,284 | 6/14/2022 | |
| 3.1.25 | 457,691 | 5/10/2022 | |
| 3.1.24 | 394,628 | 4/11/2022 | |
| 3.1.23 | 808,757 | 3/8/2022 | |
| 3.1.22 | 2,105,848 | 12/14/2021 | |
| 3.1.21 | 1,473,136 | 11/7/2021 | |
| 3.1.20 | 885,831 | 10/11/2021 | |
| 3.1.19 | 829,141 | 9/14/2021 | |
| 3.1.18 | 1,783,662 | 8/10/2021 | |
| 3.1.17 | 1,307,941 | 7/13/2021 | |
| 3.1.16 | 1,689,329 | 6/8/2021 | |
| 3.1.15 | 2,540,010 | 5/11/2021 | |
| 3.1.14 | 2,197,093 | 4/6/2021 | |
| 3.1.13 | 2,391,293 | 3/9/2021 | |
| 3.1.12 | 2,092,755 | 2/9/2021 | |
| 3.1.11 | 2,610,811 | 1/12/2021 | |
| 3.1.10 | 5,553,905 | 11/9/2020 | |
| 3.1.9 | 6,869,680 | 10/13/2020 | |
| 3.1.8 | 8,274,260 | 9/8/2020 | |
| 3.1.7 | 5,995,659 | 8/11/2020 | |
| 3.1.6 | 9,586,328 | 7/14/2020 | |
| 3.1.5 | 8,013,185 | 6/9/2020 | |
| 3.1.4 | 5,497,511 | 5/12/2020 | |
| 3.1.3 | 9,454,071 | 3/24/2020 | |
| 3.1.2 | 9,163,686 | 2/18/2020 | |
| 3.1.1 | 7,291,555 | 1/14/2020 | |
| 3.1.0 | 13,630,834 | 12/3/2019 | |
| 3.1.0-preview3.19553.2 | 13,643 | 11/13/2019 | |
| 3.1.0-preview2.19525.4 | 4,481 | 11/1/2019 | |
| 3.1.0-preview1.19506.1 | 8,272 | 10/15/2019 | |
| 3.0.3 | 297,125 | 2/18/2020 | |
| 3.0.2 | 782,984 | 1/14/2020 | |
| 3.0.1 | 889,140 | 11/18/2019 | |
| 3.0.0 | 15,001,004 | 9/23/2019 | |
| 3.0.0-rc1.19456.10 | 17,770 | 9/16/2019 | |
| 3.0.0-preview9.19423.4 | 24,114 | 9/4/2019 | |
| 3.0.0-preview8.19405.4 | 55,835 | 8/13/2019 | |
| 3.0.0-preview7.19362.4 | 26,137 | 7/23/2019 | |
| 3.0.0-preview6.19304.6 | 30,662 | 6/12/2019 | |
| 3.0.0-preview5.19227.9 | 51,011 | 5/6/2019 | |
| 3.0.0-preview4.19216.2 | 8,669 | 4/18/2019 | |
| 3.0.0-preview3.19153.1 | 31,196 | 3/6/2019 | |
| 3.0.0-preview.19074.2 | 4,225 | 1/29/2019 | |
| 3.0.0-preview.18572.1 | 10,310 | 12/4/2018 | |
| 2.2.0 | 22,124,241 | 12/3/2018 | |
| 2.2.0-preview3-35497 | 81,072 | 10/17/2018 | |
| 2.2.0-preview2-35157 | 16,181 | 9/12/2018 | |
| 2.2.0-preview1-35029 | 4,563 | 8/22/2018 | |
| 2.1.1 | 20,902,298 | 6/18/2018 | |
| 2.1.0 | 173,705,730 | 5/29/2018 | |
| 2.1.0-rc1-final | 26,434 | 5/6/2018 | |
| 2.1.0-preview2-final | 23,724 | 4/10/2018 | |
| 2.1.0-preview1-final | 40,149 | 2/26/2018 |