Don't use IAbpModule

pull/441/head
Halil ibrahim Kalkan 7 years ago
parent 66f8144dda
commit bfb364228b

@ -27,9 +27,9 @@ namespace Volo.Abp.AspNetCore
typeof(AbpUiModule), //TODO: Can we remove this? typeof(AbpUiModule), //TODO: Can we remove this?
typeof(AbpValidationModule) typeof(AbpValidationModule)
)] )]
public class AbpAspNetCoreModule : IAbpModule public class AbpAspNetCoreModule : AbpModule
{ {
public void ConfigureServices(ServiceConfigurationContext context) public override void ConfigureServices(ServiceConfigurationContext context)
{ {
context.Services.Configure<AbpAuditingOptions>(options => context.Services.Configure<AbpAuditingOptions>(options =>
{ {

@ -18,9 +18,9 @@ namespace Volo.Abp.Modularity
} }
[DependsOn(typeof(IndependentEmptyModule))] [DependsOn(typeof(IndependentEmptyModule))]
public class MyStartupModule : IAbpModule public class MyStartupModule : AbpModule
{ {
public void ConfigureServices(ServiceConfigurationContext context) public override void ConfigureServices(ServiceConfigurationContext context)
{ {
} }

Loading…
Cancel
Save