14 references to AbsolutePath
Microsoft.Build (3)
BackEnd\Components\RequestBuilder\RequestBuilder.cs (2)
1123_requestEntry.TaskEnvironment.ProjectDirectory = new AbsolutePath(_requestEntry.ProjectRootDirectory, ignoreRootedCheck: true); 1456_requestEntry.TaskEnvironment.ProjectDirectory = new AbsolutePath(_requestEntry.RequestConfiguration.SavedCurrentDirectory, ignoreRootedCheck: true);
BackEnd\Components\RequestBuilder\TaskBuilder.cs (1)
443_buildRequestEntry.TaskEnvironment.ProjectDirectory = new AbsolutePath(_buildRequestEntry.ProjectRootDirectory, ignoreRootedCheck: true);
Microsoft.Build.Framework (3)
MultiProcessTaskEnvironmentDriver.cs (1)
35get => new AbsolutePath(NativeMethods.GetCurrentDirectory(), ignoreRootedCheck: true);
MultiThreadedTaskEnvironmentDriver.cs (2)
36ProjectDirectory = new AbsolutePath(currentDirectoryFullPath, ignoreRootedCheck: true); 53ProjectDirectory = new AbsolutePath(currentDirectoryFullPath, ignoreRootedCheck: true);
Microsoft.Build.Tasks.Core (7)
AssemblyDependency\ResolveAssemblyReference.cs (2)
1163: new AbsolutePath(path, ignoreRootedCheck: true); 1199: new AbsolutePath(path, ignoreRootedCheck: true);
BootstrapperUtil\ResourceUpdater.cs (1)
165=> UpdateResources(new AbsolutePath(filename, ignoreRootedCheck: true), results);
GetReferenceAssemblyPaths.cs (1)
170: new AbsolutePath(RootPath, ignoreRootedCheck: true);
StateFileBase.cs (2)
50SerializeCache(new AbsolutePath(stateFile, ignoreRootedCheck: true), log, serializeEmptyState); 104return DeserializeCache<T>(new AbsolutePath(stateFile, ignoreRootedCheck: true), log);
TaskEnvironmentExtensions.cs (1)
53? new AbsolutePath(paths[i], ignoreRootedCheck: true)
Microsoft.Build.Utilities.Core (1)
ToolTask.cs (1)
893AbsolutePath filePath = !string.IsNullOrEmpty(fileName) ? TaskEnvironment.GetAbsolutePath(fileName) : new AbsolutePath(fileName, ignoreRootedCheck: true);