using Lsw.Abp.AspnetCore.Components.Web.AntDesignTheme; using Lsw.Abp.AspnetCore.Components.Web.AntDesignTheme.Routing; using Lsw.Abp.AspnetCore.Components.Web.AntDesignTheme.Toolbars; using Volo.Abp.AspNetCore.Components.WebAssembly; using Volo.Abp.Http.Client.IdentityModel.WebAssembly; using Volo.Abp.Modularity; namespace Lsw.Abp.AspnetCore.Components.WebAssembly.AntDesignTheme; [DependsOn( typeof(AbpAspNetCoreComponentsWebAntDesignThemeModule), typeof(AbpAspNetCoreComponentsWebAssemblyModule), typeof(AbpHttpClientIdentityModelWebAssemblyModule) )] public class AbpAspNetCoreComponentsWebAssemblyAntDesignThemeModule : AbpModule { public override void ConfigureServices(ServiceConfigurationContext context) { Configure(options => { options.AdditionalAssemblies.Add(typeof(AbpAspNetCoreComponentsWebAssemblyAntDesignThemeModule).Assembly); }); Configure(options => { options.Contributors.Add(new AntDesignThemeToolbarContributor()); }); } }