2019-09-02 20:27:49 +00:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
2021-01-11 01:54:54 +00:00
|
|
|
<TargetFrameworks>net5.0;net472</TargetFrameworks>
|
2019-09-02 20:27:49 +00:00
|
|
|
</PropertyGroup>
|
2021-01-11 01:54:54 +00:00
|
|
|
<ItemGroup Condition="'$(TargetFramework)' == 'net472'">
|
2020-04-05 02:35:36 +00:00
|
|
|
<PackageReference Include="Mono.Posix-4.5" Version="4.5.0" PrivateAssets="all" />
|
2019-10-14 21:42:30 +00:00
|
|
|
</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" />
|
2019-10-14 21:42:30 +00:00
|
|
|
</ItemGroup>
|
2019-09-02 20:27:49 +00:00
|
|
|
<ItemGroup>
|
|
|
|
<ProjectReference Include="..\NzbDrone.Common.Test\Radarr.Common.Test.csproj" />
|
|
|
|
<ProjectReference Include="..\NzbDrone.Test.Common\Radarr.Test.Common.csproj" />
|
|
|
|
<ProjectReference Include="..\NzbDrone.Mono\Radarr.Mono.csproj" />
|
|
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
|
|
<None Update="Files\**\*.*">
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
</None>
|
2020-07-26 20:52:27 +00:00
|
|
|
</ItemGroup>
|
2019-10-14 21:42:30 +00:00
|
|
|
</Project>
|