1 implementation of ICommand
Microsoft.Arcade.Common (1)
Command.cs (1)
12
public class Command :
ICommand
26 references to ICommand
Microsoft.Arcade.Common (26)
Command.cs (10)
49
public
ICommand
QuietBuildReporter()
113
public
ICommand
WorkingDirectory(string projectDirectory)
119
public
ICommand
EnvironmentVariable(string name, string value)
126
public
ICommand
ForwardStatus(TextWriter to = null)
140
public
ICommand
CaptureStdOut()
148
public
ICommand
CaptureStdErr()
156
public
ICommand
ForwardStdOut(TextWriter to = null)
171
public
ICommand
ForwardStdErr(TextWriter to = null)
186
public
ICommand
OnOutputLine(Action<string> handler)
198
public
ICommand
OnErrorLine(Action<string> handler)
CommandFactory.cs (3)
14
public
ICommand
Create(string executable, params string[] args)
19
public
ICommand
Create(string executable, IEnumerable<string> args)
24
public
ICommand
Create(string executable, string args)
ICommand.cs (10)
13
ICommand
CaptureStdErr();
14
ICommand
CaptureStdOut();
15
ICommand
EnvironmentVariable(string name, string value);
16
ICommand
ForwardStatus(TextWriter to = null);
17
ICommand
ForwardStdErr(TextWriter to = null);
18
ICommand
ForwardStdOut(TextWriter to = null);
19
ICommand
OnErrorLine(Action<string> handler);
20
ICommand
OnOutputLine(Action<string> handler);
21
ICommand
QuietBuildReporter();
22
ICommand
WorkingDirectory(string projectDirectory);
ICommandFactory.cs (3)
10
ICommand
Create(string executable, IEnumerable<string> args);
11
ICommand
Create(string executable, params string[] args);
12
ICommand
Create(string executable, string args);