diff --git a/TestApp.Net/TestApp.Net.csproj b/TestApp.Net/TestApp.Net.csproj
index a4ed997..1faad88 100644
--- a/TestApp.Net/TestApp.Net.csproj
+++ b/TestApp.Net/TestApp.Net.csproj
@@ -4,6 +4,7 @@
ConsoleApp1
10
net472;net6.0;netstandard2.0
+ Exe
diff --git a/ZWaveLib/ZWaveController.cs b/ZWaveLib/ZWaveController.cs
index f68b95e..fbb1e46 100644
--- a/ZWaveLib/ZWaveController.cs
+++ b/ZWaveLib/ZWaveController.cs
@@ -142,7 +142,10 @@ public ZWaveController()
serialPort.ConnectionStatusChanged += SerialPort_ConnectionStatusChanged;
// Setup Queue Manager Task
queuedMessages = new List();
- queueManager = new Thread(QueueManagerTask);
+ queueManager = new Thread(QueueManagerTask)
+ {
+ IsBackground = true
+ };
queueManager.Start();
}
diff --git a/ZWaveLib/ZWaveLib.csproj b/ZWaveLib/ZWaveLib.csproj
index c18e4ca..71baddb 100644
--- a/ZWaveLib/ZWaveLib.csproj
+++ b/ZWaveLib/ZWaveLib.csproj
@@ -27,6 +27,6 @@
net472;net6.0;netstandard2.0
-
+