Test projects are working.

This commit is contained in:
Matthias Heil
2026-04-01 12:46:48 +02:00
parent 83f8031862
commit cce0740f72
36 changed files with 472 additions and 431 deletions

7
TestServer/Program.cs Normal file
View File

@@ -0,0 +1,7 @@
using System;
using System.Threading;
var pipeServer = new NamedPipes.NamedPipesServer("testPipe",Console.WriteLine);
pipeServer.WaitForConnectionAsync().GetAwaiter().GetResult();
while (pipeServer.IsConnected) Thread.Sleep(100);

View File

@@ -0,0 +1,12 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net10.0</TargetFramework>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\NamedPipes\NamedPipes.csproj" />
</ItemGroup>
</Project>