File tree Expand file tree Collapse file tree
ThreeByte.LinkLib.ProjectorLink
ThreeByte.LinkLib.TcpLink Expand file tree Collapse file tree Original file line number Diff line number Diff line change 3939 - name : Checkout
4040 uses : actions/checkout@v4
4141
42+ - name : Test new code
43+ run : |
44+ cat ThreeByte.LinkLib/ThreeByte.LinkLib.ProjectorLink/Projector.cs | grep "string Test"
45+ cat ThreeByte.LinkLib/ThreeByte.LinkLib.TcpLink/AsyncTcpLink.cs | grep "string Test"
46+
4247 - name : Setup .NET Core
4348 uses : actions/setup-dotnet@v4
4449 with :
Original file line number Diff line number Diff line change @@ -10,6 +10,8 @@ namespace ThreeByte.LinkLib.ProjectorLink
1010{
1111 public class Projector : IDisposable
1212 {
13+ public string Test => "Ukraine" ;
14+
1315 public event EventHandler < Exception > ? ErrorOccurred ;
1416 public string Address => $ "{ _hostName } /{ _port } ";
1517
Original file line number Diff line number Diff line change @@ -9,6 +9,8 @@ namespace ThreeByte.LinkLib.TcpLink
99{
1010 public class AsyncTcpLink : IDisposable
1111 {
12+ public string Test => "Ukraine" ;
13+
1214 private const int BufferSize = 8092 ;
1315 private const int MaxDataSize = 100 ;
1416 private readonly ILogger _logger ;
You can’t perform that action at this time.
0 commit comments