27 lines
863 B
XML
27 lines
863 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net6.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="EntityFrameworkCore.ClickHouse.6.0" Version="1.0.0" />
|
|
<PackageReference Include="Pomelo.EntityFrameworkCore.MySql" Version="6.0.2" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\DG.EntityFramework\DG.EntityFramework.csproj" />
|
|
<ProjectReference Include="..\Zxd.Entity\Zxd.Entity.csproj" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Using Include="Zxd.Entity.Zxd" />
|
|
<Using Include="Zxd.Entity.Dncms" />
|
|
<Using Include="Zxd.Entity.Crm" />
|
|
<Using Include="Zxd.Entity.UserCenter" />
|
|
<Using Include="Zxd.Entity.CompanyBaseConf" />
|
|
<Using Include="Zxd.EntityFramework" />
|
|
</ItemGroup>
|
|
</Project>
|