mirror of
https://github.com/Sonarr/Sonarr.git
synced 2026-04-19 21:46:43 -04:00
19 lines
699 B
XML
19 lines
699 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<TargetFrameworks>net10.0</TargetFrameworks>
|
|
<Nullable>enable</Nullable>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<RootNamespace>Sonarr.Api.V5</RootNamespace>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<PackageReference Include="FluentValidation" Version="9.5.4" />
|
|
<PackageReference Include="Ical.Net" Version="4.3.1" />
|
|
<PackageReference Include="NLog" Version="5.5.1" />
|
|
<PackageReference Include="Swashbuckle.AspNetCore.Annotations" Version="10.1.2" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\NzbDrone.Core\Sonarr.Core.csproj" />
|
|
<ProjectReference Include="..\Sonarr.Http\Sonarr.Http.csproj" />
|
|
</ItemGroup>
|
|
</Project>
|