sharding/samples/Sample.SqlServer/Sample.SqlServer.csproj

19 lines
622 B
XML
Raw Normal View History

<Project Sdk="Microsoft.NET.Sdk.Web">
2021-01-26 14:39:56 +08:00
<PropertyGroup>
2021-11-09 14:13:00 +08:00
<TargetFramework>net6.0</TargetFramework>
<LangVersion>9.0</LangVersion>
2021-01-26 14:39:56 +08:00
</PropertyGroup>
2021-08-20 13:50:49 +08:00
<ItemGroup>
2021-11-09 14:13:00 +08:00
<PackageReference Include="EFCore.BulkExtensions" Version="6.0.0-rc.2" />
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="6.0.2" />
2022-02-03 20:51:56 +08:00
<PackageReference Include="Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore" Version="6.0.1" />
2021-08-20 13:50:49 +08:00
</ItemGroup>
<ItemGroup>
2021-08-20 22:30:06 +08:00
<ProjectReference Include="..\..\src\ShardingCore\ShardingCore.csproj" />
2021-08-20 13:50:49 +08:00
</ItemGroup>
2021-01-26 14:39:56 +08:00
</Project>