feat: 新增配置管理
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
using Volo.Abp.Application.Services;
|
||||
using Volo.Abp.SettingManagement.Localization;
|
||||
|
||||
namespace Yi.Framework.SettingManagement.Application;
|
||||
|
||||
public abstract class SettingManagementAppServiceBase : ApplicationService
|
||||
{
|
||||
protected SettingManagementAppServiceBase()
|
||||
{
|
||||
LocalizationResource = typeof(AbpSettingManagementResource);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,17 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
<Import Project="..\..\..\common.props" />
|
||||
<PropertyGroup>
|
||||
<TargetFramework>net8.0</TargetFramework>
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
<Nullable>enable</Nullable>
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
|
||||
<PackageReference Include="Volo.Abp.SettingManagement.Application.Contracts" Version="$(AbpVersion)" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\..\..\framework\Yi.Framework.Ddd.Application\Yi.Framework.Ddd.Application.csproj" />
|
||||
<ProjectReference Include="..\Yi.Framework.SettingManagement.Domain\Yi.Framework.SettingManagement.Domain.csproj" />
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
||||
@@ -0,0 +1,15 @@
|
||||
using Volo.Abp.Application;
|
||||
using Volo.Abp.Modularity;
|
||||
using Volo.Abp.SettingManagement;
|
||||
using Volo.Abp.Timing;
|
||||
|
||||
namespace Yi.Framework.SettingManagement.Application;
|
||||
|
||||
[DependsOn(
|
||||
typeof(AbpDddApplicationModule),
|
||||
typeof(AbpSettingManagementApplicationContractsModule),
|
||||
typeof(AbpTimingModule)
|
||||
)]
|
||||
public class YiFrameworkSettingManagementApplicationModule : AbpModule
|
||||
{
|
||||
}
|
||||
Reference in New Issue
Block a user