mirror of
https://github.com/GeWuYou/GFramework.git
synced 2026-05-07 17:21:16 +08:00
- 修复 YamlConfigLoader 的超长方法、依赖比较与热重载同步原语告警 - 拆分 MicrosoftDiContainerTests 与 AbstractAsyncQueryTests 的辅助类型文件以消除 MA0048 - 更新 analyzer warning reduction 跟踪文档并记录 non-incremental 构建基线变化
13 lines
280 B
C#
13 lines
280 B
C#
namespace GFramework.Core.Tests.Ioc;
|
|
|
|
/// <summary>
|
|
/// 不实现优先级的服务
|
|
/// </summary>
|
|
public sealed class NonPrioritizedService : IMixedService
|
|
{
|
|
/// <summary>
|
|
/// 获取或设置服务名称
|
|
/// </summary>
|
|
public string? Name { get; set; }
|
|
}
|