From 731066bc7235f971724ea24b1d98bfc2e0a80620 Mon Sep 17 00:00:00 2001 From: "alexander.mushinskiy" Date: Wed, 9 Jul 2025 19:23:41 +0300 Subject: [PATCH 1/2] Remove test properties. --- ThreeByte.LinkLib/ThreeByte.LinkLib.ProjectorLink/Projector.cs | 2 -- ThreeByte.LinkLib/ThreeByte.LinkLib.TcpLink/AsyncTcpLink.cs | 2 -- 2 files changed, 4 deletions(-) diff --git a/ThreeByte.LinkLib/ThreeByte.LinkLib.ProjectorLink/Projector.cs b/ThreeByte.LinkLib/ThreeByte.LinkLib.ProjectorLink/Projector.cs index 54103c6..a15c368 100644 --- a/ThreeByte.LinkLib/ThreeByte.LinkLib.ProjectorLink/Projector.cs +++ b/ThreeByte.LinkLib/ThreeByte.LinkLib.ProjectorLink/Projector.cs @@ -10,8 +10,6 @@ namespace ThreeByte.LinkLib.ProjectorLink { public class Projector : IDisposable { - public string Test => "Ukraine"; - public event EventHandler? ErrorOccurred; public string Address => $"{_hostName}/{_port}"; diff --git a/ThreeByte.LinkLib/ThreeByte.LinkLib.TcpLink/AsyncTcpLink.cs b/ThreeByte.LinkLib/ThreeByte.LinkLib.TcpLink/AsyncTcpLink.cs index 32ade43..ea30efc 100644 --- a/ThreeByte.LinkLib/ThreeByte.LinkLib.TcpLink/AsyncTcpLink.cs +++ b/ThreeByte.LinkLib/ThreeByte.LinkLib.TcpLink/AsyncTcpLink.cs @@ -9,8 +9,6 @@ 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; From 812c4f4e54026ade902fd80bea34b8d6cc604aac Mon Sep 17 00:00:00 2001 From: Serhii Ovsianikov Date: Wed, 9 Jul 2025 19:24:42 +0300 Subject: [PATCH 2/2] Remove unused steps from pipeline --- .github/workflows/nuget-projector-link.yml | 5 ----- 1 file changed, 5 deletions(-) diff --git a/.github/workflows/nuget-projector-link.yml b/.github/workflows/nuget-projector-link.yml index a49906c..c42488a 100644 --- a/.github/workflows/nuget-projector-link.yml +++ b/.github/workflows/nuget-projector-link.yml @@ -39,11 +39,6 @@ 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: