using Abp.Dependency; using Abp.PlugIns; namespace Abp { public class AbpBootstrapperOptions { /// /// Used to disable all interceptors added by ABP. /// public bool DisableAllInterceptors { get; set; } /// /// IIocManager that is used to bootstrap the ABP system. If set to null, uses global /// public IIocManager IocManager { get; set; } /// /// List of plugin sources. /// public PlugInSourceList PlugInSources { get; } public AbpBootstrapperOptions() { IocManager = Abp.Dependency.IocManager.Instance; PlugInSources = new PlugInSourceList(); } } }