jellyfin/MediaBrowser.Providers/MediaBrowser.Providers.csproj

56 lines
2.5 KiB
XML
Raw Normal View History

2019-01-29 23:09:48 +01:00
<Project Sdk="Microsoft.NET.Sdk">
2018-09-12 19:26:21 +02:00
<!-- ProjectGuid is only included as a requirement for SonarQube analysis -->
<PropertyGroup>
<ProjectGuid>{442B5058-DCAF-4263-BB6A-F21E31120A1B}</ProjectGuid>
</PropertyGroup>
2019-01-19 15:01:16 +01:00
<ItemGroup>
<ProjectReference Include="..\MediaBrowser.Controller\MediaBrowser.Controller.csproj" />
<ProjectReference Include="..\MediaBrowser.Model\MediaBrowser.Model.csproj" />
<ProjectReference Include="..\DvdLib\DvdLib.csproj" />
</ItemGroup>
2018-09-12 19:26:21 +02:00
2019-01-19 15:01:16 +01:00
<ItemGroup>
<Compile Include="..\SharedVersion.cs" />
</ItemGroup>
2018-09-12 19:26:21 +02:00
2019-01-19 15:01:16 +01:00
<ItemGroup>
2020-11-10 17:52:34 +01:00
<PackageReference Include="Microsoft.Extensions.Configuration.Abstractions" Version="5.0.0" />
<PackageReference Include="Microsoft.Extensions.Caching.Abstractions" Version="5.0.0" />
<PackageReference Include="Microsoft.Extensions.Http" Version="5.0.0" />
2020-12-23 20:34:07 +01:00
<PackageReference Include="Newtonsoft.Json" Version="12.0.3" />
2020-11-01 18:52:32 +01:00
<PackageReference Include="OptimizedPriorityQueue" Version="5.0.0" />
<PackageReference Include="PlaylistsNET" Version="1.1.3" />
2020-10-03 19:46:13 +02:00
<PackageReference Include="TMDbLib" Version="1.7.3-alpha" />
2019-01-19 15:01:16 +01:00
</ItemGroup>
2018-09-12 19:26:21 +02:00
2019-01-19 15:01:16 +01:00
<PropertyGroup>
2020-11-10 17:52:34 +01:00
<TargetFramework>net5.0</TargetFramework>
2019-01-19 15:01:16 +01:00
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<TreatWarningsAsErrors Condition=" '$(Configuration)' == 'Release'">true</TreatWarningsAsErrors>
2020-02-23 10:53:51 +01:00
</PropertyGroup>
<!-- Code Analyzers-->
<ItemGroup Condition=" '$(Configuration)' == 'Debug' ">
<PackageReference Include="Microsoft.CodeAnalysis.FxCopAnalyzers" Version="2.9.8" PrivateAssets="All" />
<PackageReference Include="SerilogAnalyzer" Version="0.15.0" PrivateAssets="All" />
<PackageReference Include="StyleCop.Analyzers" Version="1.1.118" PrivateAssets="All" />
<PackageReference Include="SmartAnalyzers.MultithreadingAnalyzer" Version="1.1.31" PrivateAssets="All" />
</ItemGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
<CodeAnalysisRuleSet>../jellyfin.ruleset</CodeAnalysisRuleSet>
2019-01-19 15:01:16 +01:00
</PropertyGroup>
2018-09-12 19:26:21 +02:00
2020-03-08 04:17:49 +01:00
<ItemGroup>
<None Remove="Plugins\AudioDb\Configuration\config.html" />
<EmbeddedResource Include="Plugins\AudioDb\Configuration\config.html" />
2020-06-07 00:30:18 +02:00
<None Remove="Plugins\Omdb\Configuration\config.html" />
<EmbeddedResource Include="Plugins\Omdb\Configuration\config.html" />
2020-02-22 07:04:52 +01:00
<None Remove="Plugins\MusicBrainz\Configuration\config.html" />
<EmbeddedResource Include="Plugins\MusicBrainz\Configuration\config.html" />
</ItemGroup>
2018-09-12 19:26:21 +02:00
</Project>