From a067f4dbb8d39613afe8f6f133748980e09dec12 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 12 Feb 2026 04:53:01 +0000 Subject: [PATCH 1/2] Bump Microsoft.VisualStudio.Threading from 17.10.48 to 17.14.15 --- updated-dependencies: - dependency-name: Microsoft.VisualStudio.Threading dependency-version: 17.14.15 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Directory.Packages.props | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Directory.Packages.props b/Directory.Packages.props index 6405007..68f53ab 100644 --- a/Directory.Packages.props +++ b/Directory.Packages.props @@ -25,7 +25,7 @@ - + From 4f5a2344af483cf7f1cdf01105a8316fd08807d5 Mon Sep 17 00:00:00 2001 From: Copilot <198982749+Copilot@users.noreply.github.com> Date: Thu, 12 Feb 2026 07:02:32 -0800 Subject: [PATCH 2/2] Suppress VSTHRD001 warning from Microsoft.VisualStudio.Threading 17.14.15 (#82) * Initial plan * Suppress VSTHRD001 warning and fix formatting issues Co-authored-by: jodavis <6740581+jodavis@users.noreply.github.com> --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> 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;