2019-10-28 21:30:08 +00:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk.Web">
|
2019-08-22 21:28:51 +00:00
|
|
|
|
<PropertyGroup>
|
2019-10-28 21:30:08 +00:00
|
|
|
|
<TargetFrameworks>net462;netcoreapp3.0</TargetFrameworks>
|
|
|
|
|
<OutputType>Library</OutputType>
|
2019-08-22 21:28:51 +00:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
<ItemGroup>
|
2019-10-28 21:30:08 +00:00
|
|
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.3.0" />
|
|
|
|
|
<PackageReference Include="NUnit" Version="3.12.0" />
|
|
|
|
|
<PackageReference Include="NUnit3TestAdapter" Version="3.15.1" />
|
|
|
|
|
<PackageReference Include="NunitXml.TestLogger" Version="2.1.41" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup Condition="'$(TargetFramework)' == 'net462'">
|
2019-10-28 21:12:26 +00:00
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore.SignalR.Client" Version="1.1.0" />
|
2019-08-22 21:28:51 +00:00
|
|
|
|
</ItemGroup>
|
2019-10-28 21:30:08 +00:00
|
|
|
|
<ItemGroup Condition="'$(TargetFramework)' == 'netcoreapp3.0'">
|
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore.SignalR.Client" Version="3.0.0" />
|
|
|
|
|
</ItemGroup>
|
2019-08-22 21:28:51 +00:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ProjectReference Include="..\Lidarr.Api.V1\Lidarr.Api.V1.csproj" />
|
|
|
|
|
<ProjectReference Include="..\NzbDrone.Test.Common\Lidarr.Test.Common.csproj" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
</Project>
|