Skip to content

Commit

Permalink
SKA-256: Extended and improved documentation
Browse files Browse the repository at this point in the history
* Also: Fixed description in CLI help output

Co-authored-by: Masse, Jean-Thomas <[email protected]>
  • Loading branch information
DominikHerr and VJean-ThomasMasse committed Jun 20, 2024
1 parent b689fcb commit 71d96cd
Show file tree
Hide file tree
Showing 2 changed files with 241 additions and 25 deletions.
4 changes: 3 additions & 1 deletion FmuImporter/FmuImporter/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -38,12 +38,14 @@ private static async Task Main(string[] args)
"--fmu-importer-config-file",
"Set the path to the FMU Importer configuration file.");
fmuImporterConfigFileOption.AddAlias("-c");
fmuImporterConfigFileOption.ArgumentHelpName = "config-file";
rootCommand.AddOption(fmuImporterConfigFileOption);

var fmuImporterCommInterfaceFileOption = new Option<string?>(
"--fmu-importer-communication-interface-file",
"Set the path to the FMU Importer configuration file.");
"Set the path to the FMU Importer communication interface file.");
fmuImporterCommInterfaceFileOption.AddAlias("-i");
fmuImporterCommInterfaceFileOption.ArgumentHelpName = "communication-interface-file";
rootCommand.AddOption(fmuImporterCommInterfaceFileOption);

var participantNameOption = new Option<string>(
Expand Down
Loading

0 comments on commit 71d96cd

Please sign in to comment.