Commit 55cb4d2ff08c03a9e34e832602910e4291f0249f
1 parent
acd397f4
恢复代码最初状态
Showing
2 changed files
with
29 additions
and
0 deletions
美国版/Food Labeling Management Code/Yi.Abp.Net8/module/tenant-management/Yi.Framework.TenantManagement.Application.Contracts/Yi.Framework.TenantManagement.Application.Contracts.csproj
0 → 100644
| 1 | +<Project Sdk="Microsoft.NET.Sdk"> | ||
| 2 | + <Import Project="..\..\..\common.props" /> | ||
| 3 | + <PropertyGroup> | ||
| 4 | + <TargetFramework>net8.0</TargetFramework> | ||
| 5 | + <ImplicitUsings>enable</ImplicitUsings> | ||
| 6 | + <Nullable>enable</Nullable> | ||
| 7 | + </PropertyGroup> | ||
| 8 | + <ItemGroup> | ||
| 9 | + <PackageReference Include="Volo.Abp.TenantManagement.Domain.Shared" Version="$(AbpVersion)" /> | ||
| 10 | + | ||
| 11 | + </ItemGroup> | ||
| 12 | + <ItemGroup> | ||
| 13 | + <ProjectReference Include="..\..\..\framework\Yi.Framework.Ddd.Application.Contracts\Yi.Framework.Ddd.Application.Contracts.csproj" /> | ||
| 14 | + <ProjectReference Include="..\..\..\framework\Yi.Framework.SqlSugarCore.Abstractions\Yi.Framework.SqlSugarCore.Abstractions.csproj" /> | ||
| 15 | + </ItemGroup> | ||
| 16 | +</Project> |
美国版/Food Labeling Management Code/Yi.Abp.Net8/module/tenant-management/Yi.Framework.TenantManagement.Application.Contracts/YiFrameworkTenantManagementApplicationContractsModule.cs
0 → 100644
| 1 | +using Volo.Abp.Modularity; | ||
| 2 | +using Volo.Abp.TenantManagement; | ||
| 3 | +using Yi.Framework.Ddd.Application.Contracts; | ||
| 4 | + | ||
| 5 | +namespace Yi.Framework.TenantManagement.Application.Contracts | ||
| 6 | +{ | ||
| 7 | + [DependsOn(typeof(AbpTenantManagementDomainSharedModule), | ||
| 8 | + typeof(YiFrameworkDddApplicationContractsModule))] | ||
| 9 | + public class YiFrameworkTenantManagementApplicationContractsModule:AbpModule | ||
| 10 | + { | ||
| 11 | + | ||
| 12 | + } | ||
| 13 | +} |