jellyfin/Jellyfin.Server/Jellyfin.Server.csproj

84 lines
3.5 KiB
XML
Raw Normal View History

<Project Sdk="Microsoft.NET.Sdk.Web">
2019-01-01 10:27:11 -05:00
<!-- ProjectGuid is only included as a requirement for SonarQube analysis -->
<PropertyGroup>
<ProjectGuid>{07E39F42-A2C6-4B32-AF8C-725F957A73FF}</ProjectGuid>
</PropertyGroup>
2019-01-19 09:01:16 -05:00
<PropertyGroup>
<AssemblyName>jellyfin</AssemblyName>
<OutputType>Exe</OutputType>
2023-10-23 17:36:56 -04:00
<TargetFramework>net8.0</TargetFramework>
2021-04-11 06:57:28 -04:00
<ServerGarbageCollection>false</ServerGarbageCollection>
2019-01-19 09:01:16 -05:00
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
2019-02-13 11:19:55 -05:00
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<ApplicationIcon>Jellyfin.Server.ico</ApplicationIcon>
2019-01-19 09:01:16 -05:00
</PropertyGroup>
<ItemGroup>
<Compile Include="..\SharedVersion.cs" />
</ItemGroup>
<ItemGroup>
<Content Include="Jellyfin.Server.ico" />
</ItemGroup>
2019-01-19 09:01:16 -05:00
<ItemGroup>
<EmbeddedResource Include="Resources/Configuration/*" />
</ItemGroup>
2019-01-01 12:41:02 -05:00
<!-- Code Analyzers -->
2019-01-13 13:16:22 -05: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 13:16:22 -05:00
</ItemGroup>
2019-01-01 10:27:11 -05: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 13:49:01 -04:00
<PackageReference Include="Serilog.Sinks.Graylog" />
2019-01-01 10:27:11 -05:00
</ItemGroup>
2019-01-19 09:01:16 -05:00
<ItemGroup>
<ProjectReference Include="..\src\Jellyfin.Drawing\Jellyfin.Drawing.csproj" />
2019-01-19 09:01:16 -05:00
<ProjectReference Include="..\Emby.Server.Implementations\Emby.Server.Implementations.csproj" />
2023-01-10 19:35:06 -05:00
<ProjectReference Include="..\src\Jellyfin.Drawing.Skia\Jellyfin.Drawing.Skia.csproj" />
2023-12-28 15:15:03 -05:00
<ProjectReference Include="..\src\Jellyfin.LiveTv\Jellyfin.LiveTv.csproj" />
2020-05-14 17:13:45 -04:00
<ProjectReference Include="..\Jellyfin.Server.Implementations\Jellyfin.Server.Implementations.csproj" />
<ProjectReference Include="..\src\Jellyfin.MediaEncoding.Hls\Jellyfin.MediaEncoding.Hls.csproj" />
2019-01-19 09:01:16 -05:00
</ItemGroup>
2019-01-01 10:27:11 -05:00
2020-08-18 17:52:42 -04:00
<ItemGroup>
2020-09-03 23:39:50 -04:00
<None Update="wwwroot\api-docs\redoc\custom.css">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
2020-08-18 17:52:42 -04:00
<None Update="wwwroot\api-docs\swagger\custom.css">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
2020-09-03 23:39:50 -04:00
<None Update="wwwroot\api-docs\banner-dark.svg">
2020-08-18 17:52:42 -04:00
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
2019-01-01 10:27:11 -05:00
</Project>