2b077fb789
Re-review at 7286d320. -009: 'four'->'six' driver-CLI count in Program.cs. -010: ReadCommand
--type help no longer lists Structure (rejected at runtime) + pinning test.
12 lines
470 B
C#
12 lines
470 B
C#
using CliFx;
|
|
|
|
return await new CliApplicationBuilder()
|
|
.AddCommandsFromThisAssembly()
|
|
.SetExecutableName("otopcua-abcip-cli")
|
|
.SetDescription(
|
|
"OtOpcUa AB CIP test-client — ad-hoc probe + Logix symbolic reads/writes + polled " +
|
|
"subscriptions against ControlLogix / CompactLogix / Micro800 / GuardLogix families " +
|
|
"via libplctag. Second of six driver CLIs; mirrors otopcua-modbus-cli's shape.")
|
|
.Build()
|
|
.RunAsync(args);
|