PR Feedback

This commit is contained in:
Bryan Thornbury 2016-08-23 13:50:05 -07:00
parent 903764aa7d
commit b0554d3ff3
72 changed files with 769 additions and 680 deletions

View file

@ -18,5 +18,11 @@ namespace Microsoft.DotNet.Tools.Test.Utilities
args = $"new {args}";
return base.Execute(args);
}
public override CommandResult ExecuteWithCapturedOutput(string args = "")
{
args = $"new {args}";
return base.ExecuteWithCapturedOutput(args);
}
}
}