mirror of
https://github.com/Kareadita/Kavita.git
synced 2026-03-10 03:55:45 -04:00
Co-authored-by: Joseph Milazzo <joseph.v.milazzo@gmail.com> Co-authored-by: Joe Milazzo <josephmajora@gmail.com>
22 lines
772 B
XML
22 lines
772 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net10.0</TargetFramework>
|
|
<ImplicitUsings>disable</ImplicitUsings>
|
|
<Nullable>disable</Nullable>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Kavita.Common\Kavita.Common.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="CsvHelper" Version="33.1.0" />
|
|
<PackageReference Include="Microsoft.AspNetCore.Identity" Version="2.3.9" />
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Abstractions" Version="10.0.3" />
|
|
<PackageReference Include="Microsoft.Extensions.Identity.Stores" Version="10.0.3" />
|
|
<PackageReference Include="YamlDotNet" Version="16.3.0" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|