Emby.Server.Implementations.csproj 3.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  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="..\Jellyfin.Api\Jellyfin.Api.csproj" />
  9. <ProjectReference Include="..\Jellyfin.Server.Implementations\Jellyfin.Server.Implementations.csproj" />
  10. <ProjectReference Include="..\MediaBrowser.Model\MediaBrowser.Model.csproj" />
  11. <ProjectReference Include="..\MediaBrowser.Common\MediaBrowser.Common.csproj" />
  12. <ProjectReference Include="..\MediaBrowser.Controller\MediaBrowser.Controller.csproj" />
  13. <ProjectReference Include="..\MediaBrowser.Providers\MediaBrowser.Providers.csproj" />
  14. <ProjectReference Include="..\MediaBrowser.XbmcMetadata\MediaBrowser.XbmcMetadata.csproj" />
  15. <ProjectReference Include="..\Emby.Dlna\Emby.Dlna.csproj" />
  16. <ProjectReference Include="..\MediaBrowser.LocalMetadata\MediaBrowser.LocalMetadata.csproj" />
  17. <ProjectReference Include="..\Emby.Photos\Emby.Photos.csproj" />
  18. <ProjectReference Include="..\src\Jellyfin.Drawing\Jellyfin.Drawing.csproj" />
  19. <ProjectReference Include="..\MediaBrowser.MediaEncoding\MediaBrowser.MediaEncoding.csproj" />
  20. </ItemGroup>
  21. <ItemGroup>
  22. <PackageReference Include="DiscUtils.Udf" />
  23. <PackageReference Include="Jellyfin.XmlTv" />
  24. <PackageReference Include="Microsoft.Data.Sqlite" />
  25. <PackageReference Include="Microsoft.Extensions.DependencyInjection" />
  26. <PackageReference Include="Microsoft.Extensions.Caching.Memory" />
  27. <PackageReference Include="Microsoft.Extensions.Configuration.Abstractions" />
  28. <PackageReference Include="Microsoft.Extensions.Hosting.Abstractions" />
  29. <PackageReference Include="Microsoft.EntityFrameworkCore.Relational" />
  30. <PackageReference Include="Mono.Nat" />
  31. <PackageReference Include="prometheus-net.DotNetRuntime" />
  32. <PackageReference Include="DotNet.Glob" />
  33. </ItemGroup>
  34. <ItemGroup>
  35. <Compile Include="..\SharedVersion.cs" />
  36. </ItemGroup>
  37. <PropertyGroup>
  38. <TargetFramework>net8.0</TargetFramework>
  39. <GenerateAssemblyInfo>false</GenerateAssemblyInfo>
  40. <GenerateDocumentationFile>true</GenerateDocumentationFile>
  41. </PropertyGroup>
  42. <PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
  43. <CodeAnalysisTreatWarningsAsErrors>false</CodeAnalysisTreatWarningsAsErrors>
  44. </PropertyGroup>
  45. <!-- Code Analyzers -->
  46. <ItemGroup Condition=" '$(Configuration)' == 'Debug' ">
  47. <!-- TODO: Add IDisposableAnalyzers -->
  48. <!-- <PackageReference Include="IDisposableAnalyzers">
  49. <PrivateAssets>all</PrivateAssets>
  50. <IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
  51. </PackageReference> -->
  52. <PackageReference Include="Microsoft.CodeAnalysis.BannedApiAnalyzers">
  53. <PrivateAssets>all</PrivateAssets>
  54. <IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
  55. </PackageReference>
  56. <PackageReference Include="SerilogAnalyzer" PrivateAssets="All" />
  57. <PackageReference Include="StyleCop.Analyzers" PrivateAssets="All" />
  58. <PackageReference Include="SmartAnalyzers.MultithreadingAnalyzer" PrivateAssets="All" />
  59. </ItemGroup>
  60. <ItemGroup>
  61. <EmbeddedResource Include="Localization\iso6392.txt" />
  62. <EmbeddedResource Include="Localization\countries.json" />
  63. <EmbeddedResource Include="Localization\Core\*.json" />
  64. <EmbeddedResource Include="Localization\Ratings\*.csv" />
  65. </ItemGroup>
  66. </Project>