jellyfin/MediaBrowser.XbmcMetadata/MediaBrowser.XbmcMetadata.csproj

35 lines
1.3 KiB
XML
Raw Normal View History

<Project Sdk="Microsoft.NET.Sdk">
2018-09-12 19:26:21 +02:00
<!-- ProjectGuid is only included as a requirement for SonarQube analysis -->
<PropertyGroup>
<ProjectGuid>{23499896-B135-4527-8574-C26E926EA99E}</ProjectGuid>
</PropertyGroup>
2019-01-19 15:01:16 +01:00
<ItemGroup>
<ProjectReference Include="..\MediaBrowser.Model\MediaBrowser.Model.csproj" />
<ProjectReference Include="..\MediaBrowser.Controller\MediaBrowser.Controller.csproj" />
</ItemGroup>
2018-09-12 19:26:21 +02:00
2019-01-19 15:01:16 +01:00
<ItemGroup>
<Compile Include="..\SharedVersion.cs" />
</ItemGroup>
2018-09-12 19:26:21 +02:00
2019-01-19 15:01:16 +01:00
<PropertyGroup>
2022-10-13 17:55:20 +02:00
<TargetFramework>net7.0</TargetFramework>
2019-01-19 15:01:16 +01:00
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
</PropertyGroup>
<!-- Code Analyzers-->
<ItemGroup Condition=" '$(Configuration)' == 'Debug' ">
<PackageReference Include="Microsoft.CodeAnalysis.BannedApiAnalyzers">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
</PackageReference>
<PackageReference Include="SerilogAnalyzer" PrivateAssets="All" />
<PackageReference Include="StyleCop.Analyzers" PrivateAssets="All" />
<PackageReference Include="SmartAnalyzers.MultithreadingAnalyzer" PrivateAssets="All" />
</ItemGroup>
2018-09-12 19:26:21 +02:00
</Project>