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>
|
2022-10-13 15:55:20 +00:00
|
|
|
<TargetFramework>net7.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>
|
2019-11-23 15:31:02 +00:00
|
|
|
</PropertyGroup>
|
|
|
|
|
2021-12-24 17:28:27 +00:00
|
|
|
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
|
2022-12-05 12:54:28 +00:00
|
|
|
<CodeAnalysisTreatWarningsAsErrors>false</CodeAnalysisTreatWarningsAsErrors>
|
2019-11-23 15:31:02 +00:00
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
2022-12-16 03:13:11 +00:00
|
|
|
<PackageReference Include="Microsoft.AspNetCore.Authorization" Version="7.0.1" />
|
2022-12-07 15:56:32 +00:00
|
|
|
<PackageReference Include="Microsoft.Extensions.Http" Version="7.0.0" />
|
2021-10-18 12:00:59 +00:00
|
|
|
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.2.3" />
|
2022-08-15 12:01:13 +00:00
|
|
|
<PackageReference Include="Swashbuckle.AspNetCore.ReDoc" Version="6.4.0" />
|
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" />
|
2021-09-23 13:29:12 +00:00
|
|
|
<ProjectReference Include="..\src\Jellyfin.MediaEncoding.Hls\Jellyfin.MediaEncoding.Hls.csproj" />
|
2019-11-23 15:31:02 +00:00
|
|
|
</ItemGroup>
|
|
|
|
|
2019-12-13 19:11:37 +00:00
|
|
|
<!-- Code Analyzers-->
|
2019-11-23 19:31:17 +00:00
|
|
|
<ItemGroup Condition=" '$(Configuration)' == 'Debug' ">
|
2022-01-22 15:48:31 +00:00
|
|
|
<PackageReference Include="Microsoft.CodeAnalysis.BannedApiAnalyzers" Version="3.3.3">
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
|
|
|
|
</PackageReference>
|
2019-11-24 18:25:46 +00:00
|
|
|
<PackageReference Include="SerilogAnalyzer" Version="0.15.0" PrivateAssets="All" />
|
2022-05-09 13:24:09 +00:00
|
|
|
<PackageReference Include="StyleCop.Analyzers" Version="1.2.0-beta.435" PrivateAssets="All" />
|
2019-11-24 18:25:46 +00:00
|
|
|
<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>
|