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:
parent
2aa07efa10
commit
17ef19e788
2 changed files with 0 additions and 4 deletions
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue