mirror of
				https://github.com/krahets/hello-algo.git
				synced 2025-11-04 22:28:40 +08:00 
			
		
		
		
	* .net 8.0 migration * update docs * revert change * revert change and update appendix docs * remove static * Update binary_search_insertion.cs * Update binary_search_insertion.cs * Update binary_search_edge.cs * Update binary_search_insertion.cs * Update binary_search_edge.cs --------- Co-authored-by: Yudong Jin <krahets@163.com>
		
			
				
	
	
		
			22 lines
		
	
	
		
			755 B
		
	
	
	
		
			XML
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			755 B
		
	
	
	
		
			XML
		
	
	
	
	
	
<Project Sdk="Microsoft.NET.Sdk">
 | 
						|
 | 
						|
  <PropertyGroup>
 | 
						|
    <OutputType>Exe</OutputType>
 | 
						|
    <TargetFramework>net8.0</TargetFramework>
 | 
						|
    <RootNamespace>hello_algo</RootNamespace>
 | 
						|
    <ImplicitUsings>enable</ImplicitUsings>
 | 
						|
    <Nullable>enable</Nullable>
 | 
						|
  </PropertyGroup>
 | 
						|
 | 
						|
  <ItemGroup>
 | 
						|
    <PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.8.0" />
 | 
						|
    <PackageReference Include="NUnit" Version="3.14.0" />
 | 
						|
    <PackageReference Include="NUnit3TestAdapter" Version="4.5.0" />
 | 
						|
    <PackageReference Include="coverlet.collector" Version="6.0.0">
 | 
						|
      <PrivateAssets>all</PrivateAssets>
 | 
						|
      <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
 | 
						|
    </PackageReference>
 | 
						|
  </ItemGroup>
 | 
						|
 | 
						|
</Project>
 |