Browse Source

Update DistEventsDemo

pull/11037/head
liangshiwei 5 years ago
parent
commit
8df90cefb8
  1. 2
      test/DistEvents/DistDemoApp.Shared/DistDemoApp.Shared.csproj
  2. 10
      test/DistEvents/DistDemoApp.Shared/DistDemoAppSharedModule.cs

2
test/DistEvents/DistDemoApp.Shared/DistDemoApp.Shared.csproj

@ -17,7 +17,7 @@
<ItemGroup> <ItemGroup>
<ProjectReference Include="..\..\..\framework\src\Volo.Abp.Autofac\Volo.Abp.Autofac.csproj" /> <ProjectReference Include="..\..\..\framework\src\Volo.Abp.Autofac\Volo.Abp.Autofac.csproj" />
<ProjectReference Include="..\..\..\framework\src\Volo.Abp.Ddd.Domain\Volo.Abp.Ddd.Domain.csproj" /> <ProjectReference Include="..\..\..\framework\src\Volo.Abp.Ddd.Domain\Volo.Abp.Ddd.Domain.csproj" />
<ProjectReference Include="..\..\..\framework\src\Volo.Abp.EventBus.Boxes\Volo.Abp.EventBus.Boxes.csproj" /> <ProjectReference Include="..\..\..\framework\src\Volo.Abp.EventBus\Volo.Abp.EventBus.csproj" />
</ItemGroup> </ItemGroup>
</Project> </Project>

10
test/DistEvents/DistDemoApp.Shared/DistDemoAppSharedModule.cs

@ -5,7 +5,7 @@ using StackExchange.Redis;
using Volo.Abp.Autofac; using Volo.Abp.Autofac;
using Volo.Abp.Domain; using Volo.Abp.Domain;
using Volo.Abp.Domain.Entities.Events.Distributed; using Volo.Abp.Domain.Entities.Events.Distributed;
using Volo.Abp.EventBus.Boxes; using Volo.Abp.EventBus;
using Volo.Abp.Modularity; using Volo.Abp.Modularity;
namespace DistDemoApp namespace DistDemoApp
@ -13,8 +13,8 @@ namespace DistDemoApp
[DependsOn( [DependsOn(
typeof(AbpAutofacModule), typeof(AbpAutofacModule),
typeof(AbpDddDomainModule), typeof(AbpDddDomainModule),
typeof(AbpEventBusBoxesModule) typeof(AbpEventBusModule)
)] )]
public class DistDemoAppSharedModule : AbpModule public class DistDemoAppSharedModule : AbpModule
{ {
public override void ConfigureServices(ServiceConfigurationContext context) public override void ConfigureServices(ServiceConfigurationContext context)
@ -28,7 +28,7 @@ namespace DistDemoApp
options.EtoMappings.Add<TodoItem, TodoItemEto>(); options.EtoMappings.Add<TodoItem, TodoItemEto>();
options.AutoEventSelectors.Add<TodoItem>(); options.AutoEventSelectors.Add<TodoItem>();
}); });
context.Services.AddSingleton<IDistributedLockProvider>(sp => context.Services.AddSingleton<IDistributedLockProvider>(sp =>
{ {
var connection = ConnectionMultiplexer.Connect(configuration["Redis:Configuration"]); var connection = ConnectionMultiplexer.Connect(configuration["Redis:Configuration"]);
@ -36,4 +36,4 @@ namespace DistDemoApp
}); });
} }
} }
} }

Loading…
Cancel
Save