Browse Source

Don't use IAbpModule

pull/441/head
Halil ibrahim Kalkan 8 years ago
parent
commit
bfb364228b
  1. 4
      framework/src/Volo.Abp.AspNetCore/Volo/Abp/AspNetCore/AbpAspNetCoreModule.cs
  2. 4
      framework/test/Volo.Abp.Core.Tests/Volo/Abp/Modularity/ModuleLoader_Tests.cs

4
framework/src/Volo.Abp.AspNetCore/Volo/Abp/AspNetCore/AbpAspNetCoreModule.cs

@ -27,9 +27,9 @@ namespace Volo.Abp.AspNetCore
typeof(AbpUiModule), //TODO: Can we remove this?
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 =>
{

4
framework/test/Volo.Abp.Core.Tests/Volo/Abp/Modularity/ModuleLoader_Tests.cs

@ -18,9 +18,9 @@ namespace Volo.Abp.Modularity
}
[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