2020-05-02 15:32:22 -07:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2018-09-12 10:26:21 -07:00
|
|
|
|
2020-04-21 13:21:09 -07:00
|
|
|
<!-- ProjectGuid is only included as a requirement for SonarQube analysis -->
|
|
|
|
<PropertyGroup>
|
|
|
|
<ProjectGuid>{E383961B-9356-4D5D-8233-9A1079D03055}</ProjectGuid>
|
|
|
|
</PropertyGroup>
|
|
|
|
|
2019-01-19 07:01:16 -07:00
|
|
|
<ItemGroup>
|
|
|
|
<ProjectReference Include="..\Emby.Naming\Emby.Naming.csproj" />
|
2019-07-02 03:21:54 -07:00
|
|
|
<ProjectReference Include="..\Jellyfin.Api\Jellyfin.Api.csproj" />
|
2021-05-11 16:18:42 -07:00
|
|
|
<ProjectReference Include="..\Jellyfin.Server.Implementations\Jellyfin.Server.Implementations.csproj" />
|
2019-01-19 07:01:16 -07: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" />
|
2020-10-01 12:51:25 -07:00
|
|
|
<ProjectReference Include="..\MediaBrowser.XbmcMetadata\MediaBrowser.XbmcMetadata.csproj" />
|
2019-01-19 07:01:16 -07:00
|
|
|
<ProjectReference Include="..\Emby.Dlna\Emby.Dlna.csproj" />
|
|
|
|
<ProjectReference Include="..\MediaBrowser.LocalMetadata\MediaBrowser.LocalMetadata.csproj" />
|
|
|
|
<ProjectReference Include="..\Emby.Photos\Emby.Photos.csproj" />
|
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="..\MediaBrowser.MediaEncoding\MediaBrowser.MediaEncoding.csproj" />
|
|
|
|
</ItemGroup>
|
2018-09-12 10:26:21 -07:00
|
|
|
|
2019-01-19 07:01:16 -07:00
|
|
|
<ItemGroup>
|
2021-09-20 05:01:05 -07:00
|
|
|
<PackageReference Include="DiscUtils.Udf" Version="0.16.13" />
|
2022-04-15 12:29:00 -07:00
|
|
|
<PackageReference Include="Jellyfin.XmlTv" Version="10.8.0" />
|
2022-12-07 08:56:32 -07:00
|
|
|
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="7.0.0" />
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Caching.Memory" Version="7.0.0" />
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Configuration.Abstractions" Version="7.0.0" />
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Hosting.Abstractions" Version="7.0.0" />
|
2023-01-10 07:50:35 -07:00
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="7.0.2" />
|
2022-10-19 05:25:10 -07:00
|
|
|
<PackageReference Include="Mono.Nat" Version="3.0.4" />
|
2022-11-27 06:09:07 -07:00
|
|
|
<PackageReference Include="prometheus-net.DotNetRuntime" Version="4.4.0" />
|
2021-06-07 05:00:45 -07:00
|
|
|
<PackageReference Include="SQLitePCL.pretty.netstandard" Version="3.1.0" />
|
2021-10-04 05:01:09 -07:00
|
|
|
<PackageReference Include="DotNet.Glob" Version="3.1.3" />
|
2019-01-19 07:01:16 -07:00
|
|
|
</ItemGroup>
|
2018-09-12 10:26:21 -07:00
|
|
|
|
2019-01-19 07:01:16 -07:00
|
|
|
<ItemGroup>
|
|
|
|
<Compile Include="..\SharedVersion.cs" />
|
|
|
|
</ItemGroup>
|
2018-09-12 10:26:21 -07:00
|
|
|
|
2019-01-19 07:01:16 -07:00
|
|
|
<PropertyGroup>
|
2022-10-13 08:55:20 -07:00
|
|
|
<TargetFramework>net7.0</TargetFramework>
|
2019-01-19 07:01:16 -07:00
|
|
|
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
|
2019-08-09 14:50:40 -07:00
|
|
|
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
2020-11-13 10:29:26 -07:00
|
|
|
<!-- https://github.com/microsoft/ApplicationInsights-dotnet/issues/2047 -->
|
|
|
|
<NoWarn>AD0001</NoWarn>
|
2019-01-19 07:01:16 -07:00
|
|
|
</PropertyGroup>
|
2018-09-12 10:26:21 -07:00
|
|
|
|
2021-12-24 10:28:27 -07:00
|
|
|
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
|
2022-12-05 05:54:28 -07:00
|
|
|
<CodeAnalysisTreatWarningsAsErrors>false</CodeAnalysisTreatWarningsAsErrors>
|
2021-12-24 10:28:27 -07:00
|
|
|
</PropertyGroup>
|
|
|
|
|
2019-12-13 12:11:37 -07:00
|
|
|
<!-- Code Analyzers-->
|
2019-02-28 14:33:20 -07:00
|
|
|
<ItemGroup Condition=" '$(Configuration)' == 'Debug' ">
|
2023-01-18 04:16:59 -07:00
|
|
|
<PackageReference Include="Microsoft.CodeAnalysis.BannedApiAnalyzers" Version="3.3.4">
|
2022-01-22 08:48:31 -07:00
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
|
|
|
|
</PackageReference>
|
2019-12-10 16:13:57 -07:00
|
|
|
<PackageReference Include="SerilogAnalyzer" Version="0.15.0" PrivateAssets="All" />
|
2022-05-09 06:24:09 -07:00
|
|
|
<PackageReference Include="StyleCop.Analyzers" Version="1.2.0-beta.435" PrivateAssets="All" />
|
2019-12-10 16:13:57 -07:00
|
|
|
<PackageReference Include="SmartAnalyzers.MultithreadingAnalyzer" Version="1.1.31" PrivateAssets="All" />
|
2019-02-28 14:33:20 -07:00
|
|
|
</ItemGroup>
|
|
|
|
|
2019-01-19 07:01:16 -07:00
|
|
|
<ItemGroup>
|
|
|
|
<EmbeddedResource Include="Localization\iso6392.txt" />
|
|
|
|
<EmbeddedResource Include="Localization\countries.json" />
|
|
|
|
<EmbeddedResource Include="Localization\Core\*.json" />
|
2019-02-04 10:46:36 -07:00
|
|
|
<EmbeddedResource Include="Localization\Ratings\*.csv" />
|
2019-01-19 07:01:16 -07:00
|
|
|
</ItemGroup>
|
2018-09-12 10:26:21 -07:00
|
|
|
</Project>
|