Radarr/src/NzbDrone.Mono/Radarr.Mono.csproj

20 lines
795 B
XML
Raw Normal View History

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
2020-08-25 20:26:45 +00:00
<TargetFrameworks>net462;net5.0</TargetFrameworks>
</PropertyGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'net462'">
2020-08-25 20:26:45 +00:00
<PackageReference Include="Mono.Posix-4.5" Version="4.5.0" PrivateAssets="all" />
</ItemGroup>
<!--
The netstandard veresion here doesn't work in net framework
See https://github.com/xamarin/XamarinComponents/issues/282
-->
2020-08-25 20:26:45 +00:00
<ItemGroup Condition="'$(TargetFramework)' == 'net5.0'">
2020-07-26 20:52:27 +00:00
<PackageReference Include="Mono.Posix.NETStandard" Version="5.20.1-preview" />
2020-08-25 20:26:45 +00:00
<PackageReference Include="System.IO.FileSystem.AccessControl" Version="5.0.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\NzbDrone.Common\Radarr.Common.csproj" />
</ItemGroup>
</Project>