18 references to AbsolutePath
Microsoft.Build (3)
BackEnd\Components\RequestBuilder\RequestBuilder.cs (2)
1118
_requestEntry.TaskEnvironment.ProjectDirectory = new
AbsolutePath
(_requestEntry.ProjectRootDirectory, ignoreRootedCheck: true);
1461
_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.Engine.UnitTests (4)
BackEnd\TaskEnvironment_Tests.cs (4)
188
taskEnvironment.ProjectDirectory = new
AbsolutePath
(testDirectory, ignoreRootedCheck: true);
194
taskEnvironment.ProjectDirectory = new
AbsolutePath
(alternateDirectory, ignoreRootedCheck: true);
229
taskEnvironment.ProjectDirectory = new
AbsolutePath
(baseDirectory, ignoreRootedCheck: true);
274
taskEnvironment.ProjectDirectory = new
AbsolutePath
(testDirectory, ignoreRootedCheck: true);
Microsoft.Build.Framework (3)
MultiProcessTaskEnvironmentDriver.cs (1)
34
get => new
AbsolutePath
(NativeMethods.GetCurrentDirectory(), ignoreRootedCheck: true);
MultiThreadedTaskEnvironmentDriver.cs (2)
35
ProjectDirectory = new
AbsolutePath
(currentDirectoryFullPath, ignoreRootedCheck: true);
52
ProjectDirectory = new
AbsolutePath
(currentDirectoryFullPath, ignoreRootedCheck: true);
Microsoft.Build.Framework.UnitTests (7)
AbsolutePath_Tests.cs (7)
18
return new
AbsolutePath
(baseDirectory, ignoreRootedCheck: false);
32
Should.Throw<ArgumentException>(() => new
AbsolutePath
(path, ignoreRootedCheck: false),
158
var lowerPath = new
AbsolutePath
("C:\\foo\\bar", ignoreRootedCheck: true);
159
var upperPath = new
AbsolutePath
("C:\\FOO\\BAR", ignoreRootedCheck: true);
184
Should.Throw<ArgumentException>(() => new
AbsolutePath
(path, ignoreRootedCheck: ignoreRootedCheck));
188
var absolutePath = new
AbsolutePath
(path, ignoreRootedCheck: ignoreRootedCheck);
275
var absolutePath = new
AbsolutePath
(inputPath, ignoreRootedCheck: true);
Microsoft.Build.Tasks.UnitTests (1)
FileStateTests.cs (1)
23
private static AbsolutePath TestPath(string path) => new
AbsolutePath
(path, ignoreRootedCheck: true);