41 writes to RedirectStandardInput
aspire (5)
Npm\NpmRunner.cs (1)
214RedirectStandardInput = true,
Processes\IsolatedProcess.cs (1)
377RedirectStandardInput = true,
Processes\IsolatedProcess.Unix.cs (1)
27RedirectStandardInput = false,
Projects\DotNetBasedAppHostServerProject.cs (1)
667startInfo.RedirectStandardInput = true;
Projects\PrebuiltAppHostServer.cs (1)
1521startInfo.RedirectStandardInput = true;
Aspire.Acquisition.Tests (1)
tests\Shared\TemplatesTesting\ToolCommand.cs (1)
216RedirectStandardInput = true,
Aspire.Cli.Tests (5)
Agents\TelemetryHookScriptTests.cs (1)
535RedirectStandardInput = true,
Commands\AppHostLauncherTests.cs (2)
626RedirectStandardInput = true, 636RedirectStandardInput = true,
DotNet\ProcessExecutionTests.cs (2)
389RedirectStandardInput = true, 401RedirectStandardInput = true,
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)
49RedirectStandardInput = processSpec.StandardInputContent != null,
Aspire.Hosting.Azure (1)
src\Aspire.Hosting\Dcp\Process\ProcessUtil.cs (1)
49RedirectStandardInput = processSpec.StandardInputContent != null,
Aspire.Hosting.DevTunnels (1)
DevTunnelCli.cs (1)
356RedirectStandardInput = false,
Aspire.Hosting.Docker (1)
src\Aspire.Hosting\Dcp\Process\ProcessUtil.cs (1)
49RedirectStandardInput = processSpec.StandardInputContent != null,
Aspire.Hosting.Kubernetes (1)
src\Aspire.Hosting\Dcp\Process\ProcessUtil.cs (1)
49RedirectStandardInput = processSpec.StandardInputContent != null,
Aspire.Hosting.Radius (1)
Publishing\SealedSecretApplyStep.cs (1)
893RedirectStandardInput = standardInput is not 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)
659RedirectStandardInput = true,
Infrastructure.Tests (3)
PowerShellScripts\PowerShellCommand.cs (1)
208RedirectStandardInput = true,
WorkflowScripts\ExtensionReleaseWorkflowTests.cs (1)
733process.StartInfo.RedirectStandardInput = true;
WorkflowScripts\NodeCommand.cs (1)
187RedirectStandardInput = 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)
659RedirectStandardInput = true,
Microsoft.Build.Utilities.Core (1)
ToolTask.cs (1)
674startInfo.RedirectStandardInput = true;
Microsoft.CodeAnalysis.BuildClient.Package (1)
src\roslyn\src\Compilers\Shared\BuildServerConnection.cs (1)
659RedirectStandardInput = true,
Microsoft.CodeAnalysis.Workspaces.MSBuild (1)
MSBuild\BuildHostProcessManager.cs (1)
348processStartInfo.RedirectStandardInput = true;
Microsoft.NET.Build.Containers (1)
LocalDaemons\DockerCli.cs (1)
107RedirectStandardInput = true,
NuGet.Build.Tasks (1)
StaticGraphRestoreTaskBase.cs (1)
128RedirectStandardInput = true,
NuGet.Protocol (2)
Plugins\PluginFactory.cs (2)
189RedirectStandardInput = true, 203RedirectStandardInput = true,
vbc (1)
src\roslyn\src\Compilers\Shared\BuildServerConnection.cs (1)
659RedirectStandardInput = true,
VBCSCompiler (1)
src\roslyn\src\Compilers\Shared\BuildServerConnection.cs (1)
659RedirectStandardInput = true,
11 references to RedirectStandardInput
Aspire.Cli.Tests (1)
Npm\NpmRunnerTests.cs (1)
36Assert.True(startInfo.RedirectStandardInput);
Microsoft.Arcade.Common (1)
Command.cs (1)
79_process.StartInfo.RedirectStandardInput ||
System.Diagnostics.Process (9)
System\Diagnostics\Process.cs (2)
1356else if (startInfo.RedirectStandardInput) 1431if (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"/>, 173/// When set, the handle is passed directly to the child process and <see cref="RedirectStandardInput"/> must be <see langword="false"/>. 190/// This property cannot be used together with <see cref="RedirectStandardInput"/> 436if (StandardInputEncoding != null && !RedirectStandardInput) 464anyRedirection = RedirectStandardInput || RedirectStandardOutput || RedirectStandardError; 549if (StandardInputHandle is not null && RedirectStandardInput)