jellyfin/Jellyfin.Server/Jellyfin.Server.csproj

84 lines
3.5 KiB
XML
Raw Permalink Normal View History

<Project Sdk="Microsoft.NET.Sdk.Web">
2019-01-01 16:27:11 +01:00
<!-- ProjectGuid is only included as a requirement for SonarQube analysis -->
<PropertyGroup>
<ProjectGuid>{07E39F42-A2C6-4B32-AF8C-725F957A73FF}</ProjectGuid>
</PropertyGroup>
2019-01-19 15:01:16 +01:00
<PropertyGroup>
<AssemblyName>jellyfin</AssemblyName>
<OutputType>Exe</OutputType>
2023-10-23 23:36:56 +02:00
<TargetFramework>net8.0</TargetFramework>
2021-04-11 12:57:28 +02:00
<ServerGarbageCollection>false</ServerGarbageCollection>
2019-01-19 15:01:16 +01:00
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
2019-02-13 17:19:55 +01:00
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<ApplicationIcon>Jellyfin.Server.ico</ApplicationIcon>
2019-01-19 15:01:16 +01:00
</PropertyGroup>
<ItemGroup>
<Compile Include="..\SharedVersion.cs" />
</ItemGroup>
<ItemGroup>
<Content Include="Jellyfin.Server.ico" />
</ItemGroup>
2019-01-19 15:01:16 +01:00
<ItemGroup>
<EmbeddedResource Include="Resources/Configuration/*" />
</ItemGroup>
2019-01-01 18:41:02 +01:00
<!-- Code Analyzers -->
2019-01-13 19:16:22 +01:00
<ItemGroup Condition=" '$(Configuration)' == 'Debug' ">
<PackageReference Include="IDisposableAnalyzers">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
</PackageReference>
<PackageReference Include="Microsoft.CodeAnalysis.BannedApiAnalyzers">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
</PackageReference>
<PackageReference Include="SerilogAnalyzer" PrivateAssets="All" />
<PackageReference Include="StyleCop.Analyzers" PrivateAssets="All" />
<PackageReference Include="SmartAnalyzers.MultithreadingAnalyzer" PrivateAssets="All" />
2019-01-13 19:16:22 +01:00
</ItemGroup>
2019-01-01 16:27:11 +01:00
<ItemGroup>
<PackageReference Include="CommandLineParser" />
<PackageReference Include="Microsoft.Extensions.Configuration.EnvironmentVariables" />
<PackageReference Include="Microsoft.Extensions.Configuration.Json" />
<PackageReference Include="Microsoft.Extensions.Diagnostics.HealthChecks" />
<PackageReference Include="Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore" />
<PackageReference Include="prometheus-net" />
<PackageReference Include="prometheus-net.AspNetCore" />
<PackageReference Include="Serilog.AspNetCore" />
<PackageReference Include="Serilog.Enrichers.Thread" />
<PackageReference Include="Serilog.Settings.Configuration" />
<PackageReference Include="Serilog.Sinks.Async" />
<PackageReference Include="Serilog.Sinks.Console" />
<PackageReference Include="Serilog.Sinks.File" />
2023-08-25 19:49:01 +02:00
<PackageReference Include="Serilog.Sinks.Graylog" />
2019-01-01 16:27:11 +01:00
</ItemGroup>
2019-01-19 15:01:16 +01:00
<ItemGroup>
<ProjectReference Include="..\src\Jellyfin.Drawing\Jellyfin.Drawing.csproj" />
2019-01-19 15:01:16 +01:00
<ProjectReference Include="..\Emby.Server.Implementations\Emby.Server.Implementations.csproj" />
2023-01-11 01:35:06 +01:00
<ProjectReference Include="..\src\Jellyfin.Drawing.Skia\Jellyfin.Drawing.Skia.csproj" />
2023-12-28 21:15:03 +01:00
<ProjectReference Include="..\src\Jellyfin.LiveTv\Jellyfin.LiveTv.csproj" />
2020-05-14 23:13:45 +02:00
<ProjectReference Include="..\Jellyfin.Server.Implementations\Jellyfin.Server.Implementations.csproj" />
<ProjectReference Include="..\src\Jellyfin.MediaEncoding.Hls\Jellyfin.MediaEncoding.Hls.csproj" />
2019-01-19 15:01:16 +01:00
</ItemGroup>
2019-01-01 16:27:11 +01:00
2020-08-18 23:52:42 +02:00
<ItemGroup>
2020-09-04 05:39:50 +02:00
<None Update="wwwroot\api-docs\redoc\custom.css">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
2020-08-18 23:52:42 +02:00
<None Update="wwwroot\api-docs\swagger\custom.css">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
2020-09-04 05:39:50 +02:00
<None Update="wwwroot\api-docs\banner-dark.svg">
2020-08-18 23:52:42 +02:00
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
2019-01-01 16:27:11 +01:00
</Project>