Files
inventory-api/InventoryApi.csproj
demo 734f73afb5 Initial commit: inventory API with vulnerable legacy reports module
ASP.NET Core (.NET 8), intentionally outdated NuGet packages (Newtonsoft.Json
12.0.2, Microsoft.Data.SqlClient 2.0.0) for SCA demo. CWE-89, CWE-327,
CWE-798, CWE-22, CWE-330 in LegacyReports.cs.
2026-09-02 12:57:34 +00:00

17 lines
504 B
XML

<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<InvariantGlobalization>true</InvariantGlobalization>
</PropertyGroup>
<ItemGroup>
<!-- Intentionally outdated packages for the SCA demo -->
<PackageReference Include="Newtonsoft.Json" Version="12.0.2" />
<PackageReference Include="Microsoft.Data.SqlClient" Version="2.0.0" />
</ItemGroup>
</Project>