Emby.Server.Implementations.csproj 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <!-- ProjectGuid is only included as a requirement for SonarQube analysis -->
  3. <PropertyGroup>
  4. <ProjectGuid>{E383961B-9356-4D5D-8233-9A1079D03055}</ProjectGuid>
  5. </PropertyGroup>
  6. <ItemGroup>
  7. <ProjectReference Include="..\Emby.Naming\Emby.Naming.csproj" />
  8. <ProjectReference Include="..\Emby.Notifications\Emby.Notifications.csproj" />
  9. <ProjectReference Include="..\Jellyfin.Api\Jellyfin.Api.csproj" />
  10. <ProjectReference Include="..\Jellyfin.Server.Implementations\Jellyfin.Server.Implementations.csproj" />
  11. <ProjectReference Include="..\MediaBrowser.Model\MediaBrowser.Model.csproj" />
  12. <ProjectReference Include="..\MediaBrowser.Common\MediaBrowser.Common.csproj" />
  13. <ProjectReference Include="..\MediaBrowser.Controller\MediaBrowser.Controller.csproj" />
  14. <ProjectReference Include="..\MediaBrowser.Providers\MediaBrowser.Providers.csproj" />
  15. <ProjectReference Include="..\MediaBrowser.XbmcMetadata\MediaBrowser.XbmcMetadata.csproj" />
  16. <ProjectReference Include="..\Emby.Dlna\Emby.Dlna.csproj" />
  17. <ProjectReference Include="..\MediaBrowser.LocalMetadata\MediaBrowser.LocalMetadata.csproj" />
  18. <ProjectReference Include="..\Emby.Photos\Emby.Photos.csproj" />
  19. <ProjectReference Include="..\Emby.Drawing\Emby.Drawing.csproj" />
  20. <ProjectReference Include="..\MediaBrowser.MediaEncoding\MediaBrowser.MediaEncoding.csproj" />
  21. </ItemGroup>
  22. <ItemGroup>
  23. <PackageReference Include="Jellyfin.XmlTv" Version="10.6.2" />
  24. <PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="5.0.2" />
  25. <PackageReference Include="Microsoft.Extensions.Caching.Memory" Version="5.0.0" />
  26. <PackageReference Include="Microsoft.Extensions.Configuration.Abstractions" Version="5.0.0" />
  27. <PackageReference Include="Microsoft.Extensions.Hosting.Abstractions" Version="5.0.0" />
  28. <PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="5.0.9" />
  29. <PackageReference Include="Mono.Nat" Version="3.0.1" />
  30. <PackageReference Include="prometheus-net.DotNetRuntime" Version="4.1.0" />
  31. <PackageReference Include="sharpcompress" Version="0.28.3" />
  32. <PackageReference Include="SQLitePCL.pretty.netstandard" Version="3.1.0" />
  33. <PackageReference Include="DotNet.Glob" Version="3.1.2" />
  34. </ItemGroup>
  35. <ItemGroup>
  36. <Compile Include="..\SharedVersion.cs" />
  37. </ItemGroup>
  38. <PropertyGroup>
  39. <TargetFramework>net5.0</TargetFramework>
  40. <GenerateAssemblyInfo>false</GenerateAssemblyInfo>
  41. <GenerateDocumentationFile>true</GenerateDocumentationFile>
  42. <!-- https://github.com/microsoft/ApplicationInsights-dotnet/issues/2047 -->
  43. <NoWarn>AD0001</NoWarn>
  44. <TreatWarningsAsErrors>false</TreatWarningsAsErrors>
  45. </PropertyGroup>
  46. <PropertyGroup Condition=" '$(Configuration)' == 'Release'">
  47. <TreatWarningsAsErrors>true</TreatWarningsAsErrors>
  48. </PropertyGroup>
  49. <!-- Code Analyzers-->
  50. <ItemGroup Condition=" '$(Configuration)' == 'Debug' ">
  51. <PackageReference Include="SerilogAnalyzer" Version="0.15.0" PrivateAssets="All" />
  52. <PackageReference Include="StyleCop.Analyzers" Version="1.1.118" PrivateAssets="All" />
  53. <PackageReference Include="SmartAnalyzers.MultithreadingAnalyzer" Version="1.1.31" PrivateAssets="All" />
  54. </ItemGroup>
  55. <ItemGroup>
  56. <EmbeddedResource Include="Localization\iso6392.txt" />
  57. <EmbeddedResource Include="Localization\countries.json" />
  58. <EmbeddedResource Include="Localization\Core\*.json" />
  59. <EmbeddedResource Include="Localization\Ratings\*.csv" />
  60. </ItemGroup>
  61. </Project>