MediaBrowser.Providers.csproj 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  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.6" />
  16. <PackageReference Include="Microsoft.Extensions.Caching.Abstractions" Version="3.1.6" />
  17. <PackageReference Include="OptimizedPriorityQueue" Version="4.2.0" />
  18. <PackageReference Include="PlaylistsNET" Version="1.1.2" />
  19. <PackageReference Include="TvDbSharper" Version="3.2.0" />
  20. </ItemGroup>
  21. <PropertyGroup>
  22. <TargetFramework>netstandard2.1</TargetFramework>
  23. <GenerateAssemblyInfo>false</GenerateAssemblyInfo>
  24. <GenerateDocumentationFile>true</GenerateDocumentationFile>
  25. <TreatWarningsAsErrors Condition=" '$(Configuration)' == 'Release'" >true</TreatWarningsAsErrors>
  26. </PropertyGroup>
  27. <!-- Code Analyzers-->
  28. <ItemGroup Condition=" '$(Configuration)' == 'Debug' ">
  29. <PackageReference Include="Microsoft.CodeAnalysis.FxCopAnalyzers" Version="2.9.8" PrivateAssets="All" />
  30. <PackageReference Include="SerilogAnalyzer" Version="0.15.0" PrivateAssets="All" />
  31. <PackageReference Include="StyleCop.Analyzers" Version="1.1.118" PrivateAssets="All" />
  32. <PackageReference Include="SmartAnalyzers.MultithreadingAnalyzer" Version="1.1.31" PrivateAssets="All" />
  33. </ItemGroup>
  34. <PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
  35. <CodeAnalysisRuleSet>../jellyfin.ruleset</CodeAnalysisRuleSet>
  36. </PropertyGroup>
  37. <ItemGroup>
  38. <None Remove="Plugins\AudioDb\Configuration\config.html" />
  39. <EmbeddedResource Include="Plugins\AudioDb\Configuration\config.html" />
  40. <None Remove="Plugins\Omdb\Configuration\config.html" />
  41. <EmbeddedResource Include="Plugins\Omdb\Configuration\config.html" />
  42. <None Remove="Plugins\MusicBrainz\Configuration\config.html" />
  43. <EmbeddedResource Include="Plugins\MusicBrainz\Configuration\config.html" />
  44. </ItemGroup>
  45. </Project>