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