jellyfin/Emby.Server.Implementations/Emby.Server.Implementations.csproj

72 lines
3.4 KiB
XML
Raw Normal View History

2020-05-03 00:32:22 +02:00
<Project Sdk="Microsoft.NET.Sdk">
2018-09-12 19:26:21 +02:00
<!-- ProjectGuid is only included as a requirement for SonarQube analysis -->
<PropertyGroup>
<ProjectGuid>{E383961B-9356-4D5D-8233-9A1079D03055}</ProjectGuid>
</PropertyGroup>
2019-01-19 15:01:16 +01:00
<ItemGroup>
<ProjectReference Include="..\Emby.Naming\Emby.Naming.csproj" />
2019-07-02 12:21:54 +02:00
<ProjectReference Include="..\Jellyfin.Api\Jellyfin.Api.csproj" />
<ProjectReference Include="..\Jellyfin.Server.Implementations\Jellyfin.Server.Implementations.csproj" />
2019-01-19 15:01:16 +01:00
<ProjectReference Include="..\MediaBrowser.Model\MediaBrowser.Model.csproj" />
<ProjectReference Include="..\MediaBrowser.Common\MediaBrowser.Common.csproj" />
<ProjectReference Include="..\MediaBrowser.Controller\MediaBrowser.Controller.csproj" />
<ProjectReference Include="..\MediaBrowser.Providers\MediaBrowser.Providers.csproj" />
<ProjectReference Include="..\MediaBrowser.XbmcMetadata\MediaBrowser.XbmcMetadata.csproj" />
2019-01-19 15:01:16 +01:00
<ProjectReference Include="..\MediaBrowser.LocalMetadata\MediaBrowser.LocalMetadata.csproj" />
<ProjectReference Include="..\Emby.Photos\Emby.Photos.csproj" />
<ProjectReference Include="..\src\Jellyfin.Drawing\Jellyfin.Drawing.csproj" />
2019-01-19 15:01:16 +01:00
<ProjectReference Include="..\MediaBrowser.MediaEncoding\MediaBrowser.MediaEncoding.csproj" />
</ItemGroup>
2018-09-12 19:26:21 +02:00
2019-01-19 15:01:16 +01:00
<ItemGroup>
<PackageReference Include="DiscUtils.Udf" />
2023-08-21 12:13:32 +02:00
<PackageReference Include="Microsoft.Data.Sqlite" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection" />
<PackageReference Include="Microsoft.Extensions.Caching.Memory" />
<PackageReference Include="Microsoft.Extensions.Configuration.Abstractions" />
<PackageReference Include="Microsoft.Extensions.Hosting.Abstractions" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Relational" />
<PackageReference Include="prometheus-net.DotNetRuntime" />
<PackageReference Include="DotNet.Glob" />
2019-01-19 15:01:16 +01:00
</ItemGroup>
2018-09-12 19:26:21 +02:00
2019-01-19 15:01:16 +01:00
<ItemGroup>
<Compile Include="..\SharedVersion.cs" />
</ItemGroup>
2018-09-12 19:26:21 +02:00
2019-01-19 15:01:16 +01:00
<PropertyGroup>
2023-10-23 23:36:56 +02:00
<TargetFramework>net8.0</TargetFramework>
2019-01-19 15:01:16 +01:00
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
2019-08-09 23:50:40 +02:00
<GenerateDocumentationFile>true</GenerateDocumentationFile>
2019-01-19 15:01:16 +01:00
</PropertyGroup>
2018-09-12 19:26:21 +02:00
2021-12-24 18:28:27 +01:00
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
<CodeAnalysisTreatWarningsAsErrors>false</CodeAnalysisTreatWarningsAsErrors>
2021-12-24 18:28:27 +01:00
</PropertyGroup>
<!-- Code Analyzers -->
2019-02-28 22:33:20 +01:00
<ItemGroup Condition=" '$(Configuration)' == 'Debug' ">
<!-- TODO: Add IDisposableAnalyzers -->
<!-- <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-02-28 22:33:20 +01:00
</ItemGroup>
2019-01-19 15:01:16 +01:00
<ItemGroup>
<EmbeddedResource Include="Localization\iso6392.txt" />
<EmbeddedResource Include="Localization\countries.json" />
<EmbeddedResource Include="Localization\Core\*.json" />
2019-02-04 18:46:36 +01:00
<EmbeddedResource Include="Localization\Ratings\*.csv" />
2019-01-19 15:01:16 +01:00
</ItemGroup>
2018-09-12 19:26:21 +02:00
</Project>