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/Directory.Packages.props b/Directory.Packages.props
index 6405007..68f53ab 100644
--- a/Directory.Packages.props
+++ b/Directory.Packages.props
@@ -25,7 +25,7 @@
-
+
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;