1
0
Fork 0
mirror of https://gitlab.com/futo-org/fcast.git synced 2025-08-03 07:47:01 +00:00

Added write/read semaphores.

This commit is contained in:
Koen 2024-02-22 11:37:52 +01:00
parent 47ea3a3c42
commit ba8cd46e4c
4 changed files with 56 additions and 24 deletions

View file

@ -10,7 +10,7 @@
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net7.0</TargetFramework>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>

View file

@ -121,6 +121,8 @@ internal class Program
.Build();
CommandMatches matches = rootCommand.Parse(args);
Console.WriteLine(matches.ToString());
var host = matches.Value("host")!;
var connectionType = matches.Value("connection_type")!;