Zeus.Configuration 0.20.1

dotnet add package Zeus.Configuration --version 0.20.1
                    
NuGet\Install-Package Zeus.Configuration -Version 0.20.1
                    
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="Zeus.Configuration" Version="0.20.1" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Zeus.Configuration" Version="0.20.1" />
                    
Directory.Packages.props
<PackageReference Include="Zeus.Configuration" />
                    
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 Zeus.Configuration --version 0.20.1
                    
#r "nuget: Zeus.Configuration, 0.20.1"
                    
#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 Zeus.Configuration@0.20.1
                    
#: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=Zeus.Configuration&version=0.20.1
                    
Install as a Cake Addin
#tool nuget:?package=Zeus.Configuration&version=0.20.1
                    
Install as a Cake Tool

Zeus

居于奥林匹斯,统御每一台设备。

面向 .NET 的上位机开发框架。通信、协议、点表和生命周期由框架处理;WinForms、WPF 和控制台都可以作为界面。

把复杂留给 Zeus,把简单留给用户。

await using var app = ZeusHost.Create(builder =>
{
    builder.AddVirtualChannel("meter");
    // 有硬件时:builder.AddSerialPort("meter", "COM3", 115200);
});
await app.StartAsync();

最快创建项目:

dotnet new install Zeus.Templates
dotnet new zeus-console -n ZeusCheck
dotnet new zeus-winforms -n MyPanel
dotnet new zeus-wpf -n MyPanel.Wpf
dotnet new zeus-modbus -n MyOven

按功能选择程序集:

使用 Zeus.Configuration 时,channels / devices / points 根层只保留结构字段;端口、从站地址、点位地址、缩放和写回等协议参数统一写入对应对象的 options

用途
Zeus.Abstractions 通道、设备、点表与宿主契约
Zeus.Runtime 运行时内核
Zeus.Hosting 宿主与采集循环
Zeus.Communications 串口 / TCP / UDP / 虚拟通道
Zeus.Protocols.Framing 自定义帧
Zeus.Protocols.Modbus Modbus RTU / TCP / ASCII
Zeus.Protocols.Mc Mitsubishi MC
Zeus.Protocols.S7 Siemens S7
Zeus.Protocols.Fins Omron FINS
Zeus.Protocols.HostLink Omron Host Link
Zeus.Protocols.Mewtocol Panasonic MEWTOCOL
Zeus.Protocols.EtherNetIp Allen-Bradley EtherNet/IP
Zeus.Protocols.Dlt645 DL/T 645-2007
Zeus.Protocols.Iec104 IEC 60870-5-104
Zeus.Protocols.Mqtt MQTT 3.1.1
Zeus.Protocols.OpcUa OPC UA
Zeus.Protocols.Snmp SNMP v2c
Zeus.Configuration JSON 工程配置(不拖协议;请同时引用所用协议包)
Zeus.Presentation.Abstractions UI 无关绑定
Zeus.Presentation.WinForms WinForms 绑定
Zeus.Presentation.Wpf WPF 绑定
Zeus.Templates dotnet new 项目模板

手册:docs.greekmythology.cn · QQ 群:771421105

Product 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 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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (12)

Showing the top 5 NuGet packages that depend on Zeus.Configuration:

Package Downloads
Zeus.Protocols.Modbus

Zeus Modbus RTU/TCP/ASCII 客户端、内存从站与声明式点表采集。

Zeus.Protocols.Mc

Zeus Mitsubishi MC Protocol 1E/3E/4E Binary/ASCII 客户端、设备封装与内存从站。

Zeus.Protocols.S7

Zeus Siemens S7 TCP 客户端、设备封装与内存虚拟 PLC。

Zeus.Protocols.Fins

Zeus Omron FINS UDP/TCP 客户端、设备封装与内存虚拟 PLC。

Zeus.Protocols.HostLink

Zeus Omron Host Link ASCII 客户端、设备封装与内存虚拟 PLC。

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
0.20.1 318 8/28/2026
0.20.0 300 8/25/2026
0.19.0 296 8/24/2026
0.18.0 314 8/21/2026
0.17.0 111 8/21/2026
0.16.0 115 8/20/2026
0.15.0 112 8/19/2026
0.14.0 110 8/19/2026
0.13.0 108 8/18/2026
0.12.0 108 8/18/2026
0.11.0 104 8/18/2026
0.10.0 103 8/18/2026
0.9.0 110 8/18/2026
0.8.0 111 8/18/2026
0.7.0 108 8/17/2026
0.6.0 115 8/17/2026
0.5.0 109 8/17/2026
0.4.0 106 8/14/2026
0.3.0 114 8/14/2026
0.2.0 104 8/14/2026
Loading failed

0.20.1:修复取消与协议超时区分、运行期拓扑回滚、报警搁置/解除抑制、点表时间戳刷新、通道/点表/报警/注册表/重连事件隔离与 TCP 服务端广播取消语义。