Emby.Server.Implementations.csproj 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  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="DiscUtils.Udf" Version="0.16.13" />
  24. <PackageReference Include="Jellyfin.XmlTv" Version="10.8.0" />
  25. <PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="6.0.1" />
  26. <PackageReference Include="Microsoft.Extensions.Caching.Memory" Version="6.0.1" />
  27. <PackageReference Include="Microsoft.Extensions.Configuration.Abstractions" Version="6.0.0" />
  28. <PackageReference Include="Microsoft.Extensions.Hosting.Abstractions" Version="6.0.0" />
  29. <PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="6.0.11" />
  30. <PackageReference Include="Mono.Nat" Version="3.0.4" />
  31. <PackageReference Include="prometheus-net.DotNetRuntime" Version="4.4.0" />
  32. <PackageReference Include="SQLitePCL.pretty.netstandard" Version="3.1.0" />
  33. <PackageReference Include="DotNet.Glob" Version="3.1.3" />
  34. </ItemGroup>
  35. <ItemGroup>
  36. <Compile Include="..\SharedVersion.cs" />
  37. </ItemGroup>
  38. <PropertyGroup>
  39. <TargetFramework>net6.0</TargetFramework>
  40. <GenerateAssemblyInfo>false</GenerateAssemblyInfo>
  41. <GenerateDocumentationFile>true</GenerateDocumentationFile>
  42. <!-- https://github.com/microsoft/ApplicationInsights-dotnet/issues/2047 -->
  43. <NoWarn>AD0001</NoWarn>
  44. </PropertyGroup>
  45. <PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
  46. <TreatWarningsAsErrors>false</TreatWarningsAsErrors>
  47. </PropertyGroup>
  48. <!-- Code Analyzers-->
  49. <ItemGroup Condition=" '$(Configuration)' == 'Debug' ">
  50. <PackageReference Include="Microsoft.CodeAnalysis.BannedApiAnalyzers" Version="3.3.3">
  51. <PrivateAssets>all</PrivateAssets>
  52. <IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
  53. </PackageReference>
  54. <PackageReference Include="SerilogAnalyzer" Version="0.15.0" PrivateAssets="All" />
  55. <PackageReference Include="StyleCop.Analyzers" Version="1.2.0-beta.435" PrivateAssets="All" />
  56. <PackageReference Include="SmartAnalyzers.MultithreadingAnalyzer" Version="1.1.31" PrivateAssets="All" />
  57. </ItemGroup>
  58. <ItemGroup>
  59. <EmbeddedResource Include="Localization\iso6392.txt" />
  60. <EmbeddedResource Include="Localization\countries.json" />
  61. <EmbeddedResource Include="Localization\Core\*.json" />
  62. <EmbeddedResource Include="Localization\Ratings\*.csv" />
  63. </ItemGroup>
  64. </Project>