sharding/samples/Sample.MultiConfig/Sample.MultiConfig.csproj

19 lines
529 B
XML
Raw Normal View History

<Project Sdk="Microsoft.NET.Sdk.Web">
2022-01-07 09:40:28 +08:00
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
<ItemGroup>
2022-09-02 08:10:27 +08:00
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="6.0.8" />
<PackageReference Include="Pomelo.EntityFrameworkCore.MySql" Version="6.0.2" />
2022-01-07 09:40:28 +08:00
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\src6\ShardingCore6\ShardingCore6.csproj" />
2022-01-07 09:40:28 +08:00
</ItemGroup>
</Project>