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
| Plugins |object | A set of key/value pairs, where the value is the directory where the plugin is located and the key is the plugin name sans .dll extension.|
43
+
| ExecWhitelist | object | A set of key/value pairs, where the value is the file system path of an executable and the key is a command alias. |
[Option("command-plugin",Required=true,HelpText="The name of a command plugin file, e.g. InEngine.Core")]
11
-
publicstringCommandPlugin{get;set;}
10
+
[Option("plugin",Required=true,HelpText="The name of a command plugin file, e.g. InEngine.Core")]
11
+
publicstringPluginName{get;set;}
12
12
13
-
[Option("command-verb",HelpText="A plugin command verb, e.g. echo.")]
13
+
[Option("command",HelpText="A command name, e.g. echo.")]
14
14
publicstringCommandVerb{get;set;}
15
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.")]
16
+
[Option("class",HelpText="A command class, e.g. InEngine.Core.Commands.AlwaysSucceed. Takes precedence over --command if both are specified.")]
17
17
publicstringCommandClass{get;set;}
18
18
19
19
[OptionArray("args",HelpText="An optional list of arguments to publish with the command.")]
0 commit comments