We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c29f356 commit 625906bCopy full SHA for 625906b
src/Verify/VirtualizedRunHelper.cs
@@ -255,8 +255,8 @@ static string TryRemoveDirFromEndOfPath(string path)
255
return path;
256
}
257
258
- private static string CombinePaths(string path1, string path2) =>
+ static string CombinePaths(string path1, string path2) =>
259
$"{path1.TrimEnd(separators)}{Env.DirectorySeparatorChar}{path2.Replace(OtherDirectorySeparatorChar, Env.DirectorySeparatorChar)}";
260
261
- private static char OtherDirectorySeparatorChar => Env.DirectorySeparatorChar == '/' ? '\\' : '/';
+ static char OtherDirectorySeparatorChar => Env.DirectorySeparatorChar == '/' ? '\\' : '/';
262
0 commit comments