You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
1.6 KiB
36 lines
1.6 KiB
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
<PropertyGroup>
|
|
<TargetFrameworks>net462;netcoreapp3.1</TargetFrameworks>
|
|
<OutputType>Library</OutputType>
|
|
</PropertyGroup>
|
|
<ItemGroup Condition="'$(TargetFramework)' == 'net462'">
|
|
<PackageReference Include="Microsoft.AspNetCore.Hosting" Version="2.2.7" />
|
|
<PackageReference Include="Microsoft.AspNetCore.SignalR" Version="1.1.0" />
|
|
<PackageReference Include="Microsoft.AspNetCore.Server.Kestrel" Version="2.2.0" />
|
|
<PackageReference Include="Microsoft.AspNetCore.Owin" Version="2.2.0" />
|
|
</ItemGroup>
|
|
<ItemGroup Condition="'$(TargetFramework)' == 'netcoreapp3.1'">
|
|
<PackageReference Include="Microsoft.AspNetCore.Owin" Version="3.1.0" />
|
|
<PackageReference Include="Microsoft.AspNetCore.SignalR.Protocols.NewtonsoftJson" Version="3.1.0" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<PackageReference Include="NLog.Extensions.Logging" Version="1.6.1" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Lidarr.Api.V1\Lidarr.Api.V1.csproj" />
|
|
<ProjectReference Include="..\NzbDrone.Common\Lidarr.Common.csproj" />
|
|
<ProjectReference Include="..\NzbDrone.Core\Lidarr.Core.csproj" />
|
|
<ProjectReference Include="..\NzbDrone.SignalR\Lidarr.SignalR.csproj" />
|
|
<ProjectReference Include="..\Lidarr.Http\Lidarr.Http.csproj" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Reference Include="Interop.NetFwTypeLib">
|
|
<HintPath>..\Libraries\Interop.NetFwTypeLib.dll</HintPath>
|
|
<EmbedInteropTypes>True</EmbedInteropTypes>
|
|
</Reference>
|
|
</ItemGroup>
|
|
<ItemGroup Condition="'$(TargetFramework)' == 'net462'">
|
|
<Reference Include="System.ServiceProcess" />
|
|
</ItemGroup>
|
|
</Project>
|