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)
35
get => new
AbsolutePath
(NativeMethods.GetCurrentDirectory(), ignoreRootedCheck: true);
MultiThreadedTaskEnvironmentDriver.cs (2)
36
ProjectDirectory = new
AbsolutePath
(currentDirectoryFullPath, ignoreRootedCheck: true);
53
ProjectDirectory = 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)
50
SerializeCache(new
AbsolutePath
(stateFile, ignoreRootedCheck: true), log, serializeEmptyState);
104
return 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)
893
AbsolutePath filePath = !string.IsNullOrEmpty(fileName) ? TaskEnvironment.GetAbsolutePath(fileName) : new
AbsolutePath
(fileName, ignoreRootedCheck: true);