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:
parent
c6f060d9e9
commit
9c87983fdf
1 changed files with 1 additions and 2 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue