mirror of
https://github.com/GeWuYou/GFramework.git
synced 2026-05-07 08:44:29 +08:00
- 新增 CQRS 核心概念、命令查询处理器实现指南 - 添加 CQRS 高级用法包括通知发布、管道行为和流式处理 - 提供 CQRS 最佳实践和常见问题解决方案 - 添加游戏配置系统完整接入模板和运行时读取示例 - 包含 YAML 配置文件和 JSON Schema 结构定义说明 - 提供 Godot 引擎配置桥接和热重载功能使用指南 - 添加架构模块集成和生成查询辅助功能文档
15 lines
489 B
C#
15 lines
489 B
C#
global using System;
|
|
global using System.Collections.Generic;
|
|
global using System.Collections.Immutable;
|
|
global using System.Globalization;
|
|
global using System.IO;
|
|
global using System.Linq;
|
|
global using System.Text;
|
|
global using System.Text.Json;
|
|
global using System.Threading;
|
|
global using System.Threading.Tasks;
|
|
global using Microsoft.CodeAnalysis;
|
|
global using Microsoft.CodeAnalysis.CSharp;
|
|
global using Microsoft.CodeAnalysis.CSharp.Syntax;
|
|
global using Microsoft.CodeAnalysis.Text;
|