Skip to content

Commit

Permalink
Do not "normalize" the path, only call Path.GetFullPath
Browse files Browse the repository at this point in the history
  • Loading branch information
jeffkl committed Dec 10, 2020
1 parent b018707 commit 74b8fc6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Build/Construction/Solution/ProjectInSolution.cs
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ public string AbsolutePath
return RelativePath;
}

return FileUtilities.NormalizePath(Path.Combine(ParentSolution.SolutionFileDirectory, RelativePath));
return Path.GetFullPath(Path.Combine(ParentSolution.SolutionFileDirectory, RelativePath));
}
}

Expand Down

0 comments on commit 74b8fc6

Please sign in to comment.