Skip to content

Commit

Permalink
Use latest version of HighPerfComm
Browse files Browse the repository at this point in the history
  • Loading branch information
HakanL committed Jan 7, 2025
1 parent e73d81d commit 4e10421
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/Haukcode.sACN/Haukcode.sACN.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<TargetFrameworks>net8.0;net9.0</TargetFrameworks>
<AssemblyName>Haukcode.sACN</AssemblyName>
<PackageId>Haukcode.sACN</PackageId>
<GenerateAssemblyConfigurationAttribute>false</GenerateAssemblyConfigurationAttribute>
Expand Down Expand Up @@ -52,7 +52,7 @@
<ProjectReference Include="..\..\..\Haukcode.HighPerfComm\src\Haukcode.HighPerfComm.csproj" />
</ItemGroup>
<ItemGroup Condition="'$(UseProjectReference)' != 'true'">
<PackageReference Include="Haukcode.HighPerfComm" Version="1.0.15" />
<PackageReference Include="Haukcode.HighPerfComm" Version="1.0.17" />
</ItemGroup>

</Project>
2 changes: 1 addition & 1 deletion src/Haukcode.sACN/SACNClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ public SendData(IPEndPoint destination)
private readonly IPEndPoint localEndPoint;
private readonly Dictionary<ushort, byte> sequenceIds = [];
private readonly Dictionary<ushort, byte> sequenceIdsSync = [];
private readonly Lock lockObject = new();
private readonly object lockObject = new();
private readonly HashSet<ushort> dmxUniverses = [];
private readonly Dictionary<IPAddress, (IPEndPoint EndPoint, bool Multicast)> endPointCache = [];
private readonly Dictionary<ushort, IPEndPoint> universeMulticastEndpoints = [];
Expand Down

0 comments on commit 4e10421

Please sign in to comment.