When doing the argument escaping work, we changed the way we pass the depsfile to the host, this broke the dotnet test command. Moving the parameter back to its original and expected format.

This commit is contained in:
Livar Cunha 2016-01-28 18:12:28 -08:00
parent c6f060d9e9
commit 9c87983fdf

View file

@ -181,8 +181,7 @@ namespace Microsoft.DotNet.Cli.Utils
if (depsPath != null)
{
additionalArgs.Add("--depsfile");
additionalArgs.Add(depsPath);
additionalArgs.Add($"--depsfile:{depsPath}");
}
args = additionalArgs.Concat(args);