6 references to FileUtilities
Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost (6)
Build\ProjectBuildManager.cs (1)
97using var stream = FileUtilities.OpenAsyncRead(path);
MSBuild\ProjectFile\CommandLineArgumentReader.cs (2)
123var absolutePath = FileUtilities.ResolveRelativePath(path, baseDirectory) ?? path; 124return FileUtilities.TryNormalizeAbsolutePath(absolutePath) ?? absolutePath;
MSBuild\ProjectFile\ProjectInstanceReader.cs (3)
209var absolutePath = FileUtilities.ResolveRelativePath(path, _projectDirectory) ?? path; 210return FileUtilities.TryNormalizeAbsolutePath(absolutePath) ?? absolutePath; 236var normalizedPath = FileUtilities.TryNormalizeAbsolutePath(filePath);