Skip to content

Commit 89ea42f

Browse files
antonsyndclaude
andcommitted
fix(lsp): disambiguate Path reference after pathlib module merge
Fully qualify System.IO.Path.GetFullPath to avoid ambiguity with Sharpy.Path class added in the pathlib module on dev. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 8fa101a commit 89ea42f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/Sharpy.Lsp/SharplyWorkspace.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -323,7 +323,7 @@ private void InvalidateDependents(string uri)
323323

324324
private static string FilePathToUri(string filePath)
325325
{
326-
var fullPath = Path.GetFullPath(filePath);
326+
var fullPath = System.IO.Path.GetFullPath(filePath);
327327
return new Uri(fullPath).ToString();
328328
}
329329

0 commit comments

Comments
 (0)