|
|
@ -14,11 +14,27 @@ CoreAgent 是一个基于 .NET 8.0 的现代化应用程序,采用微服务架 |
|
|
|
``` |
|
|
|
CoreAgent/ |
|
|
|
├── CoreAgent.API/ # Web API 项目 |
|
|
|
│ ├── Configurations/ # 配置文件 |
|
|
|
│ └── Controllers/ # API 控制器 |
|
|
|
├── CoreAgent.Application/ # 应用层 |
|
|
|
│ ├── Commands/ # 命令处理 |
|
|
|
│ └── Handlers/ # 命令处理器 |
|
|
|
├── CoreAgent.Domain/ # 领域层 |
|
|
|
│ ├── Contexts/ # 领域上下文 |
|
|
|
│ ├── Entities/ # 领域实体 |
|
|
|
│ ├── Interfaces/ # 接口定义 |
|
|
|
│ └── Models/ # 领域模型 |
|
|
|
└── CoreAgent.Infrastructure/# 基础设施层 |
|
|
|
├── Extensions/ # 扩展方法 |
|
|
|
└── Services/ # 服务实现 |
|
|
|
``` |
|
|
|
|
|
|
|
## 最新更新 |
|
|
|
- 重构网络服务架构,优化网络配置管理 |
|
|
|
- 移除冗余的网络状态提供者和配置器接口 |
|
|
|
- 更新网络命令处理逻辑 |
|
|
|
- 优化网络服务实现 |
|
|
|
|
|
|
|
## 开发环境要求 |
|
|
|
- Visual Studio 2022 或更高版本 |
|
|
|
- .NET 8.0 SDK |
|
|
|