Skip to content

CommandLineHelp Class

A command line option (switch or command) description.

PropertyDescription
CommandsOptional list of command line commands.
DescriptionDescription for the command line option.
NotesOptional additional notes for the command line option.
SwitchesOptional list of command line switches.
UsageUsage for the command line option.
WixToolset.Extensibility.dll version 5.0.0+41e11442b2ca93e444b60213b5ae99dcbab787d8

Optional list of command line commands.

public System.Collections.Generic.IReadOnlyCollection<WixToolset.Extensibility.Data.CommandLineHelpCommand> Commands { get; set; }

Description for the command line option.

public string Description { get; set; }

Optional additional notes for the command line option.

public string Notes { get; set; }

Optional list of command line switches.

public System.Collections.Generic.IReadOnlyCollection<WixToolset.Extensibility.Data.CommandLineHelpSwitch> Switches { get; set; }

Usage for the command line option.

public string Usage { get; set; }