NewLife.Agent 10.13.2025.901

dotnet add package NewLife.Agent --version 10.13.2025.901
                    
NuGet\Install-Package NewLife.Agent -Version 10.13.2025.901
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="NewLife.Agent" Version="10.13.2025.901" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="NewLife.Agent" Version="10.13.2025.901" />
                    
Directory.Packages.props
<PackageReference Include="NewLife.Agent" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add NewLife.Agent --version 10.13.2025.901
                    
#r "nuget: NewLife.Agent, 10.13.2025.901"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package NewLife.Agent@10.13.2025.901
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=NewLife.Agent&version=10.13.2025.901
                    
Install as a Cake Addin
#tool nuget:?package=NewLife.Agent&version=10.13.2025.901
                    
Install as a Cake Tool

NewLife.Agent - 守护服务管理组件

GitHub top language GitHub License Nuget Downloads Nuget Nuget (with prereleases) Nuget Downloads Nuget Nuget (with prereleases)

使用教程:https://newlifex.com/core/agent


目录


简介

NewLife.Agent 是一个跨平台服务/守护进程开发与运行框架,帮助普通控制台 / Web / Worker / 数据处理等长期运行应用快速注册为 Windows 服务Linux Systemd(以及其它 init 系统)并提供:安装/卸载/启动/停止/调试、健康监控、资源超限重启、定时重启、看门狗、多实例部署等能力。支持 .NET Framework 4.x.NET (Core) 3.1+ 直至最新版本,多 Target 框架长期维护。


适用场景

  • 后台常驻:RPC 服务端、MQTT 服务器、网关、调度/爬虫、IoT 采集、Cache/消息消费、数据处理流水线
  • ASP.NET Core 网站 / API / Blazor / Minimal API 需要以系统服务形式长期运行
  • Worker Service / BackgroundService 长期任务统一管理
  • 需要统一的健康监控(内存/线程/句柄)与自动重启策略
  • 需要简单可靠的看门狗守护其它已安装服务
  • 单一程序在多目录部署为多个独立服务实例(通过配置覆写 ServiceName / DisplayName)

核心特性

NewLife.Agent主要功能:

  1. 注册应用为系统服务或守护进程,随系统自动启动
  2. 支持控制台菜单控制安装、卸载、启动、停止,以及查看状态
  3. 支持控制台调试应用,解决Windows服务难以调试的问题
  4. 支持健康检测,限制内存、线程数、句柄数,超限时重启应用服务
  5. 支持应用服务定时重启,通过配置指定
  6. 支持看门狗WatchDog,通过配置指定要守护的目标应用服务,如果目标停止则启动
  7. 支持配置文件修改服务名,一个应用程序可在多个目录上部署为不同的系统服务

与同类工具不同:Agent 是“开发框架 + 运行管理”二合一,可直接在代码中扩展逻辑与命令;无需额外包装可执行文件。


架构概览

核心基类 ServiceBase 负责:

  • 统一入口 Main(args):解析命令 → 交互菜单 / 命令执行
  • 主机适配:根据平台与配置动态选择 IHost 实现(WindowsService / Systemd / OSXLaunch / Procd / RcInit / DefaultHost / WindowsAutorun)
  • 管理循环:周期性健康检查(内存/线程/句柄/定时重启/看门狗)
  • 命令体系:CommandFactory + 各种 *CommandHandler(安装、卸载、启动、停止、重启、运行、状态、看门狗等)
  • 资源超限策略:超限时通过 Host.Restart(ServiceName) 触发平滑重启
  • 退出处理:Host.RegisterExit 捕捉进程退出并清理日志

主要流程:

Main → InitService → Init(选择 Host + 载入/保存配置) → 解析命令或显示菜单 → StartLoop/StopLoop → DoCheck(健康/看门狗)

快速开始

最小控制台服务

public class MyService : ServiceBase
{
    public MyService()
    {
        ServiceName = "DemoAgent";        // 服务名
        DisplayName = "演示服务";          // 显示名
        Description = "演示用后台服务";    // 描述
    }

    public override void StartWork(String reason)
    {
        WriteLog("业务启动: {0}", reason);
        // TODO: 启动定时任务 / 网络监听 / 队列消费者等
        base.StartWork(reason);
    }

    public override void StopWork(String reason)
    {
        WriteLog("业务停止: {0}", reason);
        // TODO: 清理资源
        base.StopWork(reason);
    }
}

public static class Program
{
    public static void Main(String[] args)
    {
#if DEBUG
        if (args == null || args.Length == 0) args = new[] { "-run" }; // 调试快速进入模拟运行
#endif
        new MyService().Main(args);
    }
}

运行 dotnet run 后出现交互菜单,可一键安装/启动。部署后使用 -install / -start 等命令行参数实现无人值守操作。

.NET Web/Worker 集成示例

以 ASP.NET Core 为例(参见仓库 Zero.Web 示例):

public class WebAgent : ServiceBase
{
    public Func<IHostBuilder> BuildHost { get; set; }

    public WebAgent()
    {
        ServiceName = "WebAgent";
        DisplayName = "Web服务代理";
        Description = "承载 ASP.NET Core 的系统服务";
    }

    public override void StartWork(String reason)
    {
        var tokenSrc = new CancellationTokenSource();
        BuildHost?.Invoke()?.Build().RunAsync(tokenSrc.Token); // 非阻塞运行
        base.StartWork(reason);
    }
}

public static class Program
{
    public static void Main(String[] args)
    {
#if DEBUG
        if (args?.Length == 0) args = new[] { "-run" };
#endif
        new WebAgent { BuildHost = () => Host.CreateDefaultBuilder(args)
            .ConfigureWebHostDefaults(w => w.UseStartup<Startup>()) }.Main(args);
    }
}

通过非阻塞 RunAsync 嵌入宿主,实现 Web + Agent 统一的安装/运行/重启/监控治理。


命令行与交互菜单

运行无参数进入交互模式(黄色菜单),快捷键默认:

  • 1:显示状态(相当于 -status
  • 2:安装/卸载(-install / -uninstall
  • 3:启动/停止(-start / -stop
  • 4:重启(-restart
  • 5:模拟运行(-run,在当前进程内直接调用 StartWork,便于调试)
  • 7:看门狗检查(仅在配置 WatchDog 非空才显示)
  • 0:退出

常用无人值守命令(可脚本化):

MyApp.exe -install
MyApp.exe -start
MyApp.exe -stop
MyApp.exe -restart
MyApp.exe -status
MyApp.exe -uninstall
MyApp.exe -run          // 控制台调试
MyApp.exe -autorun      // 使用“登录自启动”模式(仅 Windows)
MyApp.exe -watchdog     // 立即执行一次看门狗检查

所有操作需在管理员/root 权限下执行(安装/卸载/启动/停止)。


配置文件说明

配置由 Setting.Current 提供(自动存储于应用配置目录),典型字段: | 字段 | 说明 | | ---- | ---- | | ServiceName | 服务名(可通过部署目录复制后修改实现多实例) | | DisplayName | 服务显示名 | | Description | 服务描述 | | UseAutorun | 是否使用登录自启动(Windows) | | WatchInterval | 监控循环间隔(秒)默认数秒级,影响资源检查频率 | | FreeMemoryInterval | 间隔触发一次主动内存回收(秒)0=关闭 | | MaxMemory | 进程工作集上限(MB),超限自动重启 | | MaxThread | 线程数上限,超限自动重启 | | MaxHandle | 句柄数上限,超限自动重启(Windows) | | AutoRestart | 定时重启间隔(分钟)0=关闭 | | RestartTimeRange | 允许执行定时重启的时间段,例如 02:00-05:00(避免高峰重启) | | WatchDog | 逗号/分号分隔的需要守护的其它系统服务名列表 | | AfterStart | 服务启动后要额外拉起的命令或进程(如外部脚本/子进程) |

示例(伪 JSON 仅说明,实际以项目配置格式存储):

{
  "ServiceName": "DemoAgent",
  "DisplayName": "演示服务",
  "WatchInterval": 5,
  "MaxMemory": 1024,
  "MaxThread": 500,
  "MaxHandle": 20000,
  "AutoRestart": 720,
  "RestartTimeRange": "02:00-05:00",
  "WatchDog": "Redis,nginx",
  "AfterStart": "dotnet SomeWorker.dll"
}

健康监控与重启策略

周期任务 DoCheck 按顺序执行:

  1. 内存检查(WorkingSet 超阈值 → Restart)
  2. 线程数检查
  3. 句柄数检查
  4. 定时重启(运行分钟数达到 AutoRestart,并在允许时间段内)
  5. 看门狗(守护其它服务)

一旦任一检查触发重启,后续检查当次跳过。重启通过底层 Host.Restart(ServiceName) 调用平台服务管理器完成,提升稳定性(避免内部状态损坏时继续运行)。

内存回收:按 FreeMemoryInterval 主动执行一次 GC + LOH Compact,并在 Windows 下调用 EmptyWorkingSet 释放工作集。


看门狗 WatchDog

配置 WatchDog = "ServiceA,ServiceB" 后:

  • 管理循环会检查目标服务是否“已安装但未运行”
  • 发现停止自动调用对应主机 API 启动
  • 在 Systemd + SysVinit 并存环境中会智能探测实际托管方式

适用于:主服务代理统一守护 Nginx / Redis / 业务自建服务 等关键进程。


自启动 vs 系统服务

  • 系统服务(默认):无需登录即可运行;适合服务器场景
  • 自启动(-autorun / UseAutorun=true):写入登录启动项,适合需要访问交互式桌面或简化权限的本地开发/桌面场景

跨平台主机适配策略

Init() 中按顺序选择:

  1. Windows: WindowsAutorun (当 UseAutorun) 否则 WindowsService
  2. macOS: OSXLaunch
  3. Linux: SystemdProcdRcInit(若均不可用则 DefaultHost

这样在不同发行版仍保持统一命令与运维体验。


与 NSSM / srvany 对比

项目 角色定位 是否需包装外部程序 代码内可扩展 健康监控 看门狗 多实例配置
NewLife.Agent 框架+运行 否(直接引用库) 是(命令/逻辑可扩展) 内置(内存/线程/句柄/定时)
NSSM / srvany 外部包装工具 需额外脚本

常见问题 FAQ

  1. 安装/启动失败?确保以管理员(Windows)或 root(Linux sudo)运行。
  2. 服务名重复?修改配置的 ServiceName 或复制目录后再安装。
  3. 调试困难?使用 -run 在当前控制台内直接执行业务逻辑。
  4. 如何查看日志?默认控制台输出 + 文本文件日志(根据 NewLife.Core 配置),可自定义 XTrace.Log
  5. 健康阈值如何关闭?将对应 MaxMemory / MaxThread / MaxHandle / AutoRestart 设为 0。
  6. 重启频繁?检查是否阈值过低或业务内存泄漏;可暂时调大阈值并观察日志。
  7. WatchDog 不生效?确认被守护服务已正确安装且名称与配置大小写/空格一致。
  8. 多实例部署?复制程序目录并分别修改配置(或启动参数)中的 ServiceName 后各自安装。

服务控制

一个服务代理示例跑起来的样子
image.png
image.png
这是Agent的标准控制台(Windows和Centos)。上面是该服务的状态信息,下面是控制菜单。
示例分析:

  • 服务名 XAgent/StarAgent,可以命令启动停止,Windows是net start XAgent/net stop XAgent,Linux是systemctl start StarAgent/systemctl stop StarAgent
  • 显示名“新生命服务代理”是在windows服务控制板里面看到的名字
  • 下一段信息给出了NewLife.Agent和当前应用的版本信息和编译时间
  • 黄色菜单可通过按键选择相应操作,内置012345,可自定义其它按键操作
  • 菜单1,显示状态,按下1后刷新状态信息
  • 菜单2,安装服务或卸载服务,安装成功后,显示信息变为卸载服务,反之亦然
  • 菜单3,启动服务或停止服务,安装后才可以看见
  • 菜单4,重启服务,安装且运行后可以看见
  • 菜单5,模拟运行,在当前进程启动应用主逻辑,用于业务逻辑调试,等同于Windows服务调用
  • 菜单0,退出应用服务

关于net8+的使用

MyServices8+.cs、Program8+.cs是net8+的demo,暂时是注释的,有需要可以参考

!!!注意,服务安装、卸载、启动、停止,在Windows/Linux上需要管理员权限运行

服务应用在Windows上以本地用户权限运行,有最高权限;
服务应用在Linux上以root权限运行,有最高权限;
该设计尽管带来了一定安全风险,但能够避免绝大部分初级用户的简单问题,优先易用性。


快速拥有

​ 使用NewLife组件的最简便方式是从Nuget引用,例如在项目Nuget管理中搜索NewLife.Agent 并引入。
​ NewLife组件由社区共创20多年,使用MIT开源协议,任何人可任意修改并再次发行(无需声明来源)!许多企业基于此构建内部开发框架时,甚至可通过批量替换源码中所有NewLife字符串为贵公司名实现私有化定制。
​ 团队始终秉承开放态度,不仅支持VisualStudio(最新正式版)打开解决方案编译,也兼容dotnet build命令行编译,项目文件摒弃复杂功能以追求简单易用,真正做到开箱即用。
​ 我们公开强命名证书newlife.snk以支持独自编译替换程序集。

​ 命令行中运行以下命令快速体验NewLife组件:

dotnet new install NewLife.Templates
dotnet new service --name agent
cd agent
dotnet run

新生命项目矩阵

各项目默认支持net9.0/netstandard2.1/netstandard2.0/net4.62/net4.5,旧版(2024.0801)支持net4.0/net2.0

项目 年份 说明
基础组件 支撑其它中间件以及产品项目
NewLife.Core 2002 核心库,日志、配置、缓存、网络、序列化、APM性能追踪
NewLife.XCode 2005 大数据中间件,单表百亿级,MySql/SQLite/SqlServer/Oracle/PostgreSql/达梦,自动分表,读写分离
NewLife.Net 2005 网络库,单机千万级吞吐率(2266万tps),单机百万级连接(400万Tcp长连接)
NewLife.Remoting 2011 协议通信库,提供CS应用通信框架,支持Http/RPC通信框架,高吞吐,物联网设备低开销易接入
NewLife.Cube 2010 魔方快速开发平台,集成了用户权限、SSO登录、OAuth服务端等,单表100亿级项目验证
NewLife.Agent 2008 服务管理组件,把应用安装成为操作系统守护进程,Windows服务、Linux的Systemd
NewLife.Zero 2020 Zero零代脚手架,基于NewLife组件生态的项目模板NewLife.Templates,Web、WebApi、Service
中间件 对接知名中间件平台
NewLife.Redis 2017 Redis客户端,微秒级延迟,百万级吞吐,丰富的消息队列,百亿级数据量项目验证
NewLife.RocketMQ 2018 RocketMQ纯托管客户端,支持Apache RocketMQ和阿里云消息队列,十亿级项目验
NewLife.MQTT 2019 物联网消息协议,MqttClient/MqttServer,客户端支持阿里云物联网
NewLife.IoT 2022 IoT标准库,定义物联网领域的各种通信协议标准规范
NewLife.Modbus 2022 ModbusTcp/ModbusRTU/ModbusASCII,基于IoT标准库实现,支持ZeroIoT平台和IoTEdge网关
NewLife.Siemens 2022 西门子PLC协议,基于IoT标准库实现,支持IoT平台和IoTEdge
NewLife.Map 2022 地图组件库,封装百度地图、高德地图、腾讯地图、天地图
NewLife.Audio 2023 音频编解码库,PCM/ADPCMA/G711A/G722U/WAV/AAC
产品平台 产品平台级,编译部署即用,个性化自定义
Stardust 2018 星尘,分布式服务平台,节点管理、APM监控中心、配置中心、注册中心、发布中心
AntJob 2019 蚂蚁调度,分布式大数据计算平台(实时/离线),蚂蚁搬家分片思想,万亿级数据量项目验证
NewLife.ERP 2021 企业ERP,产品管理、客户管理、销售管理、供应商管理
CrazyCoder 2006 码神工具,众多开发者工具,网络、串口、加解密、正则表达式、Modbus、MQTT
EasyIO 2023 简易文件存储,支持分布式系统中文件集中存储。
XProxy 2005 产品级反向代理,NAT代理、Http代理
HttpMeter 2022 Http压力测试工具
GitCandy 2015 Git源代码管理系统
SmartOS 2014 嵌入式操作系统,完全独立自主,支持ARM Cortex-M芯片架构
SmartA2 2019 嵌入式工业计算机,物联网边缘网关,高性能.NET8主机,应用于工业、农业、交通、医疗
FIoT物联网平台 2020 物联网整体解决方案,建筑、环保、农业,软硬件及大数据分析一体化,单机十万级点位项目验证
UWB高精度室内定位 2020 厘米级(10~20cm)高精度室内定位,软硬件一体化,与其它系统联动,大型展厅项目验证

新生命开发团队

XCode

新生命团队(NewLife)成立于2002年,是新时代物联网行业解决方案提供者,致力于提供软硬件应用方案咨询、系统架构规划与开发服务。
团队主导的80多个开源项目已被广泛应用于各行业,Nuget累计下载量高达400余万次。
团队开发的大数据中间件NewLife.XCode、蚂蚁调度计算平台AntJob、星尘分布式平台Stardust、缓存队列组件NewLife.Redis以及物联网平台FIoT,均成功应用于电力、高校、互联网、电信、交通、物流、工控、医疗、文博等行业,为客户提供了大量先进、可靠、安全、高质量、易扩展的产品和系统集成服务。

我们将不断通过服务的持续改进,成为客户长期信赖的合作伙伴,通过不断的创新和发展,成为国内优秀的IoT服务供应商。

新生命团队始于2002年,部分开源项目具有20年以上漫长历史,源码库保留有2010年以来所有修改记录
网站:https://newlifex.com
开源:https://github.com/newlifex
QQ群:1600800/1600838
微信公众号:
智能大石头

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 is compatible.  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 is compatible.  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 net40 is compatible.  net403 was computed.  net45 is compatible.  net451 was computed.  net452 was computed.  net46 was computed.  net461 is compatible.  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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (2)

Showing the top 2 NuGet packages that depend on NewLife.Agent:

Package Downloads
NewLife.Extensions.Hosting.AgentService

应用程序注册为系统服务,支持Windows/Linux

sljc_WebApi.Core

用于后台API服务包

GitHub repositories (3)

Showing the top 3 popular GitHub repositories that depend on NewLife.Agent:

Repository Stars
NewLifeX/Stardust
星尘,轻量级分布式服务框架。配置中心、集群管理、远程自动发布、服务治理。服务自动注册和发现,负载均衡,动态伸缩,故障转移,性能监控。
NewLifeX/NewLife.Net
单机吞吐2266万tps的网络通信框架
NewLifeX/XProxy
XProxy是一个代理服务器,内置有NAT、反向代理、直接代理、间接代理等。
Version Downloads Last Updated
10.13.2025.901 212 9/1/2025
10.13.2025.901-beta0240 134 9/1/2025
10.13.2025.824-beta1223 177 8/24/2025
10.13.2025.604 423 6/4/2025
10.13.2025.602-beta1643 150 6/2/2025
10.12.2025.401 643 4/1/2025
10.12.2025.401-beta0712 178 4/1/2025
10.12.2025.329-beta1223 121 3/29/2025
10.11.2025.311-beta0002 180 3/11/2025
10.11.2025.201 435 2/1/2025
10.11.2025.201-beta1619 119 2/1/2025
10.11.2025.109-beta1236 167 1/9/2025
10.11.2025.101 295 1/1/2025
10.10.2024.1225-beta1450 149 12/25/2024
10.10.2024.1224-beta0713 110 12/24/2024
10.10.2024.1223 235 12/23/2024
10.10.2024.1202 299 12/2/2024
10.10.2024.1129-beta0118 125 11/29/2024
10.10.2024.1116 283 11/16/2024
10.9.2024.902 542 9/2/2024
10.9.2024.801 394 8/1/2024
10.9.2024.801-beta0700 128 8/1/2024
10.9.2024.728-beta1649 125 7/28/2024
10.9.2024.701 399 7/1/2024
10.9.2024.701-beta1516 133 7/1/2024
10.9.2024.629-beta0804 149 6/29/2024
10.9.2024.626-beta1734 137 6/26/2024
10.9.2024.626-beta1613 133 6/26/2024
10.9.2024.624-beta1712 161 6/24/2024
10.9.2024.624-beta0623 131 6/24/2024
10.9.2024.621-beta0040 146 6/21/2024
10.9.2024.620-beta0006 150 6/20/2024
10.9.2024.619-beta0922 146 6/19/2024
10.9.2024.609-beta1644 137 6/9/2024
10.9.2024.609-beta1438 125 6/9/2024
10.9.2024.602-beta1628 152 6/2/2024
10.9.2024.601 288 6/1/2024
10.9.2024.601-beta0355 130 6/1/2024
10.8.2024.529-beta1039 146 5/29/2024
10.8.2024.527-beta0909 139 5/27/2024
10.8.2024.527-beta0743 133 5/27/2024
10.8.2024.526-beta1649 140 5/26/2024
10.8.2024.526-beta1557 144 5/26/2024
10.8.2024.526-beta1549 152 5/26/2024
10.8.2024.521-beta0014 212 5/21/2024
10.8.2024.520-beta0606 153 5/20/2024
10.8.2024.519-beta0654 150 5/19/2024
10.8.2024.518-beta1641 139 5/18/2024
10.8.2024.518-beta1617 145 5/18/2024
10.7.2024.518-beta1030 138 5/18/2024
10.7.2024.515 236 5/15/2024
10.7.2024.515-beta0213 172 5/15/2024
10.7.2024.423-beta0032 192 4/23/2024
10.7.2024.402 407 4/2/2024
10.7.2024.402-beta1636 139 4/2/2024
10.7.2024.331-beta0602 136 3/31/2024
10.7.2024.330-beta0952 143 3/30/2024
10.7.2024.320-beta1230 156 3/20/2024
10.7.2024.303 241 3/3/2024
10.7.2024.303-beta1433 132 3/3/2024
10.6.2024.228-beta1451 132 2/28/2024
10.6.2024.203 255 2/3/2024
10.6.2024.203-beta0307 138 2/3/2024
10.6.2024.101 406 1/1/2024
10.6.2024.101-beta0504 161 1/1/2024
10.6.2023.1224-beta1607 179 12/24/2023
10.6.2023.1212-beta0405 163 12/12/2023
10.6.2023.1210-beta1341 152 12/10/2023
10.6.2023.1201 328 12/1/2023
10.6.2023.1201-beta0552 145 12/1/2023
10.6.2023.1128-beta0010 153 11/28/2023
10.6.2023.1120-beta0220 165 11/20/2023
10.6.2023.1102 362 11/2/2023
10.6.2023.1102-beta0640 113 11/2/2023
10.6.2023.1016-beta1607 172 10/16/2023
10.6.2023.1001 358 10/1/2023
10.5.2023.927-beta1518 134 9/27/2023
10.5.2023.912-beta1050 169 9/12/2023
10.5.2023.910-beta0910 181 9/10/2023
10.5.2023.909-beta0003 162 9/9/2023
10.5.2023.812-beta0824 243 8/12/2023
10.5.2023.801 618 8/1/2023
10.5.2023.801-beta0306 191 8/1/2023
10.4.2023.801-beta0301 191 8/1/2023
10.4.2023.729-beta0002 199 7/29/2023
10.4.2023.725-beta0222 189 7/25/2023
10.4.2023.601 706 6/1/2023
10.4.2023.601-beta1428 194 6/1/2023
10.4.2023.512-beta1512 275 5/12/2023
10.4.2023.505 448 5/5/2023
10.4.2023.505-beta1611 214 5/5/2023
10.4.2023.504-beta0114 213 5/4/2023
10.4.2023.416-beta1214 232 4/16/2023
10.4.2023.401 563 4/1/2023
10.4.2023.401-beta1724 202 4/1/2023
10.4.2023.331-beta0844 212 3/31/2023
10.3.2023.318-beta0213 228 3/18/2023
10.3.2023.301 575 3/1/2023
10.3.2023.301-beta0447 224 3/1/2023
10.2.2023.218-beta0229 253 2/18/2023
10.2.2023.214-beta1542 242 2/14/2023
10.2.2023.214-beta0206 217 2/14/2023
10.2.2023.203 699 2/3/2023
10.2.2023.203-beta1429 225 2/3/2023
10.2.2023.101-beta1647 219 1/1/2023
10.1.2023.101 714 1/1/2023
10.1.2023.101-beta0227 227 1/1/2023
10.1.2022.1225-beta1424 259 12/25/2022
10.1.2022.1221-beta1657 214 12/21/2022
10.1.2022.1220-beta0114 229 12/20/2022
10.1.2022.1217-beta0142 218 12/17/2022
10.1.2022.1201 822 12/1/2022
10.1.2022.1201-beta1238 213 12/1/2022
10.0.2022.1201-beta0631 213 12/1/2022
10.0.2022.1108-beta0052 275 11/8/2022
10.0.2022.1106-beta0431 258 11/6/2022
10.0.2022.1104 757 11/4/2022
10.0.2022.1104-beta0629 226 11/4/2022
10.0.2022.1003 908 10/3/2022
10.0.2022.1003-beta1306 217 10/3/2022
10.0.2022.1003-beta1216 221 10/3/2022
9.4.2022.1003 507 10/3/2022
9.4.2022.1003-beta1215 203 10/3/2022
9.4.2022.1003-beta1149 188 10/3/2022
9.4.2022.1003-beta0057 197 10/3/2022
9.3.2022.901 915 9/1/2022
9.3.2022.901-beta0350 196 9/1/2022
9.3.2022.822-beta1114 220 8/22/2022
9.3.2022.814-beta0223 244 8/14/2022
9.3.2022.810-beta1048 214 8/10/2022
9.2.2022.701 939 7/1/2022
9.2.2022.701-beta1340 232 7/1/2022
9.1.2022.622-beta1235 255 6/22/2022
9.1.2022.501 1,042 5/1/2022
9.1.2022.501-beta0208 243 5/1/2022
9.0.2022.406 686 4/6/2022
9.0.2022.406-beta1209 218 4/6/2022
9.0.2022.320-beta1415 300 3/20/2022
9.0.2022.315-beta0816 241 3/15/2022
9.0.2022.312-beta1041 237 3/12/2022
9.0.2022.101 1,058 1/1/2022
8.8.2021.1204 982 12/4/2021
8.8.2021.1109 682 11/9/2021
8.7.2021.1001 704 10/1/2021
8.7.2021.708 1,177 7/8/2021
8.7.2021.204 1,392 2/4/2021
8.7.2021.101 964 1/1/2021
8.7.2020.1201 796 12/1/2020
8.7.2020.1101 916 11/1/2020
8.7.2020.1002 891 10/3/2020
8.7.2020.918-beta3 499 9/18/2020
8.7.2020.914-beta 442 9/14/2020
8.7.2020.912-beta 494 9/12/2020
8.7.2020.802 1,121 8/2/2020
8.7.2020.718-beta 543 7/17/2020
8.7.2020.601 1,071 5/31/2020
8.7.2020.525-rc 469 5/25/2020
8.7.2020.510-beta 477 5/10/2020
8.7.2020.501 819 5/1/2020
8.7.2020.421-beta2 496 4/21/2020
8.7.2020.403 876 4/2/2020
8.7.2020.329-beta 505 3/29/2020
8.7.2020.322-beta 534 3/22/2020
8.6.2020.204 893 2/4/2020
8.5.2020.101 874 1/1/2020
8.4.2019.1212 864 12/12/2019
8.4.2019.1203 741 12/3/2019
8.4.2019.1109 1,008 11/9/2019
8.3.2019.923 839 9/24/2019
8.3.2019.822 946 8/22/2019
8.2.2019.706 1,270 7/6/2019
8.1.2019.618 803 6/23/2019
8.1.2019.602 820 6/2/2019
8.1.2019.510 825 5/10/2019
8.1.2019.406 803 4/6/2019
8.1.2019.320 804 3/20/2019
8.1.2019.310 859 3/10/2019
8.0.2019.101 1,130 1/1/2019

增强Windows服务稳定性