mirror of https://github.com/abpframework/abp.git
16 changed files with 38 additions and 11 deletions
@ -1,14 +1,16 @@ |
|||||
using Volo.Abp.AspNetCore.Components.Server.Theming; |
using Volo.Abp.AspNetCore.Components.Server.Theming; |
||||
|
using Volo.Abp.FeatureManagement.Blazor.Server; |
||||
using Volo.Abp.Modularity; |
using Volo.Abp.Modularity; |
||||
|
|
||||
namespace Volo.Abp.TenantManagement.Blazor.Server |
namespace Volo.Abp.TenantManagement.Blazor.Server |
||||
{ |
{ |
||||
[DependsOn( |
[DependsOn( |
||||
typeof(AbpTenantManagementBlazorModule), |
typeof(AbpTenantManagementBlazorModule), |
||||
|
typeof(AbpFeatureManagementBlazorServerModule), |
||||
typeof(AbpAspNetCoreComponentsServerThemingModule) |
typeof(AbpAspNetCoreComponentsServerThemingModule) |
||||
)] |
)] |
||||
public class AbpTenantManagementBlazorServerModule : AbpModule |
public class AbpTenantManagementBlazorServerModule : AbpModule |
||||
{ |
{ |
||||
|
|
||||
} |
} |
||||
} |
} |
||||
|
|||||
@ -1,15 +1,17 @@ |
|||||
using Volo.Abp.AspNetCore.Components.WebAssembly.Theming; |
using Volo.Abp.AspNetCore.Components.WebAssembly.Theming; |
||||
|
using Volo.Abp.FeatureManagement.Blazor.WebAssembly; |
||||
using Volo.Abp.Modularity; |
using Volo.Abp.Modularity; |
||||
|
|
||||
namespace Volo.Abp.TenantManagement.Blazor.WebAssembly |
namespace Volo.Abp.TenantManagement.Blazor.WebAssembly |
||||
{ |
{ |
||||
[DependsOn( |
[DependsOn( |
||||
typeof(AbpTenantManagementBlazorModule), |
typeof(AbpTenantManagementBlazorModule), |
||||
|
typeof(AbpFeatureManagementBlazorWebAssemblyModule), |
||||
typeof(AbpAspNetCoreComponentsWebAssemblyThemingModule), |
typeof(AbpAspNetCoreComponentsWebAssemblyThemingModule), |
||||
typeof(AbpTenantManagementHttpApiClientModule) |
typeof(AbpTenantManagementHttpApiClientModule) |
||||
)] |
)] |
||||
public class AbpTenantManagementBlazorWebAssemblyModule : AbpModule |
public class AbpTenantManagementBlazorWebAssemblyModule : AbpModule |
||||
{ |
{ |
||||
|
|
||||
} |
} |
||||
} |
} |
||||
|
|||||
Loading…
Reference in new issue