Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .github/workflows/nuget-projector-link.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,11 @@ jobs:
- name: Checkout
uses: actions/checkout@v4

- name: Test new code
run: |
cat ThreeByte.LinkLib/ThreeByte.LinkLib.ProjectorLink/Projector.cs | grep "string Test"
cat ThreeByte.LinkLib/ThreeByte.LinkLib.TcpLink/AsyncTcpLink.cs | grep "string Test"

- name: Setup .NET Core
uses: actions/setup-dotnet@v4
with:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ namespace ThreeByte.LinkLib.ProjectorLink
{
public class Projector : IDisposable
{
public string Test => "Ukraine";

public event EventHandler<Exception>? ErrorOccurred;
public string Address => $"{_hostName}/{_port}";

Expand Down
2 changes: 2 additions & 0 deletions ThreeByte.LinkLib/ThreeByte.LinkLib.TcpLink/AsyncTcpLink.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ namespace ThreeByte.LinkLib.TcpLink
{
public class AsyncTcpLink : IDisposable
{
public string Test => "Ukraine";

private const int BufferSize = 8092;
private const int MaxDataSize = 100;
private readonly ILogger _logger;
Expand Down
Loading