2019-01-13 20:10:15 +00:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2018-09-12 17:26:21 +00:00
|
|
|
|
2020-04-21 20:21:09 +00:00
|
|
|
<!-- ProjectGuid is only included as a requirement for SonarQube analysis -->
|
|
|
|
<PropertyGroup>
|
|
|
|
<ProjectGuid>{7EF9F3E0-697D-42F3-A08F-19DEB5F84392}</ProjectGuid>
|
|
|
|
</PropertyGroup>
|
|
|
|
|
2019-01-19 14:01:16 +00:00
|
|
|
<ItemGroup>
|
|
|
|
<ProjectReference Include="..\MediaBrowser.Controller\MediaBrowser.Controller.csproj" />
|
|
|
|
<ProjectReference Include="..\MediaBrowser.Model\MediaBrowser.Model.csproj" />
|
|
|
|
</ItemGroup>
|
2018-09-12 17:26:21 +00:00
|
|
|
|
2019-01-19 14:01:16 +00:00
|
|
|
<PropertyGroup>
|
2023-10-23 21:36:56 +00:00
|
|
|
<TargetFramework>net8.0</TargetFramework>
|
2019-01-19 14:01:16 +00:00
|
|
|
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
|
2019-08-11 14:52:37 +00:00
|
|
|
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
2020-06-14 02:04:53 +00:00
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
<Compile Include="..\SharedVersion.cs" />
|
|
|
|
</ItemGroup>
|
|
|
|
|
2023-11-05 01:01:14 +00:00
|
|
|
<!-- Code Analyzers -->
|
2020-06-14 02:04:53 +00:00
|
|
|
<ItemGroup Condition=" '$(Configuration)' == 'Debug' ">
|
2023-11-05 01:01:14 +00:00
|
|
|
<PackageReference Include="IDisposableAnalyzers">
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
|
|
|
|
</PackageReference>
|
2023-02-04 17:15:08 +00:00
|
|
|
<PackageReference Include="Microsoft.CodeAnalysis.BannedApiAnalyzers">
|
2022-01-22 15:48:31 +00:00
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
|
|
|
|
</PackageReference>
|
2023-02-04 17:15:08 +00:00
|
|
|
<PackageReference Include="SerilogAnalyzer" PrivateAssets="All" />
|
|
|
|
<PackageReference Include="StyleCop.Analyzers" PrivateAssets="All" />
|
|
|
|
<PackageReference Include="SmartAnalyzers.MultithreadingAnalyzer" PrivateAssets="All" />
|
2020-06-14 02:04:53 +00:00
|
|
|
</ItemGroup>
|
|
|
|
|
2018-09-12 17:26:21 +00:00
|
|
|
</Project>
|