Lidarr/src/NzbDrone.Integration.Test/Lidarr.Integration.Test.csproj

23 lines
1009 B
XML
Raw Normal View History

<Project Sdk="Microsoft.NET.Sdk.Web">
2019-08-22 21:28:51 +00:00
<PropertyGroup>
2019-12-09 21:59:39 +00:00
<TargetFrameworks>net462;netcoreapp3.1</TargetFrameworks>
<OutputType>Library</OutputType>
2019-08-22 21:28:51 +00:00
</PropertyGroup>
<ItemGroup>
2020-06-27 21:51:59 +00:00
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.6.1" />
<PackageReference Include="NUnit" Version="3.12.0" />
2020-06-27 21:51:59 +00:00
<PackageReference Include="NUnit3TestAdapter" Version="3.16.1" />
<PackageReference Include="NunitXml.TestLogger" Version="2.1.41" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'net462'">
<PackageReference Include="Microsoft.AspNetCore.SignalR.Client" Version="1.1.0" />
2019-08-22 21:28:51 +00:00
</ItemGroup>
2019-12-09 21:59:39 +00:00
<ItemGroup Condition="'$(TargetFramework)' == 'netcoreapp3.1'">
2021-04-02 04:38:48 +00:00
<PackageReference Include="Microsoft.AspNetCore.SignalR.Client" Version="3.1.13" />
</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>