Emby.Server.Implementations.csproj 3.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  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. </ItemGroup>
  20. <ItemGroup>
  21. <PackageReference Include="DiscUtils.Udf" />
  22. <PackageReference Include="Microsoft.Data.Sqlite" />
  23. <PackageReference Include="Microsoft.Extensions.DependencyInjection" />
  24. <PackageReference Include="Microsoft.Extensions.Caching.Memory" />
  25. <PackageReference Include="Microsoft.Extensions.Configuration.Abstractions" />
  26. <PackageReference Include="Microsoft.Extensions.Hosting.Abstractions" />
  27. <PackageReference Include="Microsoft.EntityFrameworkCore.Relational" />
  28. <PackageReference Include="prometheus-net.DotNetRuntime" />
  29. <PackageReference Include="DotNet.Glob" />
  30. </ItemGroup>
  31. <ItemGroup>
  32. <Compile Include="..\SharedVersion.cs" />
  33. </ItemGroup>
  34. <PropertyGroup>
  35. <TargetFramework>net9.0</TargetFramework>
  36. <GenerateAssemblyInfo>false</GenerateAssemblyInfo>
  37. <GenerateDocumentationFile>true</GenerateDocumentationFile>
  38. </PropertyGroup>
  39. <PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
  40. <CodeAnalysisTreatWarningsAsErrors>false</CodeAnalysisTreatWarningsAsErrors>
  41. </PropertyGroup>
  42. <!-- Code Analyzers -->
  43. <ItemGroup Condition=" '$(Configuration)' == 'Debug' ">
  44. <!-- TODO: Add IDisposableAnalyzers -->
  45. <!-- <PackageReference Include="IDisposableAnalyzers">
  46. <PrivateAssets>all</PrivateAssets>
  47. <IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
  48. </PackageReference> -->
  49. <PackageReference Include="Microsoft.CodeAnalysis.BannedApiAnalyzers">
  50. <PrivateAssets>all</PrivateAssets>
  51. <IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
  52. </PackageReference>
  53. <PackageReference Include="SerilogAnalyzer" PrivateAssets="All" />
  54. <PackageReference Include="StyleCop.Analyzers" PrivateAssets="All" />
  55. <PackageReference Include="SmartAnalyzers.MultithreadingAnalyzer" PrivateAssets="All" />
  56. </ItemGroup>
  57. <ItemGroup>
  58. <EmbeddedResource Include="Localization\iso6392.txt" />
  59. <EmbeddedResource Include="Localization\countries.json" />
  60. <EmbeddedResource Include="Localization\Core\*.json" />
  61. <EmbeddedResource Include="Localization\Ratings\*.csv" />
  62. </ItemGroup>
  63. </Project>