59 lines
2.4 KiB
XML
59 lines
2.4 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<TargetFramework>net10.0</TargetFramework>
|
|
<LangVersion>preview</LangVersion>
|
|
<Nullable>enable</Nullable>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<IsPackable>false</IsPackable>
|
|
<IsTestProject>true</IsTestProject>
|
|
<RootNamespace>StellaOps.Parity.Tests</RootNamespace>
|
|
</PropertyGroup>
|
|
|
|
<!--
|
|
Sprint: SPRINT_5100_0008_0001_competitor_parity
|
|
Task: PARITY-5100-001 - Create parity test project
|
|
Description: Competitor parity test harness for comparing StellaOps with Syft, Grype, Trivy
|
|
-->
|
|
|
|
<ItemGroup>
|
|
<!-- Test framework packages -->
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.12.0" />
|
|
<PackageReference Include="xunit" Version="2.9.2" />
|
|
<PackageReference Include="xunit.runner.visualstudio" Version="2.8.2">
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
<PrivateAssets>all</PrivateAssets>
|
|
</PackageReference>
|
|
<PackageReference Include="FluentAssertions" Version="6.12.0" />
|
|
<PackageReference Include="coverlet.collector" Version="6.0.4">
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
<PrivateAssets>all</PrivateAssets>
|
|
</PackageReference>
|
|
|
|
<!-- Container and process support -->
|
|
<PackageReference Include="Testcontainers" Version="4.4.0" />
|
|
<PackageReference Include="CliWrap" Version="3.7.0" />
|
|
|
|
<!-- JSON and SBOM processing -->
|
|
<PackageReference Include="System.Text.Json" Version="10.0.0" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<!-- TestKit for deterministic helpers -->
|
|
<ProjectReference Include="..\..\src\__Libraries\StellaOps.TestKit\StellaOps.TestKit.csproj" />
|
|
|
|
<!-- Scanner libraries for SBOM comparison -->
|
|
<ProjectReference Include="..\..\src\Scanner\__Libraries\StellaOps.Scanner.Core\StellaOps.Scanner.Core.csproj" />
|
|
<ProjectReference Include="..\..\src\Scanner\__Libraries\StellaOps.Scanner.Emit\StellaOps.Scanner.Emit.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<!-- Fixture images for parity testing -->
|
|
<Content Include="Fixtures\**\*">
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
</Content>
|
|
<Content Include="Results\**\*">
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
</Content>
|
|
</ItemGroup>
|
|
</Project>
|