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.
22 lines
829 B
22 lines
829 B
using Lsw.Abp.AntDesignThemeManagement.Blazor;
|
|
using Lsw.Abp.AspnetCore.Components.WebAssembly.AntDesignTheme;
|
|
using Microsoft.Extensions.DependencyInjection;
|
|
using Volo.Abp.Http.Client;
|
|
using Volo.Abp.Http.Client.IdentityModel.WebAssembly;
|
|
using Volo.Abp.Modularity;
|
|
|
|
namespace Lsw.Abp.AntDesignThemeManagement.Blazor.WebAssembly;
|
|
|
|
[DependsOn(
|
|
typeof(AbpAntDesignThemeManagementBlazorModule),
|
|
typeof(AbpAspNetCoreComponentsWebAssemblyAntDesignThemeModule),
|
|
typeof(AbpHttpClientIdentityModelWebAssemblyModule)
|
|
)]
|
|
public class AbpAntDesignThemeManagementBlazorWebAssemblyModule : AbpModule
|
|
{
|
|
public override void ConfigureServices(ServiceConfigurationContext context)
|
|
{
|
|
context.Services.AddHttpClientProxies(
|
|
typeof(AbpAntDesignThemeManagementApplicationContractsModule).Assembly);
|
|
}
|
|
}
|
|
|