You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[Option("command-assembly",Required=true,HelpText="The name of a command plugin, e.g. InEngine.Core.dll")]
11
-
publicstringCommandAssembly{get;set;}
10
+
[Option("command-plugin",Required=true,HelpText="The name of a command plugin file, e.g. InEngine.Core.dll")]
11
+
publicstringCommandPlugin{get;set;}
12
12
13
-
[Option("command-class",Required=true,DefaultValue="The name of a command class, e.g. InEngine.Core.Commands.AlwaysSucceed")]
13
+
[Option("command-verb",HelpText="A plugin command verb, e.g. echo")]
14
+
publicstringCommandVerb{get;set;}
15
+
16
+
[Option("command-class",HelpText="A command class name, e.g. InEngine.Core.Commands.AlwaysSucceed. Takes precedence over --command-verb if both are specified.")]
14
17
publicstringCommandClass{get;set;}
15
18
16
-
[OptionArray("args",HelpText="The list of arguments for the published command.")]
19
+
[OptionArray("args",HelpText="An optional list of arguments to publish with the command.")]
17
20
publicstring[]Arguments{get;set;}
18
21
19
-
[Option("secondary",DefaultValue=false,HelpText="Publish to a secondary queue.")]
22
+
[Option("secondary",DefaultValue=false,HelpText="Publish the command to the secondary queue.")]
0 commit comments