2019-01-29 22:09:48 +00:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2018-09-12 17:26:21 +00:00
|
|
|
|
|
2020-04-21 20:21:09 +00:00
|
|
|
|
<!-- ProjectGuid is only included as a requirement for SonarQube analysis -->
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<ProjectGuid>{442B5058-DCAF-4263-BB6A-F21E31120A1B}</ProjectGuid>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
2019-01-19 14:01:16 +00: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 17:26:21 +00:00
|
|
|
|
|
2019-01-19 14:01:16 +00:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Compile Include="..\SharedVersion.cs" />
|
|
|
|
|
</ItemGroup>
|
2018-09-12 17:26:21 +00:00
|
|
|
|
|
2019-01-19 14:01:16 +00:00
|
|
|
|
<ItemGroup>
|
2021-11-08 13:55:16 +00:00
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Configuration.Abstractions" Version="6.0.0" />
|
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Caching.Abstractions" Version="6.0.0" />
|
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Http" Version="6.0.0" />
|
2021-04-13 17:11:49 +00:00
|
|
|
|
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
|
2022-06-04 23:23:04 +00:00
|
|
|
|
<PackageReference Include="OptimizedPriorityQueue" Version="5.1.0" />
|
2022-06-03 22:28:20 +00:00
|
|
|
|
<PackageReference Include="PlaylistsNET" Version="1.2.1" />
|
2022-05-09 13:32:36 +00:00
|
|
|
|
<PackageReference Include="TMDbLib" Version="1.9.2" />
|
2019-01-19 14:01:16 +00:00
|
|
|
|
</ItemGroup>
|
2018-09-12 17:26:21 +00:00
|
|
|
|
|
2019-01-19 14:01:16 +00:00
|
|
|
|
<PropertyGroup>
|
2021-02-14 14:11:46 +00:00
|
|
|
|
<TargetFramework>net6.0</TargetFramework>
|
2019-01-19 14:01:16 +00:00
|
|
|
|
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
|
2019-08-11 14:52:37 +00:00
|
|
|
|
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
2021-03-09 02:04:47 +00:00
|
|
|
|
<CodeAnalysisRuleSet>../jellyfin.ruleset</CodeAnalysisRuleSet>
|
2020-02-23 09:53:51 +00:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
2021-12-24 17:28:27 +00:00
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
|
|
|
|
|
<TreatWarningsAsErrors>false</TreatWarningsAsErrors>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
2020-02-23 09:53:51 +00:00
|
|
|
|
<!-- Code Analyzers-->
|
|
|
|
|
<ItemGroup Condition=" '$(Configuration)' == 'Debug' ">
|
2022-01-22 15:48:31 +00:00
|
|
|
|
<PackageReference Include="Microsoft.CodeAnalysis.BannedApiAnalyzers" Version="3.3.3">
|
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
|
|
|
|
|
</PackageReference>
|
2020-02-23 09:53:51 +00:00
|
|
|
|
<PackageReference Include="SerilogAnalyzer" Version="0.15.0" PrivateAssets="All" />
|
2022-05-09 13:24:09 +00:00
|
|
|
|
<PackageReference Include="StyleCop.Analyzers" Version="1.2.0-beta.435" PrivateAssets="All" />
|
2020-02-23 09:53:51 +00:00
|
|
|
|
<PackageReference Include="SmartAnalyzers.MultithreadingAnalyzer" Version="1.1.31" PrivateAssets="All" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2020-03-08 03:17:49 +00:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<None Remove="Plugins\AudioDb\Configuration\config.html" />
|
|
|
|
|
<EmbeddedResource Include="Plugins\AudioDb\Configuration\config.html" />
|
2020-06-06 22:30:18 +00:00
|
|
|
|
<None Remove="Plugins\Omdb\Configuration\config.html" />
|
|
|
|
|
<EmbeddedResource Include="Plugins\Omdb\Configuration\config.html" />
|
2020-02-22 06:04:52 +00:00
|
|
|
|
<None Remove="Plugins\MusicBrainz\Configuration\config.html" />
|
|
|
|
|
<EmbeddedResource Include="Plugins\MusicBrainz\Configuration\config.html" />
|
2021-01-12 20:35:06 +00:00
|
|
|
|
<None Remove="Plugins\StudioImages\Configuration\config.html" />
|
|
|
|
|
<EmbeddedResource Include="Plugins\StudioImages\Configuration\config.html" />
|
2021-08-21 12:05:25 +00:00
|
|
|
|
<None Remove="Plugins\Tmdb\Configuration\config.html" />
|
|
|
|
|
<EmbeddedResource Include="Plugins\Tmdb\Configuration\config.html" />
|
2020-02-22 06:04:52 +00:00
|
|
|
|
</ItemGroup>
|
2018-09-12 17:26:21 +00:00
|
|
|
|
</Project>
|