1 implementation of ICommand
Microsoft.Arcade.Common (1)
Command.cs (1)
12
public class Command :
ICommand
31 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)
130
public
ICommand
ForwardStatus(TextWriter to = null)
144
public
ICommand
CaptureStdOut()
152
public
ICommand
CaptureStdErr()
160
public
ICommand
ForwardStdOut(TextWriter to = null)
175
public
ICommand
ForwardStdErr(TextWriter to = null)
190
public
ICommand
OnOutputLine(Action<string> handler)
202
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);
Microsoft.DotNet.Helix.Sdk (1)
InstallDotNetTool.cs (1)
162
ICommand
command = commandFactory.Create(executable, args);
Microsoft.DotNet.Helix.Sdk.Tests (3)
InstallDotNetToolTests.cs (3)
30
private readonly Mock<
ICommand
> _commandMock;
49
_commandMock = new Mock<
ICommand
>();
222
var hangingCommand = new Mock<
ICommand
>();
Microsoft.DotNet.VersionTools (1)
Util\GitCommand.cs (1)
14
internal static
ICommand
Create(params string[] args) => s_commandFactory.Create("git", args);