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