29 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\Compilers\Shared\BuildServerConnection.cs (1)
627RedirectStandardInput = 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.SignalR.StackExchangeRedis.Tests (1)
Docker.cs (1)
207RedirectStandardInput = true
Microsoft.AspNetCore.SpaServices.Extensions (1)
Npm\NodeScriptRunner.cs (1)
46RedirectStandardInput = true,
Microsoft.Build.Tasks.CodeAnalysis (1)
src\Compilers\Shared\BuildServerConnection.cs (1)
627RedirectStandardInput = true,
Microsoft.Build.Tasks.CodeAnalysis.Sdk (1)
src\Compilers\Shared\BuildServerConnection.cs (1)
627RedirectStandardInput = true,
Microsoft.CodeAnalysis.LanguageServer (1)
DotnetCliHelper.cs (1)
79RedirectStandardInput = true,
Microsoft.CodeAnalysis.LanguageServer.UnitTests (1)
Utilities\AbstractLanguageServerClientTests.TestLspClient.cs (1)
128processStartInfo.RedirectStandardInput = true;
Microsoft.CodeAnalysis.Test.Utilities (1)
FX\ProcessUtilities.cs (1)
38RedirectStandardInput = stdInput != null || redirectStandardInput,
Microsoft.CodeAnalysis.Workspaces.MSBuild (1)
MSBuild\BuildHostProcessManager.cs (1)
335processStartInfo.RedirectStandardInput = true;
Microsoft.DotNet.ArcadeAzureIntegration (1)
AzureCliCredentialWithAzNoUpdateWrapper.cs (1)
79RedirectStandardInput = true,
Replay (1)
src\Compilers\Shared\BuildServerConnection.cs (1)
627RedirectStandardInput = true,
vbc (1)
src\Compilers\Shared\BuildServerConnection.cs (1)
627RedirectStandardInput = true,
VBCSCompiler (1)
src\Compilers\Shared\BuildServerConnection.cs (1)
627RedirectStandardInput = true,
8 references to RedirectStandardInput
Microsoft.Arcade.Common (1)
Command.cs (1)
79_process.StartInfo.RedirectStandardInput ||
System.Diagnostics.Process (7)
System\Diagnostics\Process.cs (2)
1207else if (startInfo.RedirectStandardInput) 1286if (startInfo.RedirectStandardInput)
System\Diagnostics\ProcessStartInfo.cs (5)
123/// When set, the handle is passed directly to the child process and <see cref="RedirectStandardInput"/> must be <see langword="false"/>. 140/// This property cannot be used together with <see cref="RedirectStandardInput"/> 316if (StandardInputEncoding != null && !RedirectStandardInput) 344anyRedirection = RedirectStandardInput || RedirectStandardOutput || RedirectStandardError; 353if (StandardInputHandle is not null && RedirectStandardInput)