16 lines
367 B
XML
16 lines
367 B
XML
|
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|||
|
|
|||
|
<PropertyGroup>
|
|||
|
<TargetFramework>net5.0</TargetFramework>
|
|||
|
</PropertyGroup>
|
|||
|
|
|||
|
<ItemGroup>
|
|||
|
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="5.0.10" />
|
|||
|
</ItemGroup>
|
|||
|
|
|||
|
<ItemGroup>
|
|||
|
<ProjectReference Include="..\..\src\ShardingCore\ShardingCore.csproj" />
|
|||
|
</ItemGroup>
|
|||
|
|
|||
|
</Project>
|