2019-01-29 15:09:48 -07:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2018-09-12 10:26:21 -07:00
|
|
|
|
|
2020-04-21 13:21:09 -07:00
|
|
|
|
<!-- ProjectGuid is only included as a requirement for SonarQube analysis -->
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<ProjectGuid>{442B5058-DCAF-4263-BB6A-F21E31120A1B}</ProjectGuid>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
2019-01-19 07:01:16 -07: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 10:26:21 -07:00
|
|
|
|
|
2019-01-19 07:01:16 -07:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Compile Include="..\SharedVersion.cs" />
|
|
|
|
|
</ItemGroup>
|
2018-09-12 10:26:21 -07:00
|
|
|
|
|
2019-01-19 07:01:16 -07:00
|
|
|
|
<ItemGroup>
|
2020-11-10 09:52:34 -07: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" />
|
2021-04-13 10:11:49 -07:00
|
|
|
|
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
|
2020-11-01 10:52:32 -07:00
|
|
|
|
<PackageReference Include="OptimizedPriorityQueue" Version="5.0.0" />
|
2020-11-15 13:47:32 -07:00
|
|
|
|
<PackageReference Include="PlaylistsNET" Version="1.1.3" />
|
2021-04-13 06:09:28 -07:00
|
|
|
|
<PackageReference Include="TMDbLib" Version="1.8.1" />
|
2019-01-19 07:01:16 -07:00
|
|
|
|
</ItemGroup>
|
2018-09-12 10:26:21 -07:00
|
|
|
|
|
2019-01-19 07:01:16 -07:00
|
|
|
|
<PropertyGroup>
|
2020-11-10 09:52:34 -07:00
|
|
|
|
<TargetFramework>net5.0</TargetFramework>
|
2019-01-19 07:01:16 -07:00
|
|
|
|
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
|
2019-08-11 07:52:37 -07:00
|
|
|
|
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
2020-08-17 10:46:40 -07:00
|
|
|
|
<TreatWarningsAsErrors Condition=" '$(Configuration)' == 'Release'">true</TreatWarningsAsErrors>
|
2021-03-08 19:04:47 -07:00
|
|
|
|
<AnalysisMode Condition=" '$(Configuration)' == 'Debug'">AllEnabledByDefault</AnalysisMode>
|
|
|
|
|
<CodeAnalysisRuleSet>../jellyfin.ruleset</CodeAnalysisRuleSet>
|
2020-02-23 02:53:51 -07:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<!-- Code Analyzers-->
|
|
|
|
|
<ItemGroup Condition=" '$(Configuration)' == 'Debug' ">
|
|
|
|
|
<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>
|
|
|
|
|
|
2020-03-07 20:17:49 -07:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<None Remove="Plugins\AudioDb\Configuration\config.html" />
|
|
|
|
|
<EmbeddedResource Include="Plugins\AudioDb\Configuration\config.html" />
|
2020-06-06 15:30:18 -07:00
|
|
|
|
<None Remove="Plugins\Omdb\Configuration\config.html" />
|
|
|
|
|
<EmbeddedResource Include="Plugins\Omdb\Configuration\config.html" />
|
2020-02-21 23:04:52 -07:00
|
|
|
|
<None Remove="Plugins\MusicBrainz\Configuration\config.html" />
|
|
|
|
|
<EmbeddedResource Include="Plugins\MusicBrainz\Configuration\config.html" />
|
|
|
|
|
</ItemGroup>
|
2018-09-12 10:26:21 -07:00
|
|
|
|
</Project>
|