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