sharding/samples/Sample.MySql/Sample.MySql.csproj

25 lines
787 B
XML
Raw Normal View History

2022-09-02 08:10:27 +08:00
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
2022-01-18 11:22:12 +08:00
<TargetFramework>net6.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
<ItemGroup>
2022-10-31 23:19:33 +08:00
<PackageReference Include="Microsoft.EntityFrameworkCore.Proxies" Version="6.0.10" />
2022-09-14 16:44:41 +08:00
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="6.0.8">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
2022-09-14 16:44:41 +08:00
<PackageReference Include="Pomelo.EntityFrameworkCore.MySql" Version="6.0.2" />
2022-01-18 11:22:12 +08:00
</ItemGroup>
<ItemGroup>
2022-11-09 11:39:43 +08:00
<ProjectReference Include="..\..\src2_6\ShardingCore.2_6\ShardingCore.2_6.csproj" />
</ItemGroup>
2022-09-14 16:17:46 +08:00
</Project>