Skip to content

Commit

Permalink
Create WebApplicationModule.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
PuzzledAlien committed Jul 17, 2019
1 parent 2c9c7f2 commit a746049
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions ABP.Demo/WebApplication1/WebApplication1/WebApplicationModule.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
using Abp.AspNetCore;
using Abp.Modules;
using Abp.Reflection.Extensions;

namespace WebApplication1
{
[DependsOn(typeof(AbpAspNetCoreModule))]
public class WebApplicationModule : AbpModule
{
public override void Initialize()
{
IocManager.RegisterAssemblyByConvention(typeof(WebApplicationModule).GetAssembly());
}
}
}

0 comments on commit a746049

Please sign in to comment.