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>
|
2021-02-14 14:11:46 +00:00
|
|
|
<TargetFramework>net6.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>
|
|
|
|
|
2021-12-24 17:28:27 +00:00
|
|
|
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
|
|
|
|
<TreatWarningsAsErrors>false</TreatWarningsAsErrors>
|
|
|
|
</PropertyGroup>
|
|
|
|
|
2019-01-19 14:01:16 +00:00
|
|
|
<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' ">
|
2019-12-10 23:13:57 +00:00
|
|
|
<PackageReference Include="SerilogAnalyzer" Version="0.15.0" PrivateAssets="All" />
|
2021-12-24 17:28:27 +00:00
|
|
|
<PackageReference Include="StyleCop.Analyzers" Version="1.2.0-beta.376" PrivateAssets="All" />
|
2019-12-10 23:13:57 +00:00
|
|
|
<PackageReference Include="SmartAnalyzers.MultithreadingAnalyzer" Version="1.1.31" PrivateAssets="All" />
|
2019-01-13 18:16:22 +00:00
|
|
|
</ItemGroup>
|
|
|
|
|
2019-01-01 15:27:11 +00:00
|
|
|
<ItemGroup>
|
2020-06-15 12:01:32 +00:00
|
|
|
<PackageReference Include="CommandLineParser" Version="2.8.0" />
|
2021-11-08 13:55:16 +00:00
|
|
|
<PackageReference Include="Microsoft.Extensions.Configuration.EnvironmentVariables" Version="6.0.0" />
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="6.0.0" />
|
2021-12-15 06:47:07 +00:00
|
|
|
<PackageReference Include="Microsoft.Extensions.Diagnostics.HealthChecks" Version="6.0.1" />
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore" Version="6.0.1" />
|
2021-11-22 12:01:20 +00:00
|
|
|
<PackageReference Include="prometheus-net" Version="5.0.2" />
|
2021-11-22 13:33:18 +00:00
|
|
|
<PackageReference Include="prometheus-net.AspNetCore" Version="5.0.2" />
|
2021-03-29 12:00:44 +00:00
|
|
|
<PackageReference Include="Serilog.AspNetCore" Version="4.1.0" />
|
2020-01-13 18:44:17 +00:00
|
|
|
<PackageReference Include="Serilog.Enrichers.Thread" Version="3.1.0" />
|
2021-10-11 12:00:53 +00:00
|
|
|
<PackageReference Include="Serilog.Settings.Configuration" Version="3.3.0" />
|
2021-06-28 12:00:51 +00:00
|
|
|
<PackageReference Include="Serilog.Sinks.Async" Version="1.5.0" />
|
2021-11-22 12:01:30 +00:00
|
|
|
<PackageReference Include="Serilog.Sinks.Console" Version="4.0.1" />
|
2021-06-28 12:00:58 +00:00
|
|
|
<PackageReference Include="Serilog.Sinks.File" Version="5.0.0" />
|
2022-01-03 12:00:59 +00:00
|
|
|
<PackageReference Include="Serilog.Sinks.Graylog" Version="2.3.0" />
|
2021-11-01 12:00:57 +00:00
|
|
|
<PackageReference Include="SQLitePCLRaw.bundle_e_sqlite3" Version="2.0.7" />
|
2019-01-01 15:27:11 +00:00
|
|
|
</ItemGroup>
|
|
|
|
|
2019-01-19 14:01:16 +00:00
|
|
|
<ItemGroup>
|
|
|
|
<ProjectReference Include="..\Emby.Drawing\Emby.Drawing.csproj" />
|
|
|
|
<ProjectReference Include="..\Emby.Server.Implementations\Emby.Server.Implementations.csproj" />
|
2019-01-26 19:43:13 +00:00
|
|
|
<ProjectReference Include="..\Jellyfin.Drawing.Skia\Jellyfin.Drawing.Skia.csproj" />
|
2020-05-14 21:13:45 +00:00
|
|
|
<ProjectReference Include="..\Jellyfin.Server.Implementations\Jellyfin.Server.Implementations.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>
|