From ece3b5720377e97df0cd051cbe104fce5dd2185f Mon Sep 17 00:00:00 2001 From: Kevin Gosse Date: Tue, 17 Dec 2024 14:04:41 +0100 Subject: [PATCH] [IAST] Fix compilation of Samples.Security.AspNetCore2 (#6441) ## Summary of changes Compilation of Samples.Security.AspNetCore2 because of a bunch of `using` statement referencing nuget packages that are not added to this project. It looks like the `using` are not actually used, so hopefully just removing them should be enough. --- .../Samples.Security.AspNetCore5/Data/IastControllerHelper.cs | 2 -- 1 file changed, 2 deletions(-) diff --git a/tracer/test/test-applications/security/Samples.Security.AspNetCore5/Data/IastControllerHelper.cs b/tracer/test/test-applications/security/Samples.Security.AspNetCore5/Data/IastControllerHelper.cs index 5591bafd79bb..d6a4a8456498 100644 --- a/tracer/test/test-applications/security/Samples.Security.AspNetCore5/Data/IastControllerHelper.cs +++ b/tracer/test/test-applications/security/Samples.Security.AspNetCore5/Data/IastControllerHelper.cs @@ -2,8 +2,6 @@ using System.Data.SQLite; using System.Text; #if NETCOREAPP -using Npgsql; -using Oracle.ManagedDataAccess.Client; using Microsoft.Data.Sqlite; #endif