Browse Source

fix(workflow): add missing module dependencies

pull/432/head
cKey 4 years ago
parent
commit
a11a2dee5a
  1. 4
      aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.Persistence.Elasticsearch/LINGYUN/Abp/WorkflowCore/Persistence/Elasticsearch/AbpWorkflowCorePersistenceElasticsearchModule.cs

4
aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.Persistence.Elasticsearch/LINGYUN/Abp/WorkflowCore/Persistence/Elasticsearch/AbpWorkflowCorePersistenceElasticsearchModule.cs

@ -1,4 +1,5 @@
using Microsoft.Extensions.DependencyInjection;
using LINGYUN.Abp.Elasticsearch;
using Microsoft.Extensions.DependencyInjection;
using Volo.Abp.Modularity;
using WorkflowCore.Interface;
using WorkflowCore.Models;
@ -6,6 +7,7 @@ using WorkflowCore.Models;
namespace LINGYUN.Abp.WorkflowCore.Persistence.Elasticsearch
{
[DependsOn(typeof(AbpWorkflowCoreModule))]
[DependsOn(typeof(AbpElasticsearchModule))]
public class AbpWorkflowCorePersistenceElasticsearchModule : AbpModule
{
public override void PreConfigureServices(ServiceConfigurationContext context)

Loading…
Cancel
Save