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 a2a6190 commit 5b9d556Copy full SHA for 5b9d556
source/TestAdapter/Discover.cs
@@ -222,7 +222,7 @@ private static string[] GetAllCsFiles(FileInfo[] nfprojFiles)
222
223
foreach (System.Text.RegularExpressions.Match compileItem in compileItems)
224
{
225
- allCsFiles.Add($"{Path.GetFullPath(nfproj.DirectoryName)}\\{compileItem.Groups["source_file"].Value}");
+ allCsFiles.Add($"{Path.Combine(Path.GetFullPath(nfproj.DirectoryName), compileItem.Groups["source_file"].Value)}");
226
}
227
228
0 commit comments