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