2021-03-26 20:09:52 +04:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
<TargetFramework>net5.0</TargetFramework>
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="5.0.4" />
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="5.0.4" />
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="5.0.4">
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
</PackageReference>
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
2022-03-18 12:47:34 +04:00
|
|
|
<ProjectReference Include="..\CoreModels\CoreModels.csproj" />
|
2021-03-28 19:15:55 +04:00
|
|
|
<ProjectReference Include="..\ModuleTools\ModuleTools.csproj" />
|
2021-03-26 20:09:52 +04:00
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
</Project>
|