6 references to TryNormalizeAbsolutePath
Microsoft.CodeAnalysis.Workspaces (2)
FileUtilities.cs (1)
225string? normalizedPath = TryNormalizeAbsolutePath(resolvedPath);
RelativePathResolver.cs (1)
46return FileUtilities.TryNormalizeAbsolutePath(resolvedPath);
Microsoft.CodeAnalysis.Workspaces.MSBuild (4)
MSBuild\MSBuildProjectLoader.Worker.cs (1)
430fullPath = FileUtilities.TryNormalizeAbsolutePath(path);
MSBuild\ProjectFile\CommandLineArgumentReader.cs (1)
124return FileUtilities.TryNormalizeAbsolutePath(absolutePath) ?? absolutePath;
MSBuild\ProjectFile\ProjectFile.cs (2)
230return FileUtilities.TryNormalizeAbsolutePath(absolutePath) ?? absolutePath; 277var normalizedPath = FileUtilities.TryNormalizeAbsolutePath(filePath);