Skip to content

Commit

Permalink
v1.1.2
Browse files Browse the repository at this point in the history
- Updated *SerialPortLib*.
  • Loading branch information
genemars committed Oct 4, 2023
1 parent 5c609af commit 590b7ab
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
1 change: 1 addition & 0 deletions TestApp.Net/TestApp.Net.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
<RootNamespace>ConsoleApp1</RootNamespace>
<LangVersion>10</LangVersion>
<TargetFrameworks>net472;net6.0;netstandard2.0</TargetFrameworks>
<OutputType>Exe</OutputType>
</PropertyGroup>

<ItemGroup>
Expand Down
5 changes: 4 additions & 1 deletion ZWaveLib/ZWaveController.cs
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,10 @@ public ZWaveController()
serialPort.ConnectionStatusChanged += SerialPort_ConnectionStatusChanged;
// Setup Queue Manager Task
queuedMessages = new List<ZWaveMessage>();
queueManager = new Thread(QueueManagerTask);
queueManager = new Thread(QueueManagerTask)
{
IsBackground = true
};
queueManager.Start();
}

Expand Down
2 changes: 1 addition & 1 deletion ZWaveLib/ZWaveLib.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,6 @@
<TargetFrameworks>net472;net6.0;netstandard2.0</TargetFrameworks>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="SerialPortLib" Version="1.1.1" />
<PackageReference Include="SerialPortLib" Version="1.1.2" />
</ItemGroup>
</Project>

0 comments on commit 590b7ab

Please sign in to comment.