8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 429f584 commit 412e287Copy full SHA for 412e287
src/Cli/dotnet/Extensions/OptionForwardingExtensions.cs
@@ -36,6 +36,10 @@ public static ForwardedOption<string> ForwardAsOutputPath(this ForwardedOption<s
36
return [];
37
}
38
string argVal = CommandDirectoryContext.GetFullPath(o);
39
+ if (!Path.EndsInDirectorySeparator(argVal))
40
+ {
41
+ argVal += Path.DirectorySeparatorChar;
42
+ }
43
if (surroundWithDoubleQuotes)
44
{
45
// Not sure if this is necessary, but this is what "dotnet test" previously did and so we are
0 commit comments