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.
29 lines
946 B
29 lines
946 B
using Volo.Abp.AuditLogging;
|
|
using Volo.Abp.Modularity;
|
|
using Volo.Abp.PermissionManagement.Identity;
|
|
|
|
namespace BaseService
|
|
{
|
|
[DependsOn(
|
|
typeof(AbpAuditLoggingDomainModule),
|
|
typeof(AbpPermissionManagementDomainIdentityModule)
|
|
)]
|
|
public class BaseServiceDomainModule : AbpModule
|
|
{
|
|
//public override void ConfigureServices(ServiceConfigurationContext context)
|
|
//{
|
|
// Configure<AbpVirtualFileSystemOptions>(options =>
|
|
// {
|
|
// options.FileSets.AddEmbedded<BaseServiceDomainModule>("BaseService");
|
|
// });
|
|
|
|
// Configure<AbpLocalizationOptions>(options =>
|
|
// {
|
|
// options.Resources
|
|
// .Add<BaseServiceResource>("zh-Hans")
|
|
// .AddBaseTypes(typeof(AbpValidationResource))
|
|
// .AddVirtualJson("/Localization/BaseService");
|
|
// });
|
|
//}
|
|
}
|
|
}
|
|
|