| <Project Sdk="Microsoft.NET.Sdk"> | 
 |  | 
 |     <PropertyGroup> | 
 |         <ImplicitUsings>enable</ImplicitUsings> | 
 |         <Nullable>enable</Nullable> | 
 |         <OutputType>Exe</OutputType> | 
 |         <TargetFramework>net8.0</TargetFramework> | 
 |         <AssemblyName>Apache.Iggy.Tests.Integrations</AssemblyName> | 
 |         <RootNamespace>Apache.Iggy.Tests.Integrations</RootNamespace> | 
 |         <IsTestingPlatformApplication>true</IsTestingPlatformApplication> | 
 |     </PropertyGroup> | 
 |  | 
 |     <ItemGroup> | 
 |         <PackageReference Include="coverlet.collector"> | 
 |             <PrivateAssets>all</PrivateAssets> | 
 |             <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> | 
 |         </PackageReference> | 
 |         <PackageReference Include="Microsoft.Testing.Extensions.CodeCoverage" /> | 
 |         <PackageReference Include="Microsoft.Testing.Extensions.TrxReport" /> | 
 |         <PackageReference Include="Shouldly" /> | 
 |         <PackageReference Include="Testcontainers" /> | 
 |         <PackageReference Include="TUnit" /> | 
 |     </ItemGroup> | 
 |  | 
 |     <ItemGroup> | 
 |         <ProjectReference Include="..\Iggy_SDK\Iggy_SDK.csproj" /> | 
 |     </ItemGroup> | 
 |  | 
 | </Project> |