这是基于vue-vben-admin 模板适用于abp Vnext的前端管理项目
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
colin 3936107340 upgrade: upgrade abp to 10.0.2 1 month ago
..
LINGYUN/Abp/MessageService upgrade abp framework to 8.2.0 2 years ago
FodyWeavers.xml upgrade(abp): upgrade abp framework to 7.4.0 2 years ago
FodyWeavers.xsd upgrade(abp): upgrade abp framework to 7.4.0 2 years ago
LINGYUN.Abp.MessageService.HttpApi.Client.csproj upgrade: upgrade abp to 10.0.2 1 month ago
README.EN.md feat(docs): 添加实时消息模块文档 1 year ago
README.md feat(docs): 添加实时消息模块文档 1 year ago

README.md

LINGYUN.Abp.MessageService.HttpApi.Client

消息服务 HTTP API 客户端模块。

功能特性

  • 提供消息服务的 HTTP 客户端代理
  • 自动注册 HTTP 客户端代理服务

依赖模块

配置使用

  1. 首先,需要安装 LINGYUN.Abp.MessageService.HttpApi.Client 到你的项目中:
dotnet add package LINGYUN.Abp.MessageService.HttpApi.Client
  1. 添加 AbpMessageServiceHttpApiClientModule 到你的模块的依赖列表:
[DependsOn(typeof(AbpMessageServiceHttpApiClientModule))]
public class YourModule : AbpModule
{
}
  1. 配置远程服务地址:
{
  "RemoteServices": {
    "AbpMessageService": {
      "BaseUrl": "http://your-service-url"
    }
  }
}

更多

English document