Emby.Server.Implementations.csproj 3.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  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="..\MediaBrowser.LocalMetadata\MediaBrowser.LocalMetadata.csproj" />
  16. <ProjectReference Include="..\Emby.Photos\Emby.Photos.csproj" />
  17. <ProjectReference Include="..\src\Jellyfin.Drawing\Jellyfin.Drawing.csproj" />
  18. <ProjectReference Include="..\MediaBrowser.MediaEncoding\MediaBrowser.MediaEncoding.csproj" />
  19. <ProjectReference Include="..\src\Jellyfin.Database\Jellyfin.Database.Implementations\Jellyfin.Database.Implementations.csproj" />
  20. </ItemGroup>
  21. <ItemGroup>
  22. <PackageReference Include="BitFaster.Caching" />
  23. <PackageReference Include="DiscUtils.Udf" />
  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="prometheus-net.DotNetRuntime" />
  31. <PackageReference Include="DotNet.Glob" />
  32. </ItemGroup>
  33. <ItemGroup>
  34. <Compile Include="..\SharedVersion.cs" />
  35. </ItemGroup>
  36. <PropertyGroup>
  37. <TargetFramework>net9.0</TargetFramework>
  38. <GenerateAssemblyInfo>false</GenerateAssemblyInfo>
  39. <GenerateDocumentationFile>true</GenerateDocumentationFile>
  40. </PropertyGroup>
  41. <PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
  42. <CodeAnalysisTreatWarningsAsErrors>false</CodeAnalysisTreatWarningsAsErrors>
  43. </PropertyGroup>
  44. <!-- Code Analyzers -->
  45. <ItemGroup Condition=" '$(Configuration)' == 'Debug' ">
  46. <!-- TODO: Add IDisposableAnalyzers -->
  47. <!-- <PackageReference Include="IDisposableAnalyzers">
  48. <PrivateAssets>all</PrivateAssets>
  49. <IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
  50. </PackageReference> -->
  51. <PackageReference Include="Microsoft.CodeAnalysis.BannedApiAnalyzers">
  52. <PrivateAssets>all</PrivateAssets>
  53. <IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
  54. </PackageReference>
  55. <PackageReference Include="SerilogAnalyzer" PrivateAssets="All" />
  56. <PackageReference Include="StyleCop.Analyzers" PrivateAssets="All" />
  57. <PackageReference Include="SmartAnalyzers.MultithreadingAnalyzer" PrivateAssets="All" />
  58. </ItemGroup>
  59. <ItemGroup>
  60. <PackageReference Include="Ignore" />
  61. </ItemGroup>
  62. <ItemGroup>
  63. <EmbeddedResource Include="Localization\iso6392.txt" />
  64. <EmbeddedResource Include="Localization\countries.json" />
  65. <EmbeddedResource Include="Localization\Core\*.json" />
  66. <EmbeddedResource Include="Localization\Ratings\*.json" />
  67. </ItemGroup>
  68. </Project>