6 references to FileUtilities
Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost (6)
Build\ProjectBuildManager.cs (1)
97
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)
287
var absolutePath =
FileUtilities
.ResolveRelativePath(path, _projectDirectory) ?? path;
288
return
FileUtilities
.TryNormalizeAbsolutePath(absolutePath) ?? absolutePath;
335
var normalizedPath =
FileUtilities
.TryNormalizeAbsolutePath(filePath);