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
Copy file name to clipboardExpand all lines: SimpleExec/Command.cs
+17-7Lines changed: 17 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -20,6 +20,7 @@ public static class Command
20
20
/// <param name="name">The name of the command. This can be a path to an executable file.</param>
21
21
/// <param name="args">The arguments to pass to the command.</param>
22
22
/// <param name="workingDirectory">The working directory in which to run the command.</param>
23
+
/// <param name="secrets">A list of secrets that are redacted by replacement with "***" when echoing the resulting command line and the working directory (if specified) to standard output (stdout).</param>
23
24
/// <param name="noEcho">Whether to echo the resulting command line and working directory (if specified) to standard output (stdout).</param>
24
25
/// <param name="echoPrefix">The prefix to use when echoing the command line and working directory (if specified) to standard output (stdout).</param>
25
26
/// <param name="configureEnvironment">An action which configures environment variables for the command.</param>
/// Runs a command without redirecting standard output (stdout) and standard error (stderr) and without writing to standard input (stdin).
@@ -72,6 +74,7 @@ public static void Run(
72
74
/// As with <see cref="System.Diagnostics.ProcessStartInfo.ArgumentList"/>, the strings don't need to be escaped.
73
75
/// </param>
74
76
/// <param name="workingDirectory">The working directory in which to run the command.</param>
77
+
/// <param name="secrets">A list of secrets that are redacted by replacement with "***" when echoing the resulting command line and the working directory (if specified) to standard output (stdout).</param>
75
78
/// <param name="noEcho">Whether to echo the resulting command name, arguments, and working directory (if specified) to standard output (stdout).</param>
76
79
/// <param name="echoPrefix">The prefix to use when echoing the command name, arguments, and working directory (if specified) to standard output (stdout).</param>
77
80
/// <param name="configureEnvironment">An action which configures environment variables for the command.</param>
/// <param name="name">The name of the command. This can be a path to an executable file.</param>
137
142
/// <param name="args">The arguments to pass to the command.</param>
138
143
/// <param name="workingDirectory">The working directory in which to run the command.</param>
144
+
/// <param name="secrets">A list of secrets that are redacted by replacement with "***" when echoing the resulting command line and the working directory (if specified) to standard output (stdout).</param>
139
145
/// <param name="noEcho">Whether to echo the resulting command line and working directory (if specified) to standard output (stdout).</param>
140
146
/// <param name="echoPrefix">The prefix to use when echoing the command line and working directory (if specified) to standard output (stdout).</param>
141
147
/// <param name="configureEnvironment">An action which configures environment variables for the command.</param>
/// Runs a command asynchronously without redirecting standard output (stdout) and standard error (stderr) and without writing to standard input (stdin).
@@ -189,6 +196,7 @@ public static Task RunAsync(
189
196
/// As with <see cref="System.Diagnostics.ProcessStartInfo.ArgumentList"/>, the strings don't need to be escaped.
190
197
/// </param>
191
198
/// <param name="workingDirectory">The working directory in which to run the command.</param>
199
+
/// <param name="secrets">A list of secrets that are redacted by replacement with "***" when echoing the resulting command line and the working directory (if specified) to standard output (stdout).</param>
192
200
/// <param name="noEcho">Whether to echo the resulting command name, arguments, and working directory (if specified) to standard output (stdout).</param>
193
201
/// <param name="echoPrefix">The prefix to use when echoing the command name, arguments, and working directory (if specified) to standard output (stdout).</param>
194
202
/// <param name="configureEnvironment">An action which configures environment variables for the command.</param>
0 commit comments