6 references to FileUtilities
Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost (6)
Build\ProjectBuildManager.cs (1)
100using var stream = FileUtilities.OpenAsyncRead(path);
MSBuild\ProjectFile\Extensions.cs (2)
43var absolutePath = FileUtilities.ResolveRelativePath(path, baseDirectory) ?? path; 44return FileUtilities.TryNormalizeAbsolutePath(absolutePath) ?? absolutePath;
MSBuild\ProjectFile\ProjectInstanceReader.cs (3)
229var absolutePath = FileUtilities.ResolveRelativePath(path, _projectDirectory) ?? path; 230return FileUtilities.TryNormalizeAbsolutePath(absolutePath) ?? absolutePath; 256var normalizedPath = FileUtilities.TryNormalizeAbsolutePath(filePath);