Lidarr/src/Lidarr.Http/Lidarr.Http.csproj

24 lines
934 B
XML
Raw Normal View History

2019-08-22 21:28:51 +00:00
<Project Sdk="Microsoft.NET.Sdk">
2017-09-04 02:20:56 +00:00
<PropertyGroup>
2019-08-22 21:28:51 +00:00
<TargetFramework>net462</TargetFramework>
<Platforms>x86</Platforms>
2017-09-04 02:20:56 +00:00
</PropertyGroup>
<ItemGroup>
2019-08-22 21:28:51 +00:00
<PackageReference Include="FluentValidation" Version="6.2.1" />
<PackageReference Include="Nancy" Version="1.4.4" />
<PackageReference Include="Nancy.Authentication.Basic" Version="1.4.1" />
<PackageReference Include="Nancy.Authentication.Forms" Version="1.4.1" />
<PackageReference Include="Newtonsoft.Json" Version="12.0.2" />
<PackageReference Include="NLog" Version="4.5.4" />
</ItemGroup>
<ItemGroup>
2017-09-04 02:20:56 +00:00
<Reference Include="System.Data.SQLite">
<HintPath>..\Libraries\Sqlite\System.Data.SQLite.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
2019-08-22 21:28:51 +00:00
<ProjectReference Include="..\NzbDrone.Core\Lidarr.Core.csproj" />
<ProjectReference Include="..\NzbDrone.SignalR\Lidarr.SignalR.csproj" />
2017-09-04 02:20:56 +00:00
</ItemGroup>
2019-08-22 21:28:51 +00:00
</Project>