Merge pull request #1107 from livarcocc/fix_dotnet_test

Fix the way we pass the deps file to the host
This commit is contained in:
Piotr Puszkiewicz 2016-01-28 21:36:38 -08:00
commit 1796586280

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);