From 760683b80c38cfde49d60931c391c19f3a07911a Mon Sep 17 00:00:00 2001 From: cKey <35512826+colinin@users.noreply.github.com> Date: Tue, 13 Apr 2021 08:15:27 +0800 Subject: [PATCH] remove incorrect comments --- aspnet-core/modules/dapr/LINGYUN.Abp.Dapr.Client/README.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/aspnet-core/modules/dapr/LINGYUN.Abp.Dapr.Client/README.md b/aspnet-core/modules/dapr/LINGYUN.Abp.Dapr.Client/README.md index 379a3168d..cd0b4a156 100644 --- a/aspnet-core/modules/dapr/LINGYUN.Abp.Dapr.Client/README.md +++ b/aspnet-core/modules/dapr/LINGYUN.Abp.Dapr.Client/README.md @@ -65,7 +65,6 @@ public class SystemAppService : ApplicationService, ISystemAppService ```c# -// 模块会自动搜索实现了IActor的服务,注册为Dapr的Actors [DependsOn( typeof(SystemInterfaceModule), typeof(AbpAspNetCoreMvcModule))] @@ -75,7 +74,7 @@ public class SystemServerModule : AbpModule { PreConfigure(mvcBuilder => { - mvcBuilder.AddApplicationPartIfNotExists(typeof(SystemInterfaceModule).Assembly); + mvcBuilder.AddApplicationPartIfNotExists(typeof(SystemServerModule).Assembly); }); } } @@ -130,7 +129,7 @@ public class SystemActorClientModule : AbpModule { // 注册代理类似于 Volo.Abp.Http.Client 模块 context.Services.AddDaprClientProxies( - typeof(SystemInterfaceModule).Assembly, // 搜索 SystemActorInterfaceModule 模块下的IActor定义 + typeof(SystemInterfaceModule).Assembly, // 搜索 SystemInterfaceModule 模块下的IRemoteService定义创建代理 RemoteServiceName ); }