Microsoft.Graph
                             
                            
                                5.94.0
                            
                        
                            
                                
                                
                                    Prefix Reserved
                                
                            
                    See the version list below for details.
dotnet add package Microsoft.Graph --version 5.94.0
NuGet\Install-Package Microsoft.Graph -Version 5.94.0
<PackageReference Include="Microsoft.Graph" Version="5.94.0" />
<PackageVersion Include="Microsoft.Graph" Version="5.94.0" />
<PackageReference Include="Microsoft.Graph" />
paket add Microsoft.Graph --version 5.94.0
#r "nuget: Microsoft.Graph, 5.94.0"
#:package Microsoft.Graph@5.94.0
#addin nuget:?package=Microsoft.Graph&version=5.94.0
#tool nuget:?package=Microsoft.Graph&version=5.94.0
Microsoft Graph .NET Client Library
Integrate the Microsoft Graph API into your .NET project!
The Microsoft Graph .NET Client Library targets .NetStandard 2.0.
Installation via NuGet
To install the client library via NuGet:
- Search for 
Microsoft.Graphin the NuGet Library, or - Type 
Install-Package Microsoft.Graphinto the Package Manager Console. 
Getting started
1. Register your application
Register your application to use Microsoft Graph API using the Microsoft Application Registration Portal.
2. Authenticate for the Microsoft Graph service
The Microsoft Graph .NET Client Library supports the use of TokenCredential classes in the Azure.Identity library.
You can read more about available Credential classes here and examples on how to quickly setup TokenCredential instances can be found here.
The recommended library for authenticating against Microsoft Identity (Azure AD) is MSAL.
For an example of authenticating a UWP app using the V2 Authentication Endpoint, see the Microsoft Graph UWP Connect Library.
3. Create a Microsoft Graph client object with an authentication provider
An instance of the GraphServiceClient class handles building requests,
sending them to Microsoft Graph API, and processing the responses. To create a
new instance of this class, you need to provide an instance of
IAuthenticationProvider which can authenticate requests to Microsoft Graph.
For more information on initializing a client instance, see the library overview
4. Make requests to the graph
Once you have completed authentication and have a GraphServiceClient, you can begin to make calls to the service. The requests in the SDK follow the format of the Microsoft Graph API's RESTful syntax.
For example, to retrieve a user's default drive:
var drive = await graphClient.Me.Drive.GetAsync();
GetAsync will return a Drive object on success and throw a
ApiException on error.
To get the current user's root folder of their default drive:
// Get the user's driveId
var drive = await graphClient.Me.Drive.GetAsync();
var userDriveId = drive.Id;
// use the driveId to get the root drive
var rootItem = await graphClient.Drives[userDriveId].Root.GetAsync();
GetAsync will return a DriveItem object on success and throw a
ApiException on error.
For a general overview of how the SDK is designed, see overview.
The following sample applications are also available:
- Microsoft Graph UWP Connect Sample
 - Microsoft Graph UWP Snippets Sample
 - Microsoft Graph MeetingBot sample for UWP
 - Microsoft Graph Connect Sample for ASP.NET 4.6
 - Microsoft Graph Snippets Sample for ASP.NET 4.6
 - Microsoft Graph SDK Snippets Library for Xamarin.Forms
 - Microsoft Graph Connect Sample for Xamarin Forms
 - Microsoft Graph Meeting Manager Sample for Xamarin.Forms
 - Microsoft Graph Property Manager Sample for Xamarin Native
 
Documentation and resources
- Overview
 - Collections
 - Errors
 - Headers
 - Microsoft Graph API
 - Release notes
 - Blog - Microsoft Graph .NET SDK updates 3/16/20
 
Notes
Upgrading from v1
Between 1.x and 3.x there were some minor possibly breaking changes:
- .NET Standard minimum version bumped from 
netStandard1.3tonetstandard2.0 - .NET Framework minimum version bumped from 
net45tonet461 - a change in enum order for 
GiphyRatingType ParticipantInfobecameInvitationParticipantInfoCallRecordRequestBodybecameCallRecordResponseRequestBody
Upgrading to v4
Between 3.x and 4.x there were some major breaking changes:
- .NET Standard minimum version bumped from 
netStandard1.3tonetstandard2.0 - .NET Framework minimum version bumped from 
net45tonet462 - Replacing Newtosoft.Json with System.Text.Json
 - Upgrading Microsoft.Graph.Core dependency to version 2.0.0
 
View the upgrade guide here.
Upgrading to v5
Between 4.x and 5.x there were several major breaking changes as the SDK now uses Kiota for code generation.
View the upgrade guide here.
Issues
To view or log issues, see issues.
This project has adopted the Microsoft Open Source Code of Conduct. For more information see the Code of Conduct FAQ or contact opencode@microsoft.com with any additional questions or comments.
Other resources
- NuGet Package: https://www.nuget.org/packages/Microsoft.Graph
 
Building library locally
If you are looking to build the library locally for the purposes of contributing code or running tests, you will need to:
- Have the .NET Core SDK (> 1.0) installed
 - Run 
dotnet restorefrom the command line in your package directory - Run 
nuget restoreandmsbuildfrom CLI or run Build from Visual Studio to restore Nuget packages and build the project 
Due to long file names you may need to run
git config --system core.longpaths truebefore cloning the repo to your system.
Additionally for Windows OS, set the value of the parameter
HKLM\SYSTEM\CurrentControlSet\Control\FileSystemLongPathsEnabledto1, before opening the solution in VS
License
Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT license. See Third Party Notices for information on the packages referenced via NuGet.
| Product | Versions Compatible and additional computed target framework versions. | 
|---|---|
| .NET | net5.0 is compatible. 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 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 was computed. 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. | 
- 
                                                    
.NETStandard 2.0
- Microsoft.Graph.Core (>= 3.2.4)
 
 - 
                                                    
.NETStandard 2.1
- Microsoft.Graph.Core (>= 3.2.4)
 
 - 
                                                    
net5.0
- Microsoft.Graph.Core (>= 3.2.4)
 
 
NuGet packages (256)
Showing the top 5 NuGet packages that depend on Microsoft.Graph:
| Package | Downloads | 
|---|---|
| 
                                                        
                                                            Microsoft.Identity.Web.MicrosoftGraph
                                                        
                                                            
                                                         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 call Microsoft Graph, and for protected web APIs that call Microsoft Graph.  | 
                                                    |
| 
                                                        
                                                            GSF.Security
                                                        
                                                         Library of core security framework for implementing role-based security with integrated Active Directory, local account and database style authentication across various .NET application types.  | 
                                                    |
| 
                                                        
                                                            Rystem.Content.Infrastructure.M365.Sharepoint
                                                        
                                                         Rystem.Content helps you to integrate with azure services or to create an abstraction layer among your infrastructure and your business.  | 
                                                    |
| 
                                                        
                                                            Microsoft.Identity.Web.GraphServiceClient
                                                        
                                                            
                                                         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 call Microsoft Graph, and for protected web APIs that call Microsoft Graph. Works specifically with MS Graph SDK v5 and above. For MS Graph SDK v4 support, please use Microsoft.Identity.Web.MicrosoftGraph.  | 
                                                    |
| 
                                                        
                                                            SharePointPnPCoreOnline
                                                        
                                                         Retired - please use PnP Framework (https://github.com/pnp/pnpframework) going forward. Core CSOM extension methods for SharePoint Online add-in model development. This will increase productivity of the developers by abstracting complex operations.  | 
                                                    
GitHub repositories (65)
Showing the top 20 popular GitHub repositories that depend on Microsoft.Graph:
| Repository | Stars | 
|---|---|
| 
                                                        
                                                            microsoft/semantic-kernel
                                                        
                                                         
                                                            Integrate cutting-edge LLM technology quickly and easily into your apps
                                                         
                                                     | 
                                                    |
| 
                                                        
                                                            unoplatform/uno
                                                        
                                                         
                                                            Open-source platform for building cross-platform native Mobile, Web, Desktop and Embedded apps quickly.  Create rich, C#/XAML, single-codebase apps from any IDE. Hot Reload included! 90m+ NuGet Downloads!!
                                                         
                                                     | 
                                                    |
| 
                                                        
                                                            Azure/azure-sdk-for-net
                                                        
                                                         
                                                            This repository is for active development of the Azure SDK for .NET. For consumers of the SDK we recommend visiting our public developer docs at https://learn.microsoft.com/dotnet/azure/ or our versioned developer docs at https://azure.github.io/azure-sdk-for-net. 
                                                         
                                                     | 
                                                    |
| 
                                                        
                                                            PhilippC/keepass2android
                                                        
                                                         
                                                            Password manager app for Android
                                                         
                                                     | 
                                                    |
| 
                                                        
                                                            lukencode/FluentEmail
                                                        
                                                         
                                                            All in one email sender for .NET. Supports popular senders (SendGrid, MailGun, etc) and Razor templates.
                                                         
                                                     | 
                                                    |
| 
                                                        
                                                            microsoft/onefuzz
                                                        
                                                         
                                                            A self-hosted Fuzzing-As-A-Service platform
                                                         
                                                     | 
                                                    |
| 
                                                        
                                                            phongnguyend/Practical.CleanArchitecture
                                                        
                                                         
                                                            Full-stack .Net 9 Clean Architecture (Microservices, Modular Monolith, Monolith), Blazor, Angular 20, React 19, Vue 3.5, BFF with YARP, NextJs 15, Domain-Driven Design, CQRS, SOLID, Asp.Net Core Identity Custom Storage, OpenID Connect, EF Core, OpenTelemetry, SignalR, Background Services, Health Checks, Rate Limiting, Clouds (Azure, AWS, GCP), ..
                                                         
                                                     | 
                                                    |
| 
                                                        
                                                            pnp/PnP
                                                        
                                                         
                                                            SharePoint / Office 365 Developer Patterns and Practices - Archived older solutions. Please see https://aka.ms/m365pnp for updated guidance
                                                         
                                                     | 
                                                    |
| 
                                                        
                                                            microsoft/WhatTheHack
                                                        
                                                         
                                                            A collection of challenge based hack-a-thons including student guide, coach guide, lecture presentations, sample/instructional code and templates.  Please visit the What The Hack website at: https://aka.ms/wth
                                                         
                                                     | 
                                                    |
| 
                                                        
                                                            microsoft/Recognizers-Text
                                                        
                                                         
                                                            Microsoft.Recognizers.Text provides recognition and resolution of numbers, units, date/time, etc. in multiple languages (ZH, EN, FR, ES, PT, DE, IT, TR, HI, NL. Partial support for JA, KO, AR, SV). Packages available at: https://www.nuget.org/profiles/Recognizers.Text, https://www.npmjs.com/~recognizers.text
                                                         
                                                     | 
                                                    |
| 
                                                        
                                                            ariacom/Seal-Report
                                                        
                                                         
                                                            Database Reporting Tool and Tasks (.Net)
                                                         
                                                     | 
                                                    |
| 
                                                        
                                                            bkaankose/Wino-Mail
                                                        
                                                         
                                                            Built-in Mail & Calendars app clone for Windows.
                                                         
                                                     | 
                                                    |
| 
                                                        
                                                            OfficeDev/Microsoft-Teams-Samples
                                                        
                                                         
                                                            Welcome to the Microsoft Teams samples repository. Here you will find task-focused samples in C#, JavaScript and TypeScript to help you get started with the Microsoft Teams App!
                                                         
                                                     | 
                                                    |
| 
                                                        
                                                            pnp/PnP-PowerShell
                                                        
                                                         
                                                            SharePoint PnP PowerShell CmdLets
                                                         
                                                     | 
                                                    |
| 
                                                        
                                                            s1t5/mail-archiver
                                                        
                                                         
                                                            Mail-Archiver is a web application for archiving, searching, and exporting emails from multiple accounts. Featuring folder sync, attachment support, mailbox migration  and a dashboard.
                                                         
                                                     | 
                                                    |
| 
                                                        
                                                            OfficeDev/TrainingContent
                                                        
                                                         
                                                            Training Content used for developer.microsoft.com/office
                                                         
                                                     | 
                                                    |
| 
                                                        
                                                            azure-ad-b2c/samples
                                                        
                                                         
                                                            Azure AD B2C custom policy solutions and samples.
                                                         
                                                     | 
                                                    |
| 
                                                        
                                                            JonPSmith/AuthPermissions.AspNetCore
                                                        
                                                         
                                                            This library provides extra authorization and multi-tenant features to an ASP.NET Core application.
                                                         
                                                     | 
                                                    |
| 
                                                        
                                                            pnp/powershell
                                                        
                                                         
                                                            PnP PowerShell
                                                         
                                                     | 
                                                    |
| 
                                                        
                                                            dotnet/Scaffolding
                                                        
                                                         
                                                            Code generators to speed up development.
                                                         
                                                     | 
                                                    
| Version | Downloads | Last Updated | 
|---|---|---|
| 5.95.0 | 92,152 | 10/23/2025 | 
| 5.94.0 | 286,623 | 10/6/2025 | 
| 5.93.0 | 535,481 | 9/16/2025 | 
| 5.92.0 | 210,409 | 9/10/2025 | 
| 5.91.0 | 665,792 | 8/20/2025 | 
| 5.90.0 | 282,114 | 8/12/2025 | 
| 5.89.0 | 319,640 | 8/5/2025 | 
| 5.88.0 | 260,293 | 7/30/2025 | 
| 5.87.0 | 243,721 | 7/22/2025 | 
| 5.86.0 | 163,119 | 7/17/2025 | 
| 5.85.0 | 277,326 | 7/8/2025 | 
| 5.84.0 | 246,364 | 7/2/2025 | 
| 5.83.0 | 364,920 | 6/25/2025 | 
| 5.82.0 | 207,286 | 6/18/2025 | 
| 5.81.0 | 340,824 | 6/10/2025 | 
| 5.80.0 | 309,392 | 6/3/2025 | 
| 5.79.0 | 1,247,653 | 5/20/2025 | 
| 5.78.0 | 355,587 | 5/13/2025 | 
| 5.77.0 | 1,555,092 | 4/15/2025 | 
| 5.76.0 | 693,662 | 4/9/2025 | 
| 5.75.0 | 996,268 | 3/25/2025 | 
| 5.74.0 | 404,146 | 3/18/2025 | 
| 5.73.0 | 1,729,528 | 3/12/2025 | 
| 5.72.0 | 481,221 | 3/5/2025 | 
| 5.71.0 | 611,368 | 2/25/2025 | 
| 5.70.0 | 813,871 | 2/13/2025 | 
| 5.69.0 | 1,744,534 | 1/23/2025 | 
| 5.68.0 | 1,976,766 | 1/2/2025 | 
| 5.67.0 | 956,740 | 12/13/2024 | 
| 5.66.0 | 94,572 | 12/11/2024 | 
| 5.65.0 | 396,547 | 12/5/2024 | 
| 5.64.0 | 398,292 | 11/28/2024 | 
| 5.63.0 | 826,552 | 11/20/2024 | 
| 5.62.0 | 1,214,458 | 11/7/2024 | 
| 5.61.0 | 1,685,539 | 10/17/2024 | 
| 5.60.0 | 1,125,706 | 10/9/2024 | 
| 5.59.0 | 496,693 | 10/2/2024 | 
| 5.58.0 | 1,022,929 | 9/12/2024 | 
| 5.57.0 | 344,395 | 9/5/2024 | 
| 5.56.1 | 646,601 | 8/28/2024 | 
| 5.56.0 | 6,954,114 | 6/6/2024 | 
| 5.55.0 | 470,873 | 5/31/2024 | 
| 5.54.0 | 523,646 | 5/24/2024 | 
| 5.53.0 | 506,082 | 5/16/2024 | 
| 5.52.0 | 713,601 | 5/8/2024 | 
| 5.51.0 | 1,074,105 | 5/2/2024 | 
| 5.50.0 | 512,330 | 4/25/2024 | 
| 5.49.0 | 810,201 | 4/17/2024 | 
| 5.48.0 | 607,384 | 4/9/2024 | 
| 5.47.0 | 270,628 | 4/5/2024 | 
| 5.46.0 | 485,754 | 3/27/2024 | 
| 5.45.0 | 385,433 | 3/22/2024 | 
| 5.44.0 | 1,966,445 | 2/28/2024 | 
| 5.43.0 | 699,228 | 2/21/2024 | 
| 5.42.0 | 499,190 | 2/14/2024 | 
| 5.41.0 | 1,394,261 | 2/1/2024 | 
| 5.40.0 | 1,607,342 | 1/24/2024 | 
| 5.39.0 | 471,651 | 1/17/2024 | 
| 5.38.0 | 823,472 | 1/4/2024 | 
| 5.37.0 | 663,513 | 12/14/2023 | 
| 5.36.0 | 1,212,534 | 11/22/2023 | 
| 5.35.0 | 416,108 | 11/16/2023 | 
| 5.34.0 | 335,095 | 11/8/2023 | 
| 5.33.0 | 210,667 | 11/3/2023 | 
| 5.32.0 | 322,650 | 10/26/2023 | 
| 5.31.0 | 359,003 | 10/19/2023 | 
| 5.30.0 | 192,581 | 10/12/2023 | 
| 5.29.0 | 165,414 | 10/6/2023 | 
| 5.28.0 | 484,549 | 9/21/2023 | 
| 5.27.0 | 231,113 | 9/14/2023 | 
| 5.26.0 | 208,390 | 9/6/2023 | 
| 5.25.0 | 245,749 | 8/31/2023 | 
| 5.24.0 | 348,238 | 8/24/2023 | 
| 5.23.0 | 167,413 | 8/18/2023 | 
| 5.22.0 | 308,844 | 8/10/2023 | 
| 5.21.0 | 243,272 | 8/2/2023 | 
| 5.20.0 | 149,196 | 7/27/2023 | 
| 5.19.0 | 217,529 | 7/19/2023 | 
| 5.18.0 | 274,105 | 7/12/2023 | 
| 5.17.0 | 285,159 | 7/5/2023 | 
| 5.16.0 | 191,395 | 6/29/2023 | 
| 5.15.0 | 367,799 | 6/21/2023 | 
| 5.14.0 | 219,772 | 6/15/2023 | 
| 5.13.0 | 267,404 | 6/9/2023 | 
| 5.12.0 | 660,947 | 5/25/2023 | 
| 5.11.0 | 323,266 | 5/17/2023 | 
| 5.10.0 | 234,726 | 5/11/2023 | 
| 5.9.0 | 190,794 | 5/4/2023 | 
| 5.8.0 | 154,515 | 4/28/2023 | 
| 5.7.0 | 222,360 | 4/20/2023 | 
| 5.6.0 | 349,533 | 4/13/2023 | 
| 5.5.0 | 455,074 | 4/6/2023 | 
| 5.4.0 | 213,617 | 3/29/2023 | 
| 5.3.0 | 273,775 | 3/22/2023 | 
| 5.2.0 | 226,601 | 3/15/2023 | 
| 5.1.0 | 186,995 | 3/8/2023 | 
| 5.0.0 | 300,661 | 2/28/2023 | 
| 5.0.0-rc.5 | 12,122 | 2/9/2023 | 
| 5.0.0-rc.4 | 3,955 | 1/27/2023 | 
| 5.0.0-rc.3 | 2,946 | 1/18/2023 | 
| 5.0.0-rc.2 | 1,840 | 1/11/2023 | 
| 5.0.0-rc.1 | 6,940 | 12/16/2022 | 
| 5.0.0-preview.14 | 65,086 | 11/23/2022 | 
| 5.0.0-preview.13 | 37,810 | 10/19/2022 | 
| 5.0.0-preview.12 | 3,726 | 9/28/2022 | 
| 5.0.0-preview.11 | 1,964 | 9/14/2022 | 
| 5.0.0-preview.10 | 81,011 | 7/20/2022 | 
| 5.0.0-preview.9 | 2,558 | 7/13/2022 | 
| 5.0.0-preview.8 | 20,941 | 6/21/2022 | 
| 5.0.0-preview.7 | 1,258 | 6/9/2022 | 
| 5.0.0-preview.6 | 903 | 6/2/2022 | 
| 5.0.0-preview.5 | 5,019 | 5/20/2022 | 
| 5.0.0-preview.4 | 5,146 | 5/6/2022 | 
| 5.0.0-preview.3 | 3,771 | 4/20/2022 | 
| 5.0.0-preview.2 | 1,250 | 4/5/2022 | 
| 5.0.0-preview.1 | 1,860 | 3/24/2022 | 
| 4.54.0 | 7,284,408 | 2/16/2023 | 
| 4.53.0 | 1,224,574 | 2/8/2023 | 
| 4.52.0 | 1,405,767 | 1/25/2023 | 
| 4.51.0 | 1,443,045 | 1/17/2023 | 
| 4.50.0 | 764,504 | 1/5/2023 | 
| 4.49.0 | 1,249,333 | 12/15/2022 | 
| 4.48.0 | 1,596,859 | 11/23/2022 | 
| 4.47.0 | 1,511,829 | 11/9/2022 | 
| 4.46.0 | 751,283 | 11/2/2022 | 
| 4.45.0 | 1,232,043 | 10/19/2022 | 
| 4.44.0 | 523,587 | 10/12/2022 | 
| 4.43.0 | 376,876 | 10/5/2022 | 
| 4.42.0 | 647,951 | 9/28/2022 | 
| 4.41.0 | 694,193 | 9/22/2022 | 
| 4.40.0 | 500,249 | 9/14/2022 | 
| 4.39.0 | 2,890,920 | 9/6/2022 | 
| 4.38.0 | 416,111 | 8/31/2022 | 
| 4.37.0 | 493,180 | 8/25/2022 | 
| 4.36.0 | 4,654,176 | 8/12/2022 | 
| 4.35.0 | 1,142,845 | 7/21/2022 | 
| 4.34.0 | 4,406,312 | 7/6/2022 | 
| 4.33.0 | 810,501 | 6/29/2022 | 
| 4.32.0 | 454,220 | 6/21/2022 | 
| 4.31.0 | 281,855 | 6/16/2022 | 
| 4.30.0 | 477,786 | 6/8/2022 | 
| 4.29.0 | 1,294,241 | 5/18/2022 | 
| 4.28.0 | 542,187 | 5/11/2022 | 
| 4.27.0 | 356,781 | 5/4/2022 | 
| 4.26.0 | 316,234 | 4/29/2022 | 
| 4.25.0 | 1,428,400 | 4/13/2022 | 
| 4.24.0 | 370,623 | 4/5/2022 | 
| 4.23.0 | 181,456 | 3/30/2022 | 
| 4.22.0 | 466,956 | 3/22/2022 | 
| 4.21.0 | 391,881 | 3/16/2022 | 
| 4.20.0 | 274,136 | 3/9/2022 | 
| 4.19.0 | 847,831 | 2/24/2022 | 
| 4.18.0 | 808,858 | 2/10/2022 | 
| 4.17.0 | 1,067,546 | 1/27/2022 | 
| 4.16.0 | 352,213 | 1/19/2022 | 
| 4.15.0 | 523,452 | 1/13/2022 | 
| 4.14.0 | 994,806 | 1/5/2022 | 
| 4.13.0 | 687,698 | 12/22/2021 | 
| 4.12.0 | 303,115 | 12/15/2021 | 
| 4.11.0 | 3,118,895 | 11/25/2021 | 
| 4.10.0 | 741,490 | 11/11/2021 | 
| 4.9.0 | 666,877 | 11/3/2021 | 
| 4.8.0 | 183,777 | 10/28/2021 | 
| 4.7.0 | 700,562 | 10/14/2021 | 
| 4.6.0 | 1,562,397 | 9/23/2021 | 
| 4.5.0 | 836,529 | 9/9/2021 | 
| 4.4.0 | 319,280 | 9/2/2021 | 
| 4.3.0 | 432,949 | 8/19/2021 | 
| 4.2.0 | 1,220,003 | 8/12/2021 | 
| 4.1.0 | 213,662 | 8/5/2021 | 
| 4.0.0 | 635,652 | 7/23/2021 | 
| 4.0.0-preview.7 | 17,895 | 6/18/2021 | 
| 4.0.0-preview.6 | 15,496 | 6/7/2021 | 
| 4.0.0-preview.5 | 8,840 | 5/21/2021 | 
| 4.0.0-preview.4 | 15,342 | 5/7/2021 | 
| 4.0.0-preview.3 | 11,325 | 4/22/2021 | 
| 4.0.0-preview.2 | 13,109 | 4/1/2021 | 
| 4.0.0-preview.1 | 25,549 | 3/17/2021 | 
| 3.35.0 | 5,283,743 | 6/15/2021 | 
| 3.34.0 | 461,597 | 6/10/2021 | 
| 3.33.0 | 4,038,362 | 5/20/2021 | 
| 3.32.0 | 606,838 | 5/12/2021 | 
| 3.31.0 | 271,614 | 5/7/2021 | 
| 3.30.0 | 934,001 | 4/20/2021 | 
| 3.29.0 | 697,567 | 4/2/2021 | 
| 3.28.0 | 316,183 | 3/25/2021 | 
| 3.27.0 | 1,034,116 | 3/10/2021 | 
| 3.26.0 | 409,965 | 3/4/2021 | 
| 3.25.0 | 499,008 | 2/18/2021 | 
| 3.24.0 | 525,989 | 2/10/2021 | 
| 3.23.0 | 635,467 | 1/29/2021 | 
| 3.22.0 | 598,244 | 1/20/2021 | 
| 3.21.0 | 1,390,679 | 12/8/2020 | 
| 3.20.0 | 1,215,130 | 11/19/2020 | 
| 3.19.0 | 1,360,078 | 10/27/2020 | 
| 3.18.0 | 591,164 | 10/14/2020 | 
| 3.17.0 | 225,731 | 10/10/2020 | 
| 3.16.0 | 255,174 | 10/7/2020 | 
| 3.15.0 | 635,394 | 9/24/2020 | 
| 3.14.0 | 248,613 | 9/15/2020 | 
| 3.13.0 | 150,215 | 9/10/2020 | 
| 3.12.0 | 988,608 | 8/26/2020 | 
| 3.11.0 | 19,443 | 8/25/2020 | 
| 3.10.0 | 168,971 | 8/18/2020 | 
| 3.9.0 | 5,436,521 | 7/28/2020 | 
| 3.8.0 | 1,276,322 | 6/16/2020 | 
| 3.7.0 | 235,970 | 6/9/2020 | 
| 3.6.0 | 710,484 | 5/21/2020 | 
| 3.5.0 | 356,647 | 5/12/2020 | 
| 3.4.0 | 231,683 | 5/1/2020 | 
| 3.3.0 | 408,789 | 4/14/2020 | 
| 3.2.0 | 139,047 | 4/7/2020 | 
| 3.1.0 | 245,479 | 4/1/2020 | 
| 3.0.1 | 383,072 | 3/18/2020 | 
| 1.21.0 | 8,105,765 | 12/11/2019 | 
| 1.20.0 | 753,974 | 11/6/2019 | 
| 1.19.0 | 200,471 | 10/29/2019 | 
| 1.18.0 | 317,742 | 10/15/2019 | 
| 1.17.0 | 928,765 | 8/15/2019 | 
| 1.16.0 | 742,213 | 7/2/2019 | 
| 1.15.0 | 1,363,798 | 5/1/2019 | 
| 1.14.0 | 1,707,064 | 3/25/2019 | 
| 1.14.0-preview | 23,057 | 2/25/2019 | 
| 1.13.0-preview | 27,472 | 12/18/2018 | 
| 1.12.0 | 1,446,072 | 10/31/2018 | 
| 1.11.0 | 310,637 | 9/19/2018 | 
| 1.10.0 | 433,421 | 7/6/2018 | 
| 1.9.0 | 2,042,068 | 5/3/2018 | 
| 1.8.1 | 223,342 | 3/26/2018 | 
| 1.7.0 | 207,379 | 12/14/2017 | 
| 1.6.2 | 161,175 | 10/6/2017 | 
| 1.6.1 | 4,982 | 10/5/2017 | 
| 1.6.0 | 13,756 | 9/26/2017 | 
| 1.5.1 | 83,607 | 8/24/2017 | 
| 1.5.0 | 57,526 | 8/8/2017 | 
| 1.4.0 | 252,904 | 6/12/2017 | 
| 1.3.0 | 203,667 | 5/10/2017 | 
| 1.2.1 | 110,653 | 2/13/2017 | 
| 1.2.0 | 123,038 | 11/8/2016 | 
| 1.1.1 | 119,758 | 9/27/2016 | 
| 1.0.1 | 333,075 | 4/21/2016 | 
| 1.0.0 | 15,717 | 3/30/2016 | 
| 0.2.8-rc | 12,601 | 6/24/2015 |