Removing ForwardStdOut and ForwardStdErr from the ConsoleTestRunner and from dotnet verbs that are not built-in. BuiltIn verbs were already not using it.

This commit is contained in:
Livar Cunha 2016-07-07 14:50:41 -07:00
parent 2aa07efa10
commit 17ef19e788
2 changed files with 0 additions and 4 deletions

View file

@ -157,8 +157,6 @@ namespace Microsoft.DotNet.Cli
else else
{ {
CommandResult result = Command.Create("dotnet-" + command, appArgs, FrameworkConstants.CommonFrameworks.NetStandardApp15) CommandResult result = Command.Create("dotnet-" + command, appArgs, FrameworkConstants.CommonFrameworks.NetStandardApp15)
.ForwardStdErr()
.ForwardStdOut()
.Execute(); .Execute();
exitCode = result.ExitCode; exitCode = result.ExitCode;
} }

View file

@ -24,8 +24,6 @@ namespace Microsoft.DotNet.Tools.Test
GetCommandArgs(projectContext, dotnetTestParams), GetCommandArgs(projectContext, dotnetTestParams),
projectContext.TargetFramework, projectContext.TargetFramework,
dotnetTestParams.Config) dotnetTestParams.Config)
.ForwardStdErr()
.ForwardStdOut()
.Execute() .Execute()
.ExitCode; .ExitCode;
} }