Merge pull request #3808 from livarcocc/no_forward_std_err_out

Removing ForwardStdOut and ForwardStdErr from a couple of extra places
This commit is contained in:
Livar 2016-07-08 13:50:12 -07:00 committed by GitHub
commit d4193cd5c1
2 changed files with 0 additions and 4 deletions

View file

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

View file

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