Browse Source

rename rules module name

pull/98/head
cKey 5 years ago
parent
commit
d3d70c727c
  1. 2
      aspnet-core/modules/common/LINGYUN.Abp.Rules/LINGYUN/Abp/Rules/AbpRulesModule.cs
  2. 6
      aspnet-core/modules/common/LINGYUN.Abp.RulesEngine/LINGYUN/Abp/RulesEngine/AbpRulesEngineModule.cs

2
aspnet-core/modules/common/LINGYUN.Abp.Rules/LINGYUN/Abp/Rules/AbpRulesEngineModule.cs → aspnet-core/modules/common/LINGYUN.Abp.Rules/LINGYUN/Abp/Rules/AbpRulesModule.cs

@ -6,7 +6,7 @@ namespace LINGYUN.Abp.Rules
{
[DependsOn(
typeof(AbpDddDomainModule))]
public class AbpRulesEngineModule : AbpModule
public class AbpRulesModule : AbpModule
{
public override void PreConfigureServices(ServiceConfigurationContext context)
{

6
aspnet-core/modules/common/LINGYUN.Abp.RulesEngine/LINGYUN/Abp/RulesEngine/AbpMsRulesEngineModule.cs → aspnet-core/modules/common/LINGYUN.Abp.RulesEngine/LINGYUN/Abp/RulesEngine/AbpRulesEngineModule.cs

@ -6,13 +6,13 @@ using Volo.Abp.Modularity;
namespace LINGYUN.Abp.RulesEngine
{
[DependsOn(
typeof(AbpRulesEngineModule),
typeof(AbpRulesModule),
typeof(AbpAutoMapperModule))]
public class AbpMsRulesEngineModule : AbpModule
public class AbpRulesEngineModule : AbpModule
{
public override void ConfigureServices(ServiceConfigurationContext context)
{
context.Services.AddAutoMapperObjectMapper<AbpMsRulesEngineModule>();
context.Services.AddAutoMapperObjectMapper<AbpRulesEngineModule>();
Configure<AbpAutoMapperOptions>(options =>
{
options.AddProfile<MsRulesEngineMapperProfile>(validate: true);
Loading…
Cancel
Save