fix dependcy versions: iOS building

This commit is contained in:
2024-04-16 17:17:22 -05:00
parent f85dc8effc
commit 54de266a6c
7 changed files with 23 additions and 22 deletions
@@ -1,9 +1,8 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Serilog;
using TcpSharp.Events;
using TcpSharp;
namespace SharpOSC
{
@@ -35,7 +34,7 @@ namespace SharpOSC
string _address;
TcpSharp.TcpSharpSocketClient tcpClient;
TcpSharpSocketClient tcpClient;
private List<byte> frameStream = new List<byte>();
@@ -50,7 +49,7 @@ namespace SharpOSC
try
{
tcpClient = new TcpSharp.TcpSharpSocketClient(Address, Port);
tcpClient = new TcpSharpSocketClient(Address, Port);
tcpClient.OnConnected += ClientConnected;
tcpClient.OnDataReceived += DataReceived;
tcpClient.OnDisconnected += ClientDisconneted;