You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
using DS.Module.Core.Attributes;
|
|
using Microsoft.Extensions.DependencyInjection;
|
|
|
|
namespace DS.Module.Core.Modules;
|
|
|
|
/// <summary>
|
|
/// 实现此接口的类型将自动注册为<see cref="ServiceLifetime.Scoped"/>模式
|
|
/// </summary>
|
|
[IgnoreDependency]
|
|
public interface IScopedDependency
|
|
{
|
|
} |