2023-05-30 14:23:02 -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" />
|
|
|
|
</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>
|
2023-02-04 10:15:08 -07:00
|
|
|
<PackageReference Include="LrcParser" />
|
|
|
|
<PackageReference Include="MetaBrainz.MusicBrainz" />
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Configuration.Abstractions" />
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Caching.Abstractions" />
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Http" />
|
|
|
|
<PackageReference Include="Newtonsoft.Json" />
|
|
|
|
<PackageReference Include="PlaylistsNET" />
|
|
|
|
<PackageReference Include="TagLibSharp" />
|
|
|
|
<PackageReference Include="TMDbLib" />
|
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>
|
2023-10-23 14:36:56 -07:00
|
|
|
<TargetFramework>net8.0</TargetFramework>
|
2019-01-19 07:01:16 -07:00
|
|
|
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
|
2019-08-11 07:52:37 -07:00
|
|
|
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
2021-03-08 19:04:47 -07:00
|
|
|
<CodeAnalysisRuleSet>../jellyfin.ruleset</CodeAnalysisRuleSet>
|
2020-02-23 02:53:51 -07:00
|
|
|
</PropertyGroup>
|
|
|
|
|
2023-11-04 18:01:14 -07:00
|
|
|
<!-- Code Analyzers -->
|
2020-02-23 02:53:51 -07:00
|
|
|
<ItemGroup Condition=" '$(Configuration)' == 'Debug' ">
|
2023-11-04 18:01:14 -07:00
|
|
|
<PackageReference Include="IDisposableAnalyzers">
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
|
|
|
|
</PackageReference>
|
2023-02-04 10:15:08 -07:00
|
|
|
<PackageReference Include="Microsoft.CodeAnalysis.BannedApiAnalyzers">
|
2022-01-22 08:48:31 -07:00
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
|
|
|
|
</PackageReference>
|
2023-02-04 10:15:08 -07:00
|
|
|
<PackageReference Include="SerilogAnalyzer" PrivateAssets="All" />
|
|
|
|
<PackageReference Include="StyleCop.Analyzers" PrivateAssets="All" />
|
|
|
|
<PackageReference Include="SmartAnalyzers.MultithreadingAnalyzer" PrivateAssets="All" />
|
2020-02-23 02:53:51 -07:00
|
|
|
</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" />
|
2021-01-12 13:35:06 -07:00
|
|
|
<None Remove="Plugins\StudioImages\Configuration\config.html" />
|
|
|
|
<EmbeddedResource Include="Plugins\StudioImages\Configuration\config.html" />
|
2021-08-21 05:05:25 -07:00
|
|
|
<None Remove="Plugins\Tmdb\Configuration\config.html" />
|
|
|
|
<EmbeddedResource Include="Plugins\Tmdb\Configuration\config.html" />
|
2020-02-21 23:04:52 -07:00
|
|
|
</ItemGroup>
|
2018-09-12 10:26:21 -07:00
|
|
|
</Project>
|