mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-10-30 18:22:48 -04:00 
			
		
		
		
	If the calling function can't be made async easily you can still use .GetAwaiter().GetResult(), which is way easier to find in the future
		
			
				
	
	
		
			22 lines
		
	
	
		
			564 B
		
	
	
	
		
			XML
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			564 B
		
	
	
	
		
			XML
		
	
	
	
	
	
| <Project>
 | |
|   <!-- Sets defaults for all projects in the repo -->
 | |
| 
 | |
|   <PropertyGroup>
 | |
|     <Nullable>enable</Nullable>
 | |
|     <CodeAnalysisRuleSet>$(MSBuildThisFileDirectory)/jellyfin.ruleset</CodeAnalysisRuleSet>
 | |
|   </PropertyGroup>
 | |
| 
 | |
|   <PropertyGroup>
 | |
|     <TreatWarningsAsErrors>true</TreatWarningsAsErrors>
 | |
|   </PropertyGroup>
 | |
| 
 | |
|   <PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
 | |
|     <AnalysisMode>AllEnabledByDefault</AnalysisMode>
 | |
|   </PropertyGroup>
 | |
| 
 | |
|   <ItemGroup>
 | |
|     <AdditionalFiles Include="$(SolutionDir)/BannedSymbols.txt" />
 | |
|   </ItemGroup>
 | |
| 
 | |
| </Project>
 |