mirror of
https://github.com/zoriya/Kyoo.git
synced 2025-05-24 02:02:36 -04:00
24 lines
792 B
XML
24 lines
792 B
XML
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>netcoreapp3.1</TargetFramework>
|
|
<AssemblyName>Kyoo.CommonApi</AssemblyName>
|
|
<RootNamespace>Kyoo.CommonApi</RootNamespace>
|
|
<PackageId>Kyoo.CommonApi</PackageId>
|
|
<Authors>AnonymusRaccoon</Authors>
|
|
<OutputType>Library</OutputType>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="3.1.3" />
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="3.1.3" />
|
|
<PackageReference Include="Microsoft.Extensions.Configuration.Abstractions" Version="3.1.3" />
|
|
<PackageReference Include="Npgsql" Version="4.1.3" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Kyoo.Common\Kyoo.Common.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|