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

66 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" />
<ProjectReference Include="..\Emby.Notifications\Emby.Notifications.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="..\Emby.Dlna\Emby.Dlna.csproj" />
<ProjectReference Include="..\MediaBrowser.LocalMetadata\MediaBrowser.LocalMetadata.csproj" />
<ProjectReference Include="..\Emby.Photos\Emby.Photos.csproj" />
<ProjectReference Include="..\Emby.Drawing\Emby.Drawing.csproj" />
<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" Version="0.16.13" />
2020-08-03 01:56:54 +02:00
<PackageReference Include="Jellyfin.XmlTv" Version="10.6.2" />
2021-11-08 14:55:16 +01:00
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="6.0.0" />
<PackageReference Include="Microsoft.Extensions.Caching.Memory" Version="6.0.0" />
<PackageReference Include="Microsoft.Extensions.Configuration.Abstractions" Version="6.0.0" />
<PackageReference Include="Microsoft.Extensions.Hosting.Abstractions" Version="6.0.0" />
2021-12-15 07:47:07 +01:00
<PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="6.0.1" />
<PackageReference Include="Mono.Nat" Version="3.0.2" />
<PackageReference Include="prometheus-net.DotNetRuntime" Version="4.2.2" />
<PackageReference Include="sharpcompress" Version="0.30.1" />
<PackageReference Include="SQLitePCL.pretty.netstandard" Version="3.1.0" />
<PackageReference Include="DotNet.Glob" Version="3.1.3" />
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>
2021-02-14 15:11:46 +01:00
<TargetFramework>net6.0</TargetFramework>
2019-01-19 15:01:16 +01:00
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
2019-08-09 23:50:40 +02:00
<GenerateDocumentationFile>true</GenerateDocumentationFile>
2020-11-13 18:29:26 +01:00
<!-- https://github.com/microsoft/ApplicationInsights-dotnet/issues/2047 -->
<NoWarn>AD0001</NoWarn>
2019-01-19 15:01:16 +01:00
</PropertyGroup>
2018-09-12 19:26:21 +02:00
<!-- Code Analyzers-->
2019-02-28 22:33:20 +01:00
<ItemGroup Condition=" '$(Configuration)' == 'Debug' ">
2019-12-11 00:13:57 +01:00
<PackageReference Include="SerilogAnalyzer" Version="0.15.0" PrivateAssets="All" />
<PackageReference Include="StyleCop.Analyzers" Version="1.1.118" PrivateAssets="All" />
<PackageReference Include="SmartAnalyzers.MultithreadingAnalyzer" Version="1.1.31" 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>