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\ProjectInstanceReader.cs (3)
209
var absolutePath =
FileUtilities
.ResolveRelativePath(path, _projectDirectory) ?? path;
210
return
FileUtilities
.TryNormalizeAbsolutePath(absolutePath) ?? absolutePath;
236
var normalizedPath =
FileUtilities
.TryNormalizeAbsolutePath(filePath);