Skip to content

Commit

Permalink
Switch to a previous working version of SuperSimpleTcp
Browse files Browse the repository at this point in the history
  • Loading branch information
tinohager committed Feb 19, 2022
1 parent c14984e commit b78bc52
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/Portalum.Zvt.TerminalSimulator/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -33,12 +33,12 @@ private static void Events_DataReceived(object? sender, DataReceivedEventArgs e)
{
Thread.Sleep(500);

//Send Acknowledge
Console.WriteLine("Send Acknowledge");
_tcpServer.Send(e.IpPort, _acknowledgePackage);

Thread.Sleep(1000);

//Send Completion
Console.WriteLine("Send Completion");
_tcpServer.Send(e.IpPort, _completionPackage);
}
}
Expand Down
4 changes: 2 additions & 2 deletions src/Portalum.Zvt/Portalum.Zvt.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,12 @@

<TargetFrameworks>netstandard2.0;netstandard2.1</TargetFrameworks>

<Version>2.9.0</Version>
<Version>2.9.1</Version>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="6.0.0" />
<PackageReference Include="SuperSimpleTcp" Version="2.6.0.3" />
<PackageReference Include="SuperSimpleTcp" Version="2.6.0.0" />
<PackageReference Include="System.IO.Ports" Version="6.0.0" />
<PackageReference Include="System.Text.Encoding.CodePages" Version="6.0.0" />
</ItemGroup>
Expand Down

0 comments on commit b78bc52

Please sign in to comment.