mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-10-30 18:22:48 -04:00 
			
		
		
		
	Bumps [Moq](https://github.com/moq/moq4) from 4.16.1 to 4.17.1. - [Release notes](https://github.com/moq/moq4/releases) - [Changelog](https://github.com/moq/moq4/blob/main/CHANGELOG.md) - [Commits](https://github.com/moq/moq4/compare/v4.16.1...v4.17.1) --- updated-dependencies: - dependency-name: Moq dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
		
			
				
	
	
		
			49 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
			
		
		
	
	
			49 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
| <Project Sdk="Microsoft.NET.Sdk">
 | |
|   <PropertyGroup>
 | |
|     <TargetFramework>net6.0</TargetFramework>
 | |
|     <IsPackable>false</IsPackable>
 | |
|     <CodeAnalysisRuleSet>../jellyfin-tests.ruleset</CodeAnalysisRuleSet>
 | |
|   </PropertyGroup>
 | |
| 
 | |
|   <ItemGroup>
 | |
|     <PackageReference Include="AutoFixture" Version="4.17.0" />
 | |
|     <PackageReference Include="AutoFixture.AutoMoq" Version="4.17.0" />
 | |
|     <PackageReference Include="AutoFixture.Xunit2" Version="4.17.0" />
 | |
|     <PackageReference Include="Microsoft.AspNetCore.Mvc.Testing" Version="6.0.2" />
 | |
|     <PackageReference Include="Microsoft.Extensions.Options" Version="6.0.0" />
 | |
|     <PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.1.0" />
 | |
|     <PackageReference Include="xunit" Version="2.4.1" />
 | |
|     <PackageReference Include="xunit.runner.visualstudio" Version="2.4.3" />
 | |
|     <PackageReference Include="Xunit.Priority" Version="1.1.6" />
 | |
|     <PackageReference Include="coverlet.collector" Version="3.1.2" />
 | |
|     <PackageReference Include="Moq" Version="4.17.1" />
 | |
|   </ItemGroup>
 | |
| 
 | |
|   <ItemGroup>
 | |
|     <!-- Don't run tests in parallel -->
 | |
|     <None Update="xunit.runner.json">
 | |
|       <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
 | |
|     </None>
 | |
|   </ItemGroup>
 | |
| 
 | |
|   <!-- Code Analyzers -->
 | |
|   <ItemGroup Condition=" '$(Configuration)' == 'Debug' ">
 | |
|     <PackageReference Include="Microsoft.CodeAnalysis.BannedApiAnalyzers" Version="3.3.3">
 | |
|       <PrivateAssets>all</PrivateAssets>
 | |
|       <IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
 | |
|     </PackageReference>
 | |
|     <PackageReference Include="SerilogAnalyzer" Version="0.15.0" PrivateAssets="All" />
 | |
|     <PackageReference Include="StyleCop.Analyzers" Version="1.2.0-beta.376" PrivateAssets="All" />
 | |
|     <PackageReference Include="SmartAnalyzers.MultithreadingAnalyzer" Version="1.1.31" PrivateAssets="All" />
 | |
|   </ItemGroup>
 | |
| 
 | |
|   <ItemGroup>
 | |
|     <ProjectReference Include="../../Jellyfin.Server/Jellyfin.Server.csproj" />
 | |
|   </ItemGroup>
 | |
| 
 | |
|   <ItemGroup>
 | |
|     <EmbeddedResource Include="TestPage.html" />
 | |
|   </ItemGroup>
 | |
| 
 | |
| </Project>
 |