ExternalCommandConfiguration.cs edited online with Bitbucket [skip ci]

This commit is contained in:
Robin Krom 2014-08-27 18:57:40 +00:00
parent ced3bac401
commit f2da7e23df

View file

@ -33,6 +33,9 @@ namespace ExternalCommand {
[IniProperty("Commands", Description="The commands that are available.")] [IniProperty("Commands", Description="The commands that are available.")]
public List<string> commands; public List<string> commands;
[IniProperty("DoNotRedirect", Description="Skip redirect of standard output", DefaultValue="false")]
public bool DoNotRedirect;
[IniProperty("Commandline", Description="The commandline for the output command.")] [IniProperty("Commandline", Description="The commandline for the output command.")]
public Dictionary<string, string> commandlines; public Dictionary<string, string> commandlines;