2024-01-03 08:47:25 -07:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2018-12-29 15:57:22 -07:00
|
|
|
|
2020-04-21 13:21:09 -07:00
|
|
|
<!-- ProjectGuid is only included as a requirement for SonarQube analysis -->
|
|
|
|
<PropertyGroup>
|
|
|
|
<ProjectGuid>{960295EE-4AF4-4440-A525-B4C295B01A61}</ProjectGuid>
|
|
|
|
</PropertyGroup>
|
|
|
|
|
2019-01-19 07:01:16 -07:00
|
|
|
<PropertyGroup>
|
2023-10-23 14:36:56 -07:00
|
|
|
<TargetFramework>net8.0</TargetFramework>
|
2019-01-19 07:01:16 -07:00
|
|
|
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
|
2019-08-11 07:52:37 -07:00
|
|
|
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
2019-01-19 07:01:16 -07:00
|
|
|
</PropertyGroup>
|
2018-12-29 15:57:22 -07:00
|
|
|
|
2019-01-19 07:01:16 -07:00
|
|
|
<ItemGroup>
|
|
|
|
<Compile Include="..\SharedVersion.cs" />
|
|
|
|
</ItemGroup>
|
2018-12-29 15:57:22 -07:00
|
|
|
|
2019-01-19 07:01:16 -07:00
|
|
|
<ItemGroup>
|
|
|
|
<ProjectReference Include="..\MediaBrowser.Common\MediaBrowser.Common.csproj" />
|
|
|
|
<ProjectReference Include="..\MediaBrowser.Controller\MediaBrowser.Controller.csproj" />
|
|
|
|
<ProjectReference Include="..\MediaBrowser.Model\MediaBrowser.Model.csproj" />
|
|
|
|
</ItemGroup>
|
2018-12-29 15:57:22 -07:00
|
|
|
|
2019-01-16 12:50:40 -07:00
|
|
|
<ItemGroup>
|
2024-01-03 08:47:25 -07:00
|
|
|
<PackageReference Include="AsyncKeyedLock" />
|
2023-02-03 10:49:23 -07:00
|
|
|
<PackageReference Include="BDInfo" />
|
2023-02-04 10:15:08 -07:00
|
|
|
<PackageReference Include="libse" />
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Http" />
|
|
|
|
<PackageReference Include="System.Text.Encoding.CodePages" />
|
|
|
|
<PackageReference Include="UTF.Unknown" />
|
2019-01-16 12:50:40 -07:00
|
|
|
</ItemGroup>
|
|
|
|
|
2023-11-04 18:01:14 -07:00
|
|
|
<!-- Code Analyzers -->
|
2020-08-04 08:08:09 -07:00
|
|
|
<ItemGroup Condition=" '$(Configuration)' == 'Debug' ">
|
2023-11-04 18:01:14 -07:00
|
|
|
<PackageReference Include="IDisposableAnalyzers">
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
|
|
|
|
</PackageReference>
|
2023-02-04 10:15:08 -07:00
|
|
|
<PackageReference Include="Microsoft.CodeAnalysis.BannedApiAnalyzers">
|
2022-01-22 08:48:31 -07:00
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
|
|
|
|
</PackageReference>
|
2023-02-04 10:15:08 -07:00
|
|
|
<PackageReference Include="SerilogAnalyzer" PrivateAssets="All" />
|
|
|
|
<PackageReference Include="StyleCop.Analyzers" PrivateAssets="All" />
|
|
|
|
<PackageReference Include="SmartAnalyzers.MultithreadingAnalyzer" PrivateAssets="All" />
|
2020-08-04 08:08:09 -07:00
|
|
|
</ItemGroup>
|
|
|
|
|
2018-12-14 02:40:55 -07:00
|
|
|
</Project>
|