33 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)
636RedirectStandardInput = true,
dotnet (2)
Commands\Clean\FileBasedAppArtifacts\CleanFileBasedAppArtifactsCommand.cs (1)
135RedirectStandardInput = true,
src\sdk\artifacts\.packages\microsoft.codeanalysis.buildclient\5.9.0-1.26327.102\contentFiles\cs\net11.0\BuildServerConnection.cs (1)
636RedirectStandardInput = true,
Infrastructure.Tests (2)
PowerShellScripts\PowerShellCommand.cs (1)
207RedirectStandardInput = true,
WorkflowScripts\NodeCommand.cs (1)
186RedirectStandardInput = true,
Microsoft.AspNetCore.Server.IntegrationTesting (4)
Deployers\NginxDeployer.cs (2)
166RedirectStandardInput = true 208RedirectStandardInput = true
Deployers\RemoteWindowsDeployer\RemoteWindowsDeployer.cs (1)
244RedirectStandardInput = true
Deployers\SelfHostDeployer.cs (1)
130RedirectStandardInput = true,
Microsoft.AspNetCore.SpaServices.Extensions (1)
Npm\NodeScriptRunner.cs (1)
46RedirectStandardInput = 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)
636RedirectStandardInput = true,
Microsoft.Build.Utilities.Core (1)
ToolTask.cs (1)
678startInfo.RedirectStandardInput = true;
Microsoft.CodeAnalysis.Workspaces.MSBuild (1)
MSBuild\BuildHostProcessManager.cs (1)
338processStartInfo.RedirectStandardInput = true;
Microsoft.NET.Build.Containers (2)
LocalDaemons\DockerCli.cs (2)
101RedirectStandardInput = true, 773RedirectStandardInput = 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)
187RedirectStandardInput = true, 201RedirectStandardInput = true,
rzc (1)
ServerProtocol\ServerConnection.cs (1)
393RedirectStandardInput = true,
vbc (1)
src\roslyn\src\Compilers\Shared\BuildServerConnection.cs (1)
636RedirectStandardInput = true,
VBCSCompiler (1)
src\roslyn\src\Compilers\Shared\BuildServerConnection.cs (1)
636RedirectStandardInput = 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)
1233else if (startInfo.RedirectStandardInput) 1321if (startInfo.RedirectStandardInput)
System\Diagnostics\Process.Scenarios.cs (1)
23/// <para>One or more of <see cref="ProcessStartInfo.RedirectStandardInput"/>,
System\Diagnostics\ProcessStartInfo.cs (6)
130/// <see cref="RedirectStandardInput"/>, <see cref="RedirectStandardOutput"/>, <see cref="RedirectStandardError"/>, 169/// When set, the handle is passed directly to the child process and <see cref="RedirectStandardInput"/> must be <see langword="false"/>. 186/// This property cannot be used together with <see cref="RedirectStandardInput"/> 432if (StandardInputEncoding != null && !RedirectStandardInput) 460anyRedirection = RedirectStandardInput || RedirectStandardOutput || RedirectStandardError; 538if (StandardInputHandle is not null && RedirectStandardInput)