From 9c87983fdf0c1903c72861141d305d2ca5b24476 Mon Sep 17 00:00:00 2001 From: Livar Cunha Date: Thu, 28 Jan 2016 18:12:28 -0800 Subject: [PATCH] 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. --- src/Microsoft.DotNet.Cli.Utils/CommandResolver.cs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/Microsoft.DotNet.Cli.Utils/CommandResolver.cs b/src/Microsoft.DotNet.Cli.Utils/CommandResolver.cs index 5c8ff6655..8473b90c9 100644 --- a/src/Microsoft.DotNet.Cli.Utils/CommandResolver.cs +++ b/src/Microsoft.DotNet.Cli.Utils/CommandResolver.cs @@ -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);