mirror of
https://github.com/GeWuYou/GFramework.git
synced 2026-03-23 03:04:29 +08:00
- 从 ArchitectureContext 构造函数中移除 LoggerProperties 参数 - 更新 Architecture 类中上下文初始化逻辑,不再传递日志属性 - 优化事件系统中的空值安全处理 - 修正 EasyEvent 泛型类中的类型参数命名 - 移除不再需要的 IsExternalInit 内部实现 - 更新包引用配置添加 PrivateAssets 属性
12 lines
335 B
C#
12 lines
335 B
C#
// IsExternalInit.cs
|
|
// This type is required to support init-only setters and record types
|
|
// when targeting netstandard2.0 or older frameworks.
|
|
|
|
#pragma warning disable S2094 // Remove this empty class
|
|
namespace System.Runtime.CompilerServices
|
|
{
|
|
internal static class IsExternalInit
|
|
{
|
|
}
|
|
}
|
|
#pragma warning restore S2094 |