27 writes to RedirectStandardInput
aspire (2)
DotNet\DotNetCliExecutionFactory.cs (1)
48RedirectStandardInput = true,
Processes\DetachedProcessLauncher.Unix.cs (1)
27RedirectStandardInput = false,
Aspire.EndToEnd.Tests (2)
tests\Shared\TemplatesTesting\AspireProject.cs (1)
186RedirectStandardInput = true,
tests\Shared\TemplatesTesting\ToolCommand.cs (1)
216RedirectStandardInput = true,
Aspire.Hosting (1)
Dcp\Process\ProcessUtil.cs (1)
31RedirectStandardInput = processSpec.StandardInputContent != null,
Aspire.Hosting.Azure (1)
src\Aspire.Hosting\Dcp\Process\ProcessUtil.cs (1)
31RedirectStandardInput = processSpec.StandardInputContent != null,
Aspire.Hosting.DevTunnels (1)
DevTunnelCli.cs (1)
353RedirectStandardInput = false,
Aspire.Hosting.Docker (1)
src\Aspire.Hosting\Dcp\Process\ProcessUtil.cs (1)
31RedirectStandardInput = processSpec.StandardInputContent != null,
Aspire.Templates.Tests (2)
tests\Shared\TemplatesTesting\AspireProject.cs (1)
186RedirectStandardInput = true,
tests\Shared\TemplatesTesting\ToolCommand.cs (1)
216RedirectStandardInput = true,
csc (1)
src\roslyn\src\Compilers\Shared\BuildServerConnection.cs (1)
627RedirectStandardInput = true,
dotnet (2)
Commands\Clean\FileBasedAppArtifacts\CleanFileBasedAppArtifactsCommand.cs (1)
135RedirectStandardInput = true,
src\sdk\artifacts\.packages\microsoft.codeanalysis.buildclient\5.8.0-1.26268.104\contentFiles\cs\net11.0\BuildServerConnection.cs (1)
627RedirectStandardInput = true,
Infrastructure.Tests (2)
PowerShellScripts\PowerShellCommand.cs (1)
207RedirectStandardInput = true,
WorkflowScripts\NodeCommand.cs (1)
186RedirectStandardInput = true,
Microsoft.Build (1)
BackEnd\Components\Communications\NodeLauncher.cs (1)
127RedirectStandardInput = redirectStreams,
Microsoft.Build.Tasks.CodeAnalysis (1)
src\roslyn\src\Compilers\Shared\BuildServerConnection.cs (1)
627RedirectStandardInput = true,
Microsoft.Build.Utilities.Core (1)
ToolTask.cs (1)
678startInfo.RedirectStandardInput = true;
Microsoft.CodeAnalysis.Workspaces.MSBuild (1)
MSBuild\BuildHostProcessManager.cs (1)
335processStartInfo.RedirectStandardInput = true;
Microsoft.NET.Build.Containers (1)
LocalDaemons\DockerCli.cs (1)
107RedirectStandardInput = true,
Microsoft.NET.Sdk.Razor.Tasks (1)
src\sdk\src\RazorSdk\Tool\ServerProtocol\ServerConnection.cs (1)
393RedirectStandardInput = true,
NuGet.Build.Tasks (1)
StaticGraphRestoreTaskBase.cs (1)
128RedirectStandardInput = true,
NuGet.Protocol (2)
Plugins\PluginFactory.cs (2)
182RedirectStandardInput = true, 196RedirectStandardInput = true,
rzc (1)
ServerProtocol\ServerConnection.cs (1)
393RedirectStandardInput = true,
vbc (1)
src\roslyn\src\Compilers\Shared\BuildServerConnection.cs (1)
627RedirectStandardInput = true,
VBCSCompiler (1)
src\roslyn\src\Compilers\Shared\BuildServerConnection.cs (1)
627RedirectStandardInput = true,
10 references to RedirectStandardInput
Microsoft.Arcade.Common (1)
Command.cs (1)
79_process.StartInfo.RedirectStandardInput ||
System.Diagnostics.Process (9)
System\Diagnostics\Process.cs (2)
1208else if (startInfo.RedirectStandardInput) 1296if (startInfo.RedirectStandardInput)
System\Diagnostics\Process.Scenarios.cs (1)
22/// <para>One or more of <see cref="ProcessStartInfo.RedirectStandardInput"/>,
System\Diagnostics\ProcessStartInfo.cs (6)
130/// <see cref="RedirectStandardInput"/>, <see cref="RedirectStandardOutput"/>, <see cref="RedirectStandardError"/>, 148/// When set, the handle is passed directly to the child process and <see cref="RedirectStandardInput"/> must be <see langword="false"/>. 165/// This property cannot be used together with <see cref="RedirectStandardInput"/> 411if (StandardInputEncoding != null && !RedirectStandardInput) 439anyRedirection = RedirectStandardInput || RedirectStandardOutput || RedirectStandardError; 512if (StandardInputHandle is not null && RedirectStandardInput)