mirror of
				https://github.com/Kareadita/Kavita.git
				synced 2025-11-03 19:17:05 -05:00 
			
		
		
		
	* Updated the dependencies for .NET 6.0.2 * Fixed a bad prev chapter logic where we would bleed into chapters from last volume instead of specials. * Fixed the get prev chapter code to properly walk the order according to documentation and updated some bad test cases
		
			
				
	
	
		
			25 lines
		
	
	
		
			684 B
		
	
	
	
		
			XML
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			684 B
		
	
	
	
		
			XML
		
	
	
	
	
	
<Project Sdk="Microsoft.NET.Sdk">
 | 
						|
 | 
						|
    <PropertyGroup>
 | 
						|
        <TargetFramework>net6.0</TargetFramework>
 | 
						|
        <OutputType>Exe</OutputType>
 | 
						|
    </PropertyGroup>
 | 
						|
 | 
						|
    <ItemGroup>
 | 
						|
      <ProjectReference Include="..\API\API.csproj" />
 | 
						|
    </ItemGroup>
 | 
						|
 | 
						|
    <ItemGroup>
 | 
						|
      <PackageReference Include="BenchmarkDotNet" Version="0.13.1" />
 | 
						|
      <PackageReference Include="BenchmarkDotNet.Annotations" Version="0.13.1" />
 | 
						|
      <PackageReference Include="NSubstitute" Version="4.3.0" />
 | 
						|
    </ItemGroup>
 | 
						|
 | 
						|
    <ItemGroup>
 | 
						|
      <None Update="Data\SeriesNamesForNormalization.txt">
 | 
						|
        <CopyToOutputDirectory>Always</CopyToOutputDirectory>
 | 
						|
      </None>
 | 
						|
    </ItemGroup>
 | 
						|
 | 
						|
</Project>
 |