DotNetCore.CAP
10.0.0-preview-280318356
dotnet add package DotNetCore.CAP --version 10.0.0-preview-280318356
NuGet\Install-Package DotNetCore.CAP -Version 10.0.0-preview-280318356
<PackageReference Include="DotNetCore.CAP" Version="10.0.0-preview-280318356" />
<PackageVersion Include="DotNetCore.CAP" Version="10.0.0-preview-280318356" />
<PackageReference Include="DotNetCore.CAP" />
paket add DotNetCore.CAP --version 10.0.0-preview-280318356
#r "nuget: DotNetCore.CAP, 10.0.0-preview-280318356"
#:package DotNetCore.CAP@10.0.0-preview-280318356
#addin nuget:?package=DotNetCore.CAP&version=10.0.0-preview-280318356&prerelease
#tool nuget:?package=DotNetCore.CAP&version=10.0.0-preview-280318356&prerelease
<p align="center"> <img height="140" src="https://raw.githubusercontent.com/dotnetcore/CAP/master/docs/content/img/logo.svg" alt="CAP Logo"> </p>
CAP 中文
CAP is a .NET library that provides a lightweight, easy-to-use, and efficient solution for distributed transactions and event bus integration.
When building SOA or Microservice-based systems, services often need to be integrated via events. However, simply using a message queue cannot guarantee reliability. CAP leverages a local message table, integrated with your current database, to solve exceptions that can occur during distributed system communications. This ensures that event messages are never lost.
You can also use CAP as a standalone EventBus. It offers a simplified approach to event publishing and subscribing without requiring you to inherit or implement any specific interfaces.
Key Features
Core Functionality
- Distributed Transactions: Guarantees data consistency across microservices using a local message table (Outbox Pattern).
- Event Bus: High-performance, lightweight event bus for decoupled communication.
- Guaranteed Delivery: Ensures messages are never lost, with automatic retries for failed messages.
Advanced Messaging
- Delayed Messages: Native support for publishing messages with a delay, without relying on message queue features.
- Flexible Subscriptions: Supports attribute-based, wildcard (
*,#), and partial topic subscriptions. - Consumer Groups & Fan-Out: Easily implement competing consumer or fan-out patterns for load balancing or broadcasting.
- Parallel & Serial Processing: Configure consumers for high-throughput parallel processing or ordered sequential execution.
- Backpressure Mechanism: Automatically manages processing speed to prevent memory overload (OOM) under high load.
Extensibility & Integration
- Pluggable Architecture: Supports a wide range of message queues (RabbitMQ, Kafka, Azure Service Bus, etc.) and databases (SQL Server, PostgreSQL, MongoDB, etc.).
- Heterogeneous Systems: Provides mechanisms to integrate with non-CAP or legacy systems.
- Customizable Filters & Serialization: Intercept the processing pipeline with custom filters and support various serialization formats.
Monitoring & Observability
- Real-time Dashboard: A built-in web dashboard to monitor messages, view status, and manually retry.
- Service Discovery: Integrates with Consul and Kubernetes for node discovery in a distributed environment.
- OpenTelemetry Support: Built-in instrumentation for distributed tracing, providing end-to-end visibility.
Architecture Overview

CAP implements the Outbox Pattern as described in the eShop on .NET ebook.
Getting Started
1. Installation
Install the main CAP package into your project using NuGet.
PM> Install-Package DotNetCore.CAP
Next, install the desired transport and storage providers.
Transports (Message Queues):
PM> Install-Package DotNetCore.CAP.Kafka
PM> Install-Package DotNetCore.CAP.RabbitMQ
PM> Install-Package DotNetCore.CAP.AzureServiceBus
PM> Install-Package DotNetCore.CAP.AmazonSQS
PM> Install-Package DotNetCore.CAP.NATS
PM> Install-Package DotNetCore.CAP.RedisStreams
PM> Install-Package DotNetCore.CAP.Pulsar
Storage (Databases):
The event log table will be integrated into the database you select.
PM> Install-Package DotNetCore.CAP.SqlServer
PM> Install-Package DotNetCore.CAP.MySql
PM> Install-Package DotNetCore.CAP.PostgreSql
PM> Install-Package DotNetCore.CAP.MongoDB // Requires MongoDB 4.0+ cluster
2. Configuration
Configure CAP in your Startup.cs or Program.cs.
public void ConfigureServices(IServiceCollection services)
{
// If you are using EF as the ORM
services.AddDbContext<AppDbContext>();
// If you are using MongoDB
services.AddSingleton<IMongoClient>(new MongoClient("..."));
services.AddCap(x =>
{
// Using Entity Framework
// CAP can auto-discover the connection string
x.UseEntityFramework<AppDbContext>();
// Using ADO.NET
x.UseSqlServer("Your ConnectionString");
x.UseMySql("Your ConnectionString");
x.UsePostgreSql("Your ConnectionString");
// Using MongoDB (requires a 4.0+ cluster)
x.UseMongoDB("Your ConnectionString");
// Choose your message transport
x.UseRabbitMQ("HostName");
x.UseKafka("ConnectionString");
x.UseAzureServiceBus("ConnectionString");
x.UseAmazonSQS(options => { /* ... */ });
x.UseNATS("ConnectionString");
x.UsePulsar("ConnectionString");
x.UseRedisStreams("ConnectionString");
});
}
3. Publish Messages
Inject ICapPublisher into your controller or service to publish events. As of version 7.0, you can also publish delayed messages.
public class PublishController : Controller
{
private readonly ICapPublisher _capBus;
public PublishController(ICapPublisher capPublisher)
{
_capBus = capPublisher;
}
[Route("~/adonet/transaction")]
public IActionResult AdonetWithTransaction()
{
using (var connection = new MySqlConnection(ConnectionString))
{
// Start a transaction with auto-commit enabled
using (var transaction = connection.BeginTransaction(_capBus, autoCommit: true))
{
// Your business logic...
_capBus.Publish("xxx.services.show.time", DateTime.Now);
}
}
return Ok();
}
[Route("~/ef/transaction")]
public IActionResult EntityFrameworkWithTransaction([FromServices] AppDbContext dbContext)
{
using (var trans = dbContext.Database.BeginTransaction(_capBus, autoCommit: true))
{
// Your business logic...
_capBus.Publish("xxx.services.show.time", DateTime.Now);
}
return Ok();
}
[Route("~/publish/delay")]
public async Task<IActionResult> PublishWithDelay()
{
// Publish a message with a 30-second delay
await _capBus.PublishDelayAsync(TimeSpan.FromSeconds(30), "xxx.services.show.time", DateTime.Now);
return Ok();
}
}
4. Subscribe to Messages
In a Controller Action
Add the [CapSubscribe] attribute to a controller action to subscribe to a topic.
public class SubscriptionController : Controller
{
[CapSubscribe("xxx.services.show.time")]
public void CheckReceivedMessage(DateTime messageTime)
{
Console.WriteLine($"Message received: {messageTime}");
}
}
In a Business Logic Service
If your subscriber is not in a controller, the class must implement the ICapSubscribe interface.
namespace BusinessCode.Service
{
public interface ISubscriberService
{
void CheckReceivedMessage(DateTime datetime);
}
public class SubscriberService : ISubscriberService, ICapSubscribe
{
[CapSubscribe("xxx.services.show.time")]
public void CheckReceivedMessage(DateTime datetime)
{
// Handle the message
}
}
}
Remember to register your service in Startup.cs:
public void ConfigureServices(IServiceCollection services)
{
services.AddTransient<ISubscriberService, SubscriberService>();
services.AddCap(x =>
{
// ...
});
}
Asynchronous Subscriptions
For async operations, your subscription method should return a Task and can accept a CancellationToken.
public class AsyncSubscriber : ICapSubscribe
{
[CapSubscribe("topic.name")]
public async Task ProcessAsync(Message message, CancellationToken cancellationToken)
{
await SomeOperationAsync(message, cancellationToken);
}
}
Partial Topic Subscriptions
Group topic subscriptions by defining a partial topic on the class level. The final topic will be a combination of the class-level and method-level topics. In this example, the Create method subscribes to customers.create.
[CapSubscribe("customers")]
public class CustomersSubscriberService : ICapSubscribe
{
[CapSubscribe("create", isPartial: true)]
public void Create(Customer customer)
{
// ...
}
}
Subscription Groups
Subscription groups are similar to consumer groups in Kafka. They allow you to load-balance message processing across multiple instances of a service.
By default, CAP uses the assembly name as the group name. If multiple subscribers in the same group subscribe to the same topic, only one will receive the message (competing consumers). If they are in different groups, all will receive the message (fan-out).
You can specify a group directly in the attribute:
[CapSubscribe("xxx.services.show.time", Group = "group1")]
public void ShowTime1(DateTime datetime)
{
// ...
}
[CapSubscribe("xxx.services.show.time", Group = "group2")]
public void ShowTime2(DateTime datetime)
{
// ...
}
You can also set a default group name in the configuration:
services.AddCap(x =>
{
x.DefaultGroup = "my-default-group";
});
Dashboard
CAP provides a real-time dashboard to view sent and received messages and their status.
PM> Install-Package DotNetCore.CAP.Dashboard
The dashboard is accessible by default at http://localhost:xxx/cap. You can customize the path via options: x.UseDashboard(opt => { opt.PathMatch = "/my-cap"; });.
For distributed environments, the dashboard supports service discovery to view data from all nodes.
- Consul: View Consul config docs
- Kubernetes: Use the
DotNetCore.CAP.Dashboard.K8spackage. View Kubernetes config docs
Contribute
We welcome contributions! Participating in discussions, reporting issues, and submitting pull requests are all great ways to help. Please read our contributing guidelines (we can create this file if it doesn't exist) to get started.
License
CAP is licensed under the MIT License.
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | 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 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.Extensions.Hosting.Abstractions (>= 10.0.0)
- Microsoft.Extensions.Logging.Abstractions (>= 10.0.0)
- Microsoft.Extensions.Options (>= 10.0.0)
-
net8.0
- Microsoft.Extensions.Hosting.Abstractions (>= 10.0.0)
- Microsoft.Extensions.Logging.Abstractions (>= 10.0.0)
- Microsoft.Extensions.Options (>= 10.0.0)
-
net9.0
- Microsoft.Extensions.Hosting.Abstractions (>= 10.0.0)
- Microsoft.Extensions.Logging.Abstractions (>= 10.0.0)
- Microsoft.Extensions.Options (>= 10.0.0)
NuGet packages (250)
Showing the top 5 NuGet packages that depend on DotNetCore.CAP:
| Package | Downloads |
|---|---|
|
DotNetCore.CAP.RabbitMQ
Distributed transaction solution in micro-service base on eventually consistency, also an eventbus with Outbox pattern. |
|
|
DotNetCore.CAP.Dashboard
Distributed transaction solution in micro-service base on eventually consistency, also an eventbus with Outbox pattern. |
|
|
DotNetCore.CAP.SqlServer
Distributed transaction solution in micro-service base on eventually consistency, also an eventbus with Outbox pattern. |
|
|
DotNetCore.CAP.InMemoryStorage
Distributed transaction solution in micro-service base on eventually consistency, also an eventbus with Outbox pattern. |
|
|
DotNetCore.CAP.PostgreSql
Distributed transaction solution in micro-service base on eventually consistency, also an eventbus with Outbox pattern. |
GitHub repositories (22)
Showing the top 20 popular GitHub repositories that depend on DotNetCore.CAP:
| Repository | Stars |
|---|---|
|
SkyAPM/SkyAPM-dotnet
The .NET/.NET Core instrument agent for Apache SkyWalking
|
|
|
AlphaYu/adnc
.NET微服务/分布式开发框架,同时也适用于单体架构系统的开发。
|
|
|
colinin/abp-next-admin
这是基于vue-vben-admin 模板适用于abp vNext的前端管理项目
|
|
|
bing-framework/Bing.NetCore
Bing是基于 .net core 3.1 的框架,旨在提升团队的开发输出能力,由常用公共操作类(工具类、帮助类)、分层架构基类,第三方组件封装,第三方业务接口封装等组成。
|
|
|
91270/Meiam.System
.NET 8 / .NET 5 WebAPI + Vue 2.0 + RBAC 企业级前后端分离权限框架
|
|
|
jerrytang67/SoMall
社交电商商城开源项目.socail+mall即取名SoMall ,abp netcore 3.1 angular vue uni-app typescript docker mssql
|
|
|
SkyChenSky/Sikiro
整合了社区主流开源框架(CAP、SkyAPM、WebAPIClient、Chloe等)的微服务项目示例
|
|
|
axzxs2001/Asp.NetCoreExperiment
原来所有项目都移动到**OleVersion**目录下进行保留。新的案例装以.net 5.0为主,一部分对以前案例进行升级,一部分将以前的工作经验总结出来,以供大家参考!
|
|
|
netcorepal/netcorepal-cloud-framework
一个基于ASP.NET Core实现的整洁领域驱动设计落地战术框架。 A tactical framework for Clean Domain-Driven Design based on ASP.NET Core.
|
|
|
junkai-li/NetCoreKevin
基于NET8搭建DDD-微服务-现代化Saas企业级WebAPI前后端分离架构:前端Vue3、IDS4单点登录、多缓存、自动任务、分布式、一库多租户、日志、授权和鉴权、CAP集成事件、SignalR、领域事件、ESL、MCP协议服务、IOC模块化注入、Cors、Quartz自动任务、多短信集成、AI、AgentFramework智能体、AISemanticKernel集成、RAG检索增强、OCR验证码识别、API多版本兼容、单元集成测试、RabbitMQ
|
|
|
dcomartin/LooselyCoupledMonolith
|
|
|
witskeeper/geektime
|
|
|
wjkhappy14/Abp.VNext.Hello
Abp.VNext.Hello
|
|
|
leooneone/aibpm.plus
AIBPM是一个开源的工作流引擎。本项目是后端服务,前端请移步aibpm.ui.plus。
|
|
|
RayWangQvQ/RayPI
一个基于.NET Core 3.1的DDD(领域驱动)的极简风WebApi开发框架。
|
|
|
iamxiaozhuang/MicroserviceDemo
Dot Net Core 微服务例子;采用Ocelot实现服务网关,IdentityServer4实现认证,CAP实现分布式数据最终一致性。 微服务内部采用领域模型驱动设计,实现了接口日志、权限控制、多租户、软删除、读写分离等特性
|
|
|
hzy-6/hzy-admin
前后端分离权限管理系统基架! 数据权限、按钮权限、动态菜单、动态任务调度、动态WebApi、定时标记 [Scheduled("0/5 * * * * ?")] 、代码生成
|
|
|
Kation/ComBoost
ComBoost是一个领域驱动的快速开发框架
|
|
|
luoyunchong/dotnetcore-examples
about learning DotNetCore via examples. DotNetCore 教程、技术栈示例代码,快速简单上手教程。
|
|
|
EasyAbp/Abp.EventBus.CAP
This is a repository integrated CAP with ABP EventBus
|
| Version | Downloads | Last Updated |
|---|---|---|
| 10.0.0-preview-280318356 | 577 | 11/19/2025 |
| 8.4.1 | 27,927 | 10/23/2025 |
| 8.4.0 | 39,625 | 9/7/2025 |
| 8.4.0-preview-271338004 | 795 | 8/13/2025 |
| 8.4.0-preview-270476069 | 835 | 7/28/2025 |
| 8.4.0-preview-270285676 | 489 | 7/26/2025 |
| 8.3.5 | 197,779 | 5/23/2025 |
| 8.3.5-preview-262164550 | 710 | 4/23/2025 |
| 8.3.4 | 81,557 | 4/22/2025 |
| 8.3.3 | 199,608 | 2/22/2025 |
| 8.3.3-preview-255432523 | 2,056 | 2/4/2025 |
| 8.3.3-preview-254219859 | 1,247 | 1/21/2025 |
| 8.3.2 | 169,592 | 12/5/2024 |
| 8.3.2-preview-248100009 | 1,691 | 11/11/2024 |
| 8.3.1 | 73,715 | 11/5/2024 |
| 8.3.1-preview-247022046 | 538 | 10/31/2024 |
| 8.3.0 | 246,705 | 10/9/2024 |
| 8.3.0-preview-243613753 | 1,415 | 9/20/2024 |
| 8.2.0 | 494,174 | 6/23/2024 |
| 8.2.0-preview-234883029 | 6,825 | 6/11/2024 |
| 8.2.0-preview-233720681 | 700 | 5/29/2024 |
| 8.1.2 | 180,443 | 5/7/2024 |
| 8.1.1 | 39,748 | 4/21/2024 |
| 8.1.1-preview-230008876 | 697 | 4/16/2024 |
| 8.1.0 | 59,348 | 3/19/2024 |
| 8.1.0-preview-226548602 | 1,071 | 3/7/2024 |
| 8.1.0-preview-225165712 | 47,740 | 2/20/2024 |
| 8.0.1 | 307,004 | 1/25/2024 |
| 8.0.0 | 261,455 | 12/14/2023 |
| 8.0.0-preview-218723843 | 2,087 | 12/7/2023 |
| 8.0.0-preview-218688659 | 1,870 | 12/7/2023 |
| 7.2.3-preview-217562936 | 4,728 | 11/24/2023 |
| 7.2.3-preview-217174309 | 1,883 | 11/19/2023 |
| 7.2.3-preview-216527974 | 5,318 | 11/12/2023 |
| 7.2.2 | 125,422 | 11/1/2023 |
| 7.2.1 | 210,673 | 9/8/2023 |
| 7.2.0 | 164,994 | 7/30/2023 |
| 7.2.0-preview-207226127 | 2,571 | 7/27/2023 |
| 7.2.0-preview-207205557 | 2,557 | 7/27/2023 |
| 7.2.0-preview-204044155 | 10,028 | 6/20/2023 |
| 7.1.4 | 91,090 | 6/17/2023 |
| 7.1.3 | 80,118 | 5/17/2023 |
| 7.1.3-preview-200912175 | 2,659 | 5/15/2023 |
| 7.1.3-preview-200730887 | 2,520 | 5/13/2023 |
| 7.1.2 | 57,408 | 4/25/2023 |
| 7.1.2-preview-198398083 | 2,585 | 4/16/2023 |
| 7.1.1 | 80,316 | 4/7/2023 |
| 7.1.1-preview-197551401 | 2,635 | 4/6/2023 |
| 7.1.1-preview-196764828 | 9,885 | 3/28/2023 |
| 7.1.1-preview-196761499 | 2,574 | 3/28/2023 |
| 7.1.0 | 290,810 | 3/5/2023 |
| 7.1.0-preview-194230942 | 3,120 | 2/27/2023 |
| 7.1.0-preview-193202380 | 2,869 | 2/15/2023 |
| 7.0.3 | 73,471 | 2/2/2023 |
| 7.0.2 | 67,942 | 1/9/2023 |
| 7.0.2-preview-189692844 | 2,723 | 1/9/2023 |
| 7.0.1 | 58,636 | 12/16/2022 |
| 7.0.0 | 364,123 | 11/27/2022 |
| 7.0.0-preview-186133345 | 2,640 | 11/25/2022 |
| 7.0.0-preview-185881699 | 2,673 | 11/22/2022 |
| 7.0.0-preview-185533510 | 2,559 | 11/18/2022 |
| 7.0.0-preview-185469232 | 2,536 | 11/18/2022 |
| 7.0.0-preview-185451687 | 2,607 | 11/17/2022 |
| 6.2.1 | 806,761 | 10/15/2022 |
| 6.2.1-preview-180716003 | 4,168 | 9/23/2022 |
| 6.2.0 | 112,323 | 9/19/2022 |
| 6.1.1 | 7,976 | 9/19/2022 |
| 6.1.1-preview-176300030 | 3,495 | 8/3/2022 |
| 6.1.1-preview-175769056 | 3,256 | 7/28/2022 |
| 6.1.0 | 662,337 | 6/10/2022 |
| 6.1.0-preview-165373954 | 3,943 | 3/30/2022 |
| 6.1.0-preview-163077268 | 4,717 | 3/3/2022 |
| 6.1.0-preview-162971117 | 3,188 | 3/2/2022 |
| 6.0.1 | 555,986 | 2/15/2022 |
| 6.0.0 | 289,215 | 1/6/2022 |
| 6.0.0-preview-153999281 | 5,982 | 11/18/2021 |
| 5.2.0 | 420,506 | 11/12/2021 |
| 5.2.0-preview-152861792 | 3,843 | 11/5/2021 |
| 5.2.0-preview-150458135 | 4,409 | 10/8/2021 |
| 5.1.4 | 213,653 | 9/29/2021 |
| 5.1.4-preview-147174683 | 15,786 | 8/31/2021 |
| 5.1.3 | 138,025 | 8/18/2021 |
| 5.1.3-preview-144669387 | 9,153 | 8/2/2021 |
| 5.1.3-preview-144222698 | 3,980 | 7/28/2021 |
| 5.1.2 | 156,623 | 7/26/2021 |
| 5.1.2-preview-143176668 | 4,217 | 7/16/2021 |
| 5.1.1 | 136,299 | 7/9/2021 |
| 5.1.1-preview-141622241 | 3,879 | 6/29/2021 |
| 5.1.1-preview-140603701 | 3,744 | 6/16/2021 |
| 5.1.0 | 95,221 | 6/7/2021 |
| 5.1.0-preview-138879827 | 3,784 | 5/27/2021 |
| 5.0.3 | 112,758 | 5/14/2021 |
| 5.0.2 | 63,038 | 4/28/2021 |
| 5.0.2-preview-136262472 | 3,624 | 4/27/2021 |
| 5.0.2-preview-136113481 | 3,676 | 4/25/2021 |
| 5.0.2-preview-135224594 | 3,680 | 4/15/2021 |
| 5.0.2-preview-134636747 | 3,530 | 4/8/2021 |
| 5.0.1 | 114,260 | 4/7/2021 |
| 5.0.1-preview-133783177 | 3,621 | 3/29/2021 |
| 5.0.0 | 32,385 | 3/23/2021 |
| 5.0.0-preview-132888327 | 3,693 | 3/19/2021 |
| 5.0.0-preview-132124922 | 4,811 | 3/10/2021 |
| 5.0.0-preview-131679580 | 4,901 | 3/5/2021 |
| 5.0.0-preview-126609691 | 10,481 | 1/5/2021 |
| 3.1.2 | 890,673 | 12/3/2020 |
| 3.1.2-preview-121943182 | 4,506 | 11/12/2020 |
| 3.1.2-preview-120665033 | 4,410 | 10/29/2020 |
| 3.1.2-preview-120490779 | 4,302 | 10/26/2020 |
| 3.1.2-preview-119453473 | 4,514 | 10/14/2020 |
| 3.1.1 | 399,275 | 9/23/2020 |
| 3.1.1-preview-115802637 | 4,314 | 9/2/2020 |
| 3.1.0 | 559,697 | 8/15/2020 |
| 3.1.0-preview-114160390 | 4,309 | 8/14/2020 |
| 3.1.0-preview-112969177 | 7,680 | 7/31/2020 |
| 3.1.0-preview-112250362 | 4,532 | 7/23/2020 |
| 3.1.0-preview-111117527 | 5,351 | 7/10/2020 |
| 3.1.0-preview-108719052 | 4,943 | 6/12/2020 |
| 3.0.4 | 210,012 | 5/27/2020 |
| 3.0.4-preview-106413158 | 4,107 | 5/16/2020 |
| 3.0.4-preview-103991021 | 5,185 | 4/18/2020 |
| 3.0.4-preview-102596937 | 8,459 | 4/2/2020 |
| 3.0.4-preview-102593320 | 4,193 | 4/2/2020 |
| 3.0.3 | 112,084 | 4/1/2020 |
| 3.0.3-preview-98619331 | 15,294 | 2/16/2020 |
| 3.0.2 | 81,276 | 2/5/2020 |
| 3.0.2-preview-97503759 | 4,310 | 2/3/2020 |
| 3.0.1 | 27,861 | 1/19/2020 |
| 3.0.1-preview-95233114 | 4,419 | 1/8/2020 |
| 3.0.1-preview-94915444 | 4,663 | 1/4/2020 |
| 3.0.0 | 93,883 | 12/30/2019 |
| 3.0.0-preview-93361469 | 5,296 | 12/17/2019 |
| 3.0.0-preview-92995853 | 4,524 | 12/13/2019 |
| 3.0.0-preview-92907246 | 4,289 | 12/12/2019 |
| 2.6.0 | 216,945 | 8/29/2019 |
| 2.6.0-preview-82454970 | 6,603 | 8/14/2019 |
| 2.6.0-preview-82001197 | 6,308 | 8/8/2019 |
| 2.6.0-preview-80821564 | 5,282 | 7/25/2019 |
| 2.6.0-preview-79432176 | 7,269 | 7/9/2019 |
| 2.5.1 | 125,909 | 6/21/2019 |
| 2.5.1-preview-75824665 | 12,679 | 5/28/2019 |
| 2.5.1-preview-73792921 | 5,292 | 5/5/2019 |
| 2.5.1-preview-73031417 | 4,852 | 4/26/2019 |
| 2.5.0 | 191,208 | 3/30/2019 |
| 2.5.0-preview-69219007 | 7,848 | 3/14/2019 |
| 2.5.0-preview-69210974 | 4,784 | 3/13/2019 |
| 2.5.0-preview-68640186 | 21,823 | 3/6/2019 |
| 2.5.0-preview-67093158 | 4,822 | 2/16/2019 |
| 2.4.2 | 51,747 | 1/8/2019 |
| 2.4.2-preview-62147279 | 4,956 | 12/21/2018 |
| 2.4.1 | 6,224 | 12/19/2018 |
| 2.4.0 | 7,107 | 12/8/2018 |
| 2.4.0-preview-58415569 | 5,125 | 11/8/2018 |
| 2.4.0-preview-58238865 | 4,821 | 11/6/2018 |
| 2.3.1 | 36,095 | 10/29/2018 |
| 2.3.1-preview-57307518 | 4,916 | 10/26/2018 |
| 2.3.1-preview-53660607 | 4,723 | 9/25/2018 |
| 2.3.1-preview-53320926 | 4,907 | 9/10/2018 |
| 2.3.0 | 39,360 | 8/30/2018 |
| 2.2.6-preview-50057154 | 5,141 | 8/3/2018 |
| 2.2.6-preview-50053657 | 5,054 | 8/3/2018 |
| 2.2.6-preview-49112414 | 4,879 | 7/23/2018 |
| 2.2.5 | 10,363 | 7/19/2018 |
| 2.2.5-preview-45566217 | 5,056 | 6/12/2018 |
| 2.2.5-preview-45139132 | 5,217 | 6/7/2018 |
| 2.2.4 | 16,385 | 6/5/2018 |
| 2.2.3-preview-43309801 | 5,325 | 5/17/2018 |
| 2.2.2 | 25,822 | 4/28/2018 |
| 2.2.2-preview-40816597 | 5,269 | 4/18/2018 |
| 2.2.1 | 8,705 | 4/18/2018 |
| 2.2.0 | 7,106 | 4/17/2018 |
| 2.2.0-preview-40294348 | 5,023 | 4/12/2018 |
| 2.2.0-preview-38490295 | 5,181 | 3/23/2018 |
| 2.2.0-preview-37969809 | 6,113 | 3/16/2018 |
| 2.2.0-preview-37943663 | 4,768 | 3/16/2018 |
| 2.1.4 | 6,998 | 3/16/2018 |
| 2.1.4-preview-34848409 | 6,817 | 2/8/2018 |
| 2.1.4-preview-34825232 | 5,041 | 2/8/2018 |
| 2.1.4-preview-33704197 | 5,116 | 1/26/2018 |
| 2.1.3 | 12,426 | 1/24/2018 |
| 2.1.3-preview-33358922 | 5,048 | 1/22/2018 |
| 2.1.3-preview-33191223 | 5,064 | 1/20/2018 |
| 2.1.3-preview-31198104 | 6,376 | 12/28/2017 |
| 2.1.2 | 7,790 | 12/18/2017 |
| 2.1.2-preview-30288174 | 5,192 | 12/17/2017 |
| 2.1.2-preview-30286136 | 5,036 | 12/17/2017 |
| 2.1.2-preview-29226626 | 4,976 | 12/5/2017 |
| 2.1.2-preview-28879945 | 4,832 | 12/1/2017 |
| 2.1.2-preview-28782089 | 4,705 | 12/1/2017 |
| 2.1.1 | 5,991 | 11/28/2017 |
| 2.1.1-preview-28628301 | 4,973 | 11/28/2017 |
| 2.1.1-preview-28414190 | 4,812 | 11/26/2017 |
| 2.1.0 | 6,305 | 11/17/2017 |
| 2.1.0-preview-26231671 | 5,416 | 10/31/2017 |
| 2.1.0-preview-25885614 | 4,715 | 10/30/2017 |
| 2.0.2 | 5,897 | 9/29/2017 |
| 2.0.1 | 6,039 | 9/16/2017 |
| 2.0.1-preview-21560113 | 4,723 | 9/7/2017 |
| 2.0.1-preview-21392243 | 4,765 | 9/5/2017 |
| 2.0.0 | 6,904 | 9/1/2017 |
| 2.0.0-preview-20091963 | 4,750 | 8/21/2017 |
| 2.0.0-preview-19793485 | 4,641 | 8/18/2017 |
| 1.2.0-preview-00019208119 | 4,693 | 8/11/2017 |
| 1.1.1-preview-00018720262 | 4,610 | 8/5/2017 |
| 1.1.0 | 6,786 | 8/4/2017 |
| 1.1.0-preview-00018359725 | 4,791 | 8/1/2017 |
| 1.1.0-preview-00018287510 | 4,670 | 8/1/2017 |
| 1.1.0-preview-00018199934 | 4,710 | 7/30/2017 |
| 1.1.0-preview-00017833331 | 4,757 | 7/27/2017 |
| 1.1.0-preview-00017748473 | 4,657 | 7/25/2017 |
| 1.0.1 | 5,595 | 7/24/2017 |
| 1.0.1-preview-00017636063 | 4,585 | 7/24/2017 |
| 1.0.1-preview-00017490435 | 4,522 | 7/22/2017 |
| 1.0.1-preview-00017285652 | 4,429 | 7/20/2017 |
| 1.0.0 | 13,657 | 7/19/2017 |
| 0.1.0-ci-00016390477 | 4,291 | 7/9/2017 |
| 0.1.0-ci-00016261636 | 4,554 | 7/8/2017 |
| 0.1.0-ci-00016020116 | 4,537 | 7/5/2017 |
| 0.1.0-ci-00016011622 | 4,670 | 7/5/2017 |
| 0.1.0-ci-00015583876 | 4,742 | 6/30/2017 |