From b8a8b229e812fbe960be11a92711b1bd607ec5d4 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 24 Mar 2026 07:05:24 +0000 Subject: [PATCH 1/2] Initial plan From 1f1ab4d7664541fef92d92d08b2d569f9c81ab2b Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 24 Mar 2026 07:11:16 +0000 Subject: [PATCH 2/2] Add missing using directives to DiagnosticTest.cs Co-authored-by: cheenamalhotra <13396919+cheenamalhotra@users.noreply.github.com> Agent-Logs-Url: https://github.com/dotnet/SqlClient/sessions/244c9288-ae91-4b54-8cd6-0837024e8792 --- .../tests/ManualTests/TracingTests/DiagnosticTest.cs | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/src/Microsoft.Data.SqlClient/tests/ManualTests/TracingTests/DiagnosticTest.cs b/src/Microsoft.Data.SqlClient/tests/ManualTests/TracingTests/DiagnosticTest.cs index 067f125b53..68594d6dcd 100644 --- a/src/Microsoft.Data.SqlClient/tests/ManualTests/TracingTests/DiagnosticTest.cs +++ b/src/Microsoft.Data.SqlClient/tests/ManualTests/TracingTests/DiagnosticTest.cs @@ -2,12 +2,23 @@ // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. +using System; using System.Collections; using System.Data; using System.Diagnostics; using System.Reflection; using System.Runtime.CompilerServices; +using System.Threading.Tasks; using System.Xml; +using Microsoft.DotNet.RemoteExecutor; +using Microsoft.SqlServer.TDS; +using Microsoft.SqlServer.TDS.Done; +using Microsoft.SqlServer.TDS.EndPoint; +using Microsoft.SqlServer.TDS.Error; +using Microsoft.SqlServer.TDS.SQLBatch; +using Microsoft.SqlServer.TDS.Servers; +using Xunit; +using Xunit.Abstractions; namespace Microsoft.Data.SqlClient.ManualTesting.Tests {