MediaBrowser.Providers.csproj 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <!-- ProjectGuid is only included as a requirement for SonarQube analysis -->
  3. <PropertyGroup>
  4. <ProjectGuid>{442B5058-DCAF-4263-BB6A-F21E31120A1B}</ProjectGuid>
  5. </PropertyGroup>
  6. <ItemGroup>
  7. <ProjectReference Include="..\MediaBrowser.Controller\MediaBrowser.Controller.csproj" />
  8. <ProjectReference Include="..\MediaBrowser.Model\MediaBrowser.Model.csproj" />
  9. <ProjectReference Include="..\DvdLib\DvdLib.csproj" />
  10. </ItemGroup>
  11. <ItemGroup>
  12. <Compile Include="..\SharedVersion.cs" />
  13. </ItemGroup>
  14. <ItemGroup>
  15. <PackageReference Include="Microsoft.Extensions.Configuration.Abstractions" Version="3.1.8" />
  16. <PackageReference Include="Microsoft.Extensions.Caching.Abstractions" Version="3.1.8" />
  17. <PackageReference Include="Microsoft.Extensions.Http" Version="3.1.8" />
  18. <PackageReference Include="OptimizedPriorityQueue" Version="4.2.0" />
  19. <PackageReference Include="PlaylistsNET" Version="1.1.2" />
  20. <PackageReference Include="TvDbSharper" Version="3.2.2" />
  21. </ItemGroup>
  22. <PropertyGroup>
  23. <TargetFramework>netstandard2.1</TargetFramework>
  24. <GenerateAssemblyInfo>false</GenerateAssemblyInfo>
  25. <GenerateDocumentationFile>true</GenerateDocumentationFile>
  26. <TreatWarningsAsErrors Condition=" '$(Configuration)' == 'Release'">true</TreatWarningsAsErrors>
  27. </PropertyGroup>
  28. <!-- Code Analyzers-->
  29. <ItemGroup Condition=" '$(Configuration)' == 'Debug' ">
  30. <PackageReference Include="Microsoft.CodeAnalysis.FxCopAnalyzers" Version="2.9.8" PrivateAssets="All" />
  31. <PackageReference Include="SerilogAnalyzer" Version="0.15.0" PrivateAssets="All" />
  32. <PackageReference Include="StyleCop.Analyzers" Version="1.1.118" PrivateAssets="All" />
  33. <PackageReference Include="SmartAnalyzers.MultithreadingAnalyzer" Version="1.1.31" PrivateAssets="All" />
  34. </ItemGroup>
  35. <PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
  36. <CodeAnalysisRuleSet>../jellyfin.ruleset</CodeAnalysisRuleSet>
  37. </PropertyGroup>
  38. <ItemGroup>
  39. <None Remove="Plugins\AudioDb\Configuration\config.html" />
  40. <EmbeddedResource Include="Plugins\AudioDb\Configuration\config.html" />
  41. <None Remove="Plugins\Omdb\Configuration\config.html" />
  42. <EmbeddedResource Include="Plugins\Omdb\Configuration\config.html" />
  43. <None Remove="Plugins\MusicBrainz\Configuration\config.html" />
  44. <EmbeddedResource Include="Plugins\MusicBrainz\Configuration\config.html" />
  45. </ItemGroup>
  46. </Project>