Zeus.Configuration 0.2.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package Zeus.Configuration --version 0.2.0
                    
NuGet\Install-Package Zeus.Configuration -Version 0.2.0
                    
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.2.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Zeus.Configuration" Version="0.2.0" />
                    
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.2.0
                    
#r "nuget: Zeus.Configuration, 0.2.0"
                    
#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.2.0
                    
#: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.2.0
                    
Install as a Cake Addin
#tool nuget:?package=Zeus.Configuration&version=0.2.0
                    
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();

按功能选择程序集:

版本 用途
Zeus.Abstractions nuget 通道、设备、点表与宿主契约
Zeus.Runtime nuget 运行时内核:通道状态机、设备基类与点表
Zeus.Hosting nuget 宿主与采集循环
Zeus.Communications nuget 串口 / TCP / UDP / 虚拟通道
Zeus.Protocols.Framing nuget 自定义帧
Zeus.Protocols.Modbus nuget Modbus RTU/TCP
Zeus.Configuration nuget JSON 工程配置
Zeus.Presentation.Abstractions nuget UI 无关绑定抽象
Zeus.Presentation.WinForms nuget WinForms 绑定
Zeus.Presentation.Wpf nuget WPF 绑定

点表支持最近成功采样历史与报警限状态,适合在界面上直接显示当前值、采集错误和高低报。

0.2 起宿主停止后可再次启动;通道故障默认自动重连;运行中可增删通道与设备;JSON 监视会同步拓扑。

通道支持 PacketTraced 报文追踪事件与 ChannelTraceBuffer 滚动内存记录器,可直接接入通信诊断窗口或现场故障快照。

手册: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 319 8/28/2026
0.20.0 302 8/25/2026
0.19.0 297 8/24/2026
0.18.0 315 8/21/2026
0.17.0 113 8/21/2026
0.16.0 116 8/20/2026
0.15.0 112 8/19/2026
0.14.0 111 8/19/2026
0.13.0 109 8/18/2026
0.12.0 110 8/18/2026
0.11.0 106 8/18/2026
0.10.0 104 8/18/2026
0.9.0 113 8/18/2026
0.8.0 112 8/18/2026
0.7.0 109 8/17/2026
0.6.0 116 8/17/2026
0.5.0 109 8/17/2026
0.4.0 109 8/14/2026
0.3.0 114 8/14/2026
0.2.0 106 8/14/2026
Loading failed

0.2.0:宿主可再次启动;通道故障后可 OpenAsync 恢复并默认自动重连;运行中可增删通道与设备;JSON 监视同步拓扑。IDevice 新增 Channel;目录与点表写入器增加增删成员。