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