Radarr/src/NzbDrone.Integration.Test/Radarr.Integration.Test.csproj

17 lines
690 B
XML
Raw Normal View History

<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
2021-01-11 01:54:54 +00:00
<TargetFrameworks>net5.0;net472</TargetFrameworks>
<OutputType>Library</OutputType>
</PropertyGroup>
2021-01-11 01:54:54 +00:00
<ItemGroup Condition="'$(TargetFramework)' == 'net472'">
<PackageReference Include="Microsoft.AspNetCore.SignalR.Client" Version="1.1.0" />
</ItemGroup>
2020-08-25 20:26:45 +00:00
<ItemGroup Condition="'$(TargetFramework)' == 'net5.0'">
2021-04-12 14:17:11 +00:00
<PackageReference Include="Microsoft.AspNetCore.SignalR.Client" Version="5.0.5" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\NzbDrone.Test.Common\Radarr.Test.Common.csproj" />
<ProjectReference Include="..\Radarr.Api.V3\Radarr.Api.V3.csproj" />
</ItemGroup>
</Project>