From 78ba295ecc88683cad9518fc15c683dc90886cb4 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 12 Feb 2026 04:54:49 +0000 Subject: [PATCH 1/2] Initial plan From b8a2ca0790caf3ca81d180474388ead7079f38c6 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 12 Feb 2026 05:03:25 +0000 Subject: [PATCH 2/2] Suppress VSTHRD001 warning and fix formatting issues Co-authored-by: jodavis <6740581+jodavis@users.noreply.github.com> --- Directory.Build.props | 2 +- .../Services/Testing/TestEndpointService.cs | 6 +++--- .../Host/AdaptiveRemoteHost.Builder.cs | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Directory.Build.props b/Directory.Build.props index ae2b117..6c1c1c2 100644 --- a/Directory.Build.props +++ b/Directory.Build.props @@ -32,6 +32,6 @@ - $(NoWarn);VSTHRD012 + $(NoWarn);VSTHRD001;VSTHRD012 diff --git a/src/AdaptiveRemote.App/Services/Testing/TestEndpointService.cs b/src/AdaptiveRemote.App/Services/Testing/TestEndpointService.cs index 3b1ba3d..40a4088 100644 --- a/src/AdaptiveRemote.App/Services/Testing/TestEndpointService.cs +++ b/src/AdaptiveRemote.App/Services/Testing/TestEndpointService.cs @@ -1,3 +1,6 @@ +using System.Net; +using System.Net.Sockets; +using System.Reflection; using AdaptiveRemote.Logging; using AdaptiveRemote.Services.Lifecycle; using Microsoft.Extensions.DependencyInjection; @@ -5,9 +8,6 @@ using Microsoft.Extensions.Logging; using Microsoft.Extensions.Options; using StreamJsonRpc; -using System.Net; -using System.Net.Sockets; -using System.Reflection; namespace AdaptiveRemote.Services.Testing; diff --git a/test/AdaptiveRemote.EndtoEndTests.TestServices/Host/AdaptiveRemoteHost.Builder.cs b/test/AdaptiveRemote.EndtoEndTests.TestServices/Host/AdaptiveRemoteHost.Builder.cs index e4f3bb9..5f90dab 100644 --- a/test/AdaptiveRemote.EndtoEndTests.TestServices/Host/AdaptiveRemoteHost.Builder.cs +++ b/test/AdaptiveRemote.EndtoEndTests.TestServices/Host/AdaptiveRemoteHost.Builder.cs @@ -1,10 +1,10 @@ using System.Diagnostics; using System.Net.Sockets; using System.Text; +using AdaptiveRemote.EndtoEndTests.Logging; using AdaptiveRemote.Services.Testing; using Microsoft.Extensions.Logging; using StreamJsonRpc; -using AdaptiveRemote.EndtoEndTests.Logging; namespace AdaptiveRemote.EndtoEndTests.Host;