Added settings module to the common module.

pull/204/head
Halil İbrahim Kalkan 7 years ago
parent 8496a258dd
commit e14a3e3654

@ -24,6 +24,7 @@
<ProjectReference Include="..\Volo.Abp.ObjectMapping\Volo.Abp.ObjectMapping.csproj" />
<ProjectReference Include="..\Volo.Abp.Security\Volo.Abp.Security.csproj" />
<ProjectReference Include="..\Volo.Abp.Session\Volo.Abp.Session.csproj" />
<ProjectReference Include="..\Volo.Abp.Settings\Volo.Abp.Settings.csproj" />
<ProjectReference Include="..\Volo.Abp.Validation\Volo.Abp.Validation.csproj" />
<ProjectReference Include="..\Volo.Abp.VirtualFileSystem\Volo.Abp.VirtualFileSystem.csproj" />
</ItemGroup>

@ -9,6 +9,7 @@ using Volo.Abp.MultiTenancy;
using Volo.Abp.ObjectMapping;
using Volo.Abp.Security;
using Volo.Abp.Session;
using Volo.Abp.Settings;
using Volo.Abp.Validation;
using Volo.Abp.VirtualFileSystem;
@ -20,6 +21,7 @@ namespace Volo.Abp
[DependsOn(typeof(AbpObjectMappingModule))]
[DependsOn(typeof(AbpSecurityModule))]
[DependsOn(typeof(AbpSessionModule))]
[DependsOn(typeof(AbpSettingsModule))]
[DependsOn(typeof(AbpDataModule))]
[DependsOn(typeof(AbpJsonModule))]
[DependsOn(typeof(AbpVirtualFileSystemModule))]

Loading…
Cancel
Save