|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<TargetFrameworks>net462</TargetFrameworks>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<PackageReference Include="System.Memory" Version="4.5.3" />
|
|
|
|
|
<PackageReference Include="FluentMigrator.Runner" Version="1.6.2" />
|
|
|
|
|
<PackageReference Include="FluentValidation" Version="8.4.0" />
|
|
|
|
|
<PackageReference Include="ImageResizer" Version="4.2.5" />
|
|
|
|
|
<PackageReference Include="Newtonsoft.Json" Version="12.0.2" />
|
|
|
|
|
<PackageReference Include="NLog" Version="4.6.7" />
|
|
|
|
|
<PackageReference Include="OAuth" Version="1.0.3" />
|
|
|
|
|
<PackageReference Include="Prowlin" Version="0.9.4456.26422" />
|
|
|
|
|
<PackageReference Include="RestSharp" Version="106.6.10" />
|
|
|
|
|
<PackageReference Include="TinyTwitter" Version="1.1.2" />
|
|
|
|
|
<PackageReference Include="xmlrpcnet" Version="3.0.0.266" />
|
|
|
|
|
<PackageReference Include="System.Data.SQLite.Core.Lidarr" Version="1.0.111.0-5" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ProjectReference Include="..\Marr.Data\Marr.Data.csproj" />
|
|
|
|
|
<ProjectReference Include="..\MonoTorrent\MonoTorrent.csproj" />
|
|
|
|
|
<ProjectReference Include="..\NzbDrone.Common\Radarr.Common.csproj" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Reference Include="Growl.Connector">
|
|
|
|
|
<HintPath>..\Libraries\Growl.Connector.dll</HintPath>
|
|
|
|
|
</Reference>
|
|
|
|
|
<Reference Include="Growl.CoreLibrary">
|
|
|
|
|
<HintPath>..\Libraries\Growl.CoreLibrary.dll</HintPath>
|
|
|
|
|
</Reference>
|
|
|
|
|
<Reference Include="System.Web" />
|
|
|
|
|
<Reference Include="System.Web.Extensions" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<EmbeddedResource Include="..\..\Logo\64.png">
|
|
|
|
|
<Link>Resources\Logo\64.png</Link>
|
|
|
|
|
</EmbeddedResource>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<Target Name="CopyWindowsRuntimesOnBuild" AfterTargets="AfterBuild" Condition="'$(RuntimeIdentifier)'=='win-x64'">
|
|
|
|
|
<Copy SourceFiles="..\Libraries\MediaInfo\MediaInfo.dll" DestinationFolder="$(OutDir)" />
|
|
|
|
|
</Target>
|
|
|
|
|
<Target Name="CopyWindowsRuntimesOnPublish" AfterTargets="Publish" Condition="'$(RuntimeIdentifier)'=='win-x64'">
|
|
|
|
|
<Copy SourceFiles="..\Libraries\MediaInfo\MediaInfo.dll" DestinationFolder="$(PublishDir)" />
|
|
|
|
|
</Target>
|
|
|
|
|
<Target Name="CopyMacOSRuntimesOnBuild" AfterTargets="AfterBuild" Condition="'$(RuntimeIdentifier)'=='osx-x64'">
|
|
|
|
|
<Copy SourceFiles="..\Libraries\MediaInfo\libmediainfo.dylib" DestinationFolder="$(OutDir)" />
|
|
|
|
|
<Copy SourceFiles="Radarr.Core.dll.config" DestinationFolder="$(OutDir)" />
|
|
|
|
|
</Target>
|
|
|
|
|
<Target Name="CopyMacOSRuntimesOnPublish" AfterTargets="Publish" Condition="'$(RuntimeIdentifier)'=='osx-x64'">
|
|
|
|
|
<Copy SourceFiles="..\Libraries\MediaInfo\libmediainfo.dylib" DestinationFolder="$(PublishDir)" />
|
|
|
|
|
<Copy SourceFiles="Radarr.Core.dll.config" DestinationFolder="$(PublishDir)" />
|
|
|
|
|
</Target>
|
|
|
|
|
<Target Name="CopyLinuxRuntimesOnBuild" AfterTargets="AfterBuild" Condition="'$(RuntimeIdentifier)'=='linux-x64'">
|
|
|
|
|
<Copy SourceFiles="Radarr.Core.dll.config" DestinationFolder="$(OutDir)" />
|
|
|
|
|
</Target>
|
|
|
|
|
<Target Name="CopyLinuxRuntimesOnPublish" AfterTargets="Publish" Condition="'$(RuntimeIdentifier)'=='linux-x64'">
|
|
|
|
|
<Copy SourceFiles="Radarr.Core.dll.config" DestinationFolder="$(PublishDir)" />
|
|
|
|
|
</Target>
|
|
|
|
|
</Project>
|