mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-10-31 10:37:22 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			45 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
			
		
		
	
	
			45 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
| <Project Sdk="Microsoft.NET.Sdk">
 | |
| 
 | |
|   <!-- ProjectGuid is only included as a requirement for SonarQube analysis -->
 | |
|   <PropertyGroup>
 | |
|     <ProjectGuid>{960295EE-4AF4-4440-A525-B4C295B01A61}</ProjectGuid>
 | |
|   </PropertyGroup>
 | |
| 
 | |
|   <PropertyGroup>
 | |
|     <TargetFramework>net5.0</TargetFramework>
 | |
|     <GenerateAssemblyInfo>false</GenerateAssemblyInfo>
 | |
|     <GenerateDocumentationFile>true</GenerateDocumentationFile>
 | |
|     <TreatWarningsAsErrors>true</TreatWarningsAsErrors>
 | |
|   </PropertyGroup>
 | |
| 
 | |
|   <ItemGroup>
 | |
|     <Compile Include="..\SharedVersion.cs" />
 | |
|   </ItemGroup>
 | |
| 
 | |
|   <ItemGroup>
 | |
|     <ProjectReference Include="..\MediaBrowser.Common\MediaBrowser.Common.csproj" />
 | |
|     <ProjectReference Include="..\MediaBrowser.Controller\MediaBrowser.Controller.csproj" />
 | |
|     <ProjectReference Include="..\MediaBrowser.Model\MediaBrowser.Model.csproj" />
 | |
|   </ItemGroup>
 | |
| 
 | |
|   <ItemGroup>
 | |
|     <PackageReference Include="BDInfo" Version="0.7.6.1" />
 | |
|     <PackageReference Include="Microsoft.Extensions.Http" Version="5.0.0" />
 | |
|     <PackageReference Include="System.Text.Encoding.CodePages" Version="5.0.0" />
 | |
|     <PackageReference Include="UTF.Unknown" Version="2.3.0" />
 | |
|   </ItemGroup>
 | |
| 
 | |
|   <PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
 | |
|     <CodeAnalysisRuleSet>../jellyfin.ruleset</CodeAnalysisRuleSet>
 | |
|   </PropertyGroup>
 | |
| 
 | |
|   <!-- Code Analyzers-->
 | |
|   <ItemGroup Condition=" '$(Configuration)' == 'Debug' ">
 | |
|     <PackageReference Include="Microsoft.CodeAnalysis.FxCopAnalyzers" Version="2.9.8" PrivateAssets="All" />
 | |
|     <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" />
 | |
|   </ItemGroup>
 | |
| 
 | |
| </Project>
 |