23 lines
733 B
XML
23 lines
733 B
XML
|
<Project Sdk="Microsoft.NET.Sdk">
|
|||
|
<PropertyGroup>
|
|||
|
<TargetFramework>net462</TargetFramework>
|
|||
|
<Platforms>x86</Platforms>
|
|||
|
</PropertyGroup>
|
|||
|
<ItemGroup>
|
|||
|
<PackageReference Include="NBuilder" Version="4.0.0" />
|
|||
|
</ItemGroup>
|
|||
|
<ItemGroup>
|
|||
|
<ProjectReference Include="..\NzbDrone.Test.Common\Sonarr.Test.Common.csproj" />
|
|||
|
<ProjectReference Include="..\NzbDrone.Core\Sonarr.Core.csproj" />
|
|||
|
</ItemGroup>
|
|||
|
<ItemGroup>
|
|||
|
<None Include="..\..\Logo\1024.png">
|
|||
|
<Link>Files\1024.png</Link>
|
|||
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|||
|
</None>
|
|||
|
<None Update="Files\**\*.*">
|
|||
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|||
|
</None>
|
|||
|
</ItemGroup>
|
|||
|
</Project>
|