jellyfin/Jellyfin.Api/Jellyfin.Api.csproj

41 lines
1.6 KiB
XML
Raw Normal View History

<Project Sdk="Microsoft.NET.Sdk">
<!-- ProjectGuid is only included as a requirement for SonarQube analysis -->
<PropertyGroup>
<ProjectGuid>{DFBEFB4C-DA19-4143-98B7-27320C7F7163}</ProjectGuid>
</PropertyGroup>
<PropertyGroup>
2021-02-14 15:11:46 +01:00
<TargetFramework>net6.0</TargetFramework>
2019-11-23 20:31:17 +01:00
<GenerateDocumentationFile>true</GenerateDocumentationFile>
2020-11-13 18:24:40 +01:00
<!-- https://github.com/microsoft/ApplicationInsights-dotnet/issues/2047 -->
<NoWarn>AD0001</NoWarn>
</PropertyGroup>
<ItemGroup>
2021-09-19 23:06:27 +02:00
<PackageReference Include="Microsoft.AspNetCore.Authorization" Version="5.0.10" />
2020-11-10 17:52:34 +01:00
<PackageReference Include="Microsoft.Extensions.Http" Version="5.0.0" />
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.2.2" />
<PackageReference Include="Swashbuckle.AspNetCore.ReDoc" Version="6.2.2" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Emby.Dlna\Emby.Dlna.csproj" />
<ProjectReference Include="..\MediaBrowser.Controller\MediaBrowser.Controller.csproj" />
</ItemGroup>
<!-- Code Analyzers-->
2019-11-23 20:31:17 +01:00
<ItemGroup Condition=" '$(Configuration)' == 'Debug' ">
2019-11-24 19:25:46 +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-11-23 20:31:17 +01:00
</ItemGroup>
<ItemGroup>
<AssemblyAttribute Include="System.Runtime.CompilerServices.InternalsVisibleTo">
<_Parameter1>Jellyfin.Api.Tests</_Parameter1>
</AssemblyAttribute>
</ItemGroup>
</Project>