44 lines
1.6 KiB
XML
44 lines
1.6 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="FluentAssertions" />
|
|
<!-- Container and process support -->
|
|
<PackageReference Include="Testcontainers" />
|
|
<PackageReference Include="CliWrap" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<!-- TestKit for deterministic helpers -->
|
|
<ProjectReference Include="..\..\..\__Libraries\StellaOps.TestKit\StellaOps.TestKit.csproj" />
|
|
|
|
<!-- Scanner libraries for SBOM comparison -->
|
|
<ProjectReference Include="..\..\..\Scanner\__Libraries\StellaOps.Scanner.Core\StellaOps.Scanner.Core.csproj" />
|
|
<ProjectReference Include="..\..\..\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> |