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