|  | @@ -0,0 +1,39 @@
 | 
	
		
			
				|  |  | +<Project Sdk="Microsoft.NET.Sdk">
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +    <PropertyGroup>
 | 
	
		
			
				|  |  | +        <TargetFramework>net7.0</TargetFramework>
 | 
	
		
			
				|  |  | +        <ImplicitUsings>enable</ImplicitUsings>
 | 
	
		
			
				|  |  | +        <Nullable>enable</Nullable>
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        <IsPackable>false</IsPackable>
 | 
	
		
			
				|  |  | +        <IsTestProject>true</IsTestProject>
 | 
	
		
			
				|  |  | +    </PropertyGroup>
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +    <ItemGroup>
 | 
	
		
			
				|  |  | +        <PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.5.0"/>
 | 
	
		
			
				|  |  | +        <PackageReference Include="xunit" Version="2.4.2"/>
 | 
	
		
			
				|  |  | +        <PackageReference Include="xunit.runner.visualstudio" Version="2.4.5">
 | 
	
		
			
				|  |  | +            <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
 | 
	
		
			
				|  |  | +            <PrivateAssets>all</PrivateAssets>
 | 
	
		
			
				|  |  | +        </PackageReference>
 | 
	
		
			
				|  |  | +        <PackageReference Include="coverlet.collector" Version="3.2.0">
 | 
	
		
			
				|  |  | +            <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
 | 
	
		
			
				|  |  | +            <PrivateAssets>all</PrivateAssets>
 | 
	
		
			
				|  |  | +        </PackageReference>
 | 
	
		
			
				|  |  | +    </ItemGroup>
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +    <ItemGroup>
 | 
	
		
			
				|  |  | +      <Folder Include="testFiles\" />
 | 
	
		
			
				|  |  | +    </ItemGroup>
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +    <ItemGroup>
 | 
	
		
			
				|  |  | +      <None Update="testFiles\differentTypes.xlsx">
 | 
	
		
			
				|  |  | +        <CopyToOutputDirectory>Always</CopyToOutputDirectory>
 | 
	
		
			
				|  |  | +      </None>
 | 
	
		
			
				|  |  | +    </ItemGroup>
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +    <ItemGroup>
 | 
	
		
			
				|  |  | +      <ProjectReference Include="..\ExcelInfo\ExcelInfo.csproj" />
 | 
	
		
			
				|  |  | +    </ItemGroup>
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +</Project>
 |