From a63082b270f35f40837caaa862663cabf56a4a65 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Halil=20=C4=B0brahim=20Kalkan?= Date: Sun, 4 Dec 2016 19:07:31 +0300 Subject: [PATCH] Removed unnecessary service add --- src/Volo.Abp.AspNetCore/Abp/AspNetCore/AbpAspNetCoreModule.cs | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/Volo.Abp.AspNetCore/Abp/AspNetCore/AbpAspNetCoreModule.cs b/src/Volo.Abp.AspNetCore/Abp/AspNetCore/AbpAspNetCoreModule.cs index 59264a50cc..b8fc9960aa 100644 --- a/src/Volo.Abp.AspNetCore/Abp/AspNetCore/AbpAspNetCoreModule.cs +++ b/src/Volo.Abp.AspNetCore/Abp/AspNetCore/AbpAspNetCoreModule.cs @@ -1,5 +1,4 @@ using Microsoft.Extensions.DependencyInjection; -using Volo.Abp.AspNetCore.Modularity; using Volo.Abp.Modularity; using Volo.DependencyInjection; @@ -10,7 +9,6 @@ namespace Volo.Abp.AspNetCore public void ConfigureServices(IServiceCollection services) { services.AddAssemblyOf(); - services.AddSingleton(); } } }