6 references to FileUtilities
Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost (6)
Build\ProjectBuildManager.cs (1)
108using var stream = FileUtilities.OpenAsyncRead(path);
MSBuild\ProjectFile\Extensions.cs (2)
41var absolutePath = FileUtilities.ResolveRelativePath(path, baseDirectory) ?? path; 42return FileUtilities.TryNormalizeAbsolutePath(absolutePath) ?? absolutePath;
MSBuild\ProjectFile\ProjectInstanceReader.cs (3)
233var absolutePath = FileUtilities.ResolveRelativePath(path, _projectDirectory) ?? path; 234return FileUtilities.TryNormalizeAbsolutePath(absolutePath) ?? absolutePath; 260var normalizedPath = FileUtilities.TryNormalizeAbsolutePath(filePath);