We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 94257eb commit c45e19cCopy full SHA for c45e19c
1 file changed
src/ProjGraph.Lib.Core/Parsers/SlnParser.cs
@@ -24,7 +24,8 @@ public IEnumerable<string> GetProjectPaths(string path)
24
return [];
25
}
26
27
- var slnFile = SolutionFile.Parse(path);
+ var fullPath = fileSystem.GetFullPath(path);
28
+ var slnFile = SolutionFile.Parse(fullPath);
29
30
return slnFile.ProjectsInOrder
31
.Where(p => p.ProjectType == SolutionProjectType.KnownToBeMSBuildFormat)
0 commit comments