21 lines
901 B
XML
21 lines
901 B
XML
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
||
|
|
|
||
|
|
<PropertyGroup>
|
||
|
|
<TargetFramework>net5.0</TargetFramework>
|
||
|
|
<GenerateDocumentationFile>True</GenerateDocumentationFile>
|
||
|
|
</PropertyGroup>
|
||
|
|
|
||
|
|
<ItemGroup>
|
||
|
|
<PackageReference Include="Microsoft.AspNetCore.DataProtection.EntityFrameworkCore" Version="5.0.15" />
|
||
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="5.0.15">
|
||
|
|
<PrivateAssets>all</PrivateAssets>
|
||
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
||
|
|
</PackageReference>
|
||
|
|
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="6.0.0" />
|
||
|
|
<PackageReference Include="Microsoft.Extensions.Logging.Debug" Version="6.0.0" />
|
||
|
|
<PackageReference Include="MySql.EntityFrameworkCore" Version="5.0.13" />
|
||
|
|
<PackageReference Include="UtilsSharp" Version="2.4.9" />
|
||
|
|
</ItemGroup>
|
||
|
|
|
||
|
|
</Project>
|