Emby.Server.Implementations.csproj 3.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  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.0" />
  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.7" />
  30. <PackageReference Include="Mono.Nat" Version="3.0.3" />
  31. <PackageReference Include="prometheus-net.DotNetRuntime" Version="4.2.4" />
  32. <PackageReference Include="sharpcompress" Version="0.32.1" />
  33. <PackageReference Include="SQLitePCL.pretty.netstandard" Version="3.1.0" />
  34. <PackageReference Include="DotNet.Glob" Version="3.1.3" />
  35. </ItemGroup>
  36. <ItemGroup>
  37. <Compile Include="..\SharedVersion.cs" />
  38. </ItemGroup>
  39. <PropertyGroup>
  40. <TargetFramework>net6.0</TargetFramework>
  41. <GenerateAssemblyInfo>false</GenerateAssemblyInfo>
  42. <GenerateDocumentationFile>true</GenerateDocumentationFile>
  43. <!-- https://github.com/microsoft/ApplicationInsights-dotnet/issues/2047 -->
  44. <NoWarn>AD0001</NoWarn>
  45. </PropertyGroup>
  46. <PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
  47. <TreatWarningsAsErrors>false</TreatWarningsAsErrors>
  48. </PropertyGroup>
  49. <!-- Code Analyzers-->
  50. <ItemGroup Condition=" '$(Configuration)' == 'Debug' ">
  51. <PackageReference Include="Microsoft.CodeAnalysis.BannedApiAnalyzers" Version="3.3.3">
  52. <PrivateAssets>all</PrivateAssets>
  53. <IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
  54. </PackageReference>
  55. <PackageReference Include="SerilogAnalyzer" Version="0.15.0" PrivateAssets="All" />
  56. <PackageReference Include="StyleCop.Analyzers" Version="1.2.0-beta.406" PrivateAssets="All" />
  57. <PackageReference Include="SmartAnalyzers.MultithreadingAnalyzer" Version="1.1.31" PrivateAssets="All" />
  58. </ItemGroup>
  59. <ItemGroup>
  60. <EmbeddedResource Include="Localization\iso6392.txt" />
  61. <EmbeddedResource Include="Localization\countries.json" />
  62. <EmbeddedResource Include="Localization\Core\*.json" />
  63. <EmbeddedResource Include="Localization\Ratings\*.csv" />
  64. </ItemGroup>
  65. </Project>