Skip to content

Commit 6fd1a94

Browse files
amushinskiyalexandermushinskiyserhiiovs
authored
Test nuget build. (#31)
* Test nuget build. * Test nuget builds --------- Co-authored-by: alexander.mushinskiy <amushinskiy@gmail.com> Co-authored-by: Serhii Ovsianikov <serhii.ovsianikov@sigma.software>
1 parent 7b118a6 commit 6fd1a94

3 files changed

Lines changed: 9 additions & 0 deletions

File tree

.github/workflows/nuget-projector-link.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,11 @@ jobs:
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:

ThreeByte.LinkLib/ThreeByte.LinkLib.ProjectorLink/Projector.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff 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

ThreeByte.LinkLib/ThreeByte.LinkLib.TcpLink/AsyncTcpLink.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff 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;

0 commit comments

Comments
 (0)