21 lines
578 B
C#
21 lines
578 B
C#
using KonSoft.Admin;
|
|
using KonSoft.Admin.EntityFrameworkCore;
|
|
using KonSoft.Shared.Hosting;
|
|
using Volo.Abp.Caching;
|
|
using Volo.Abp.Modularity;
|
|
|
|
namespace KonSoft.Shared.DbMigrator;
|
|
|
|
[DependsOn(
|
|
typeof(KonSoftSharedHostingModule),
|
|
typeof(AdminEntityFrameworkCoreModule),
|
|
typeof(AdminApplicationContractsModule)
|
|
)]
|
|
public class KonSoftSharedDbMigratorModule : AbpModule
|
|
{
|
|
public override void ConfigureServices(ServiceConfigurationContext context)
|
|
{
|
|
Configure<AbpDistributedCacheOptions>(options => { options.KeyPrefix = "KonSoft:"; });
|
|
}
|
|
}
|