4 writes to FullPath
Microsoft.Build.Framework (3)
ItemSpecModifiers.cs (3)
420return cache.FullPath ??= ComputeFullPath(currentDirectory, itemSpec); 423return cache.RootDir ??= ComputeRootDir(cache.FullPath ??= ComputeFullPath(currentDirectory, itemSpec)); 435return cache.Directory ??= ComputeDirectory(cache.FullPath ??= ComputeFullPath(currentDirectory, itemSpec));
Microsoft.Build.Framework.UnitTests (1)
FileUtilities_Tests.cs (1)
442ItemSpecModifiers.Cache cache = new() { FullPath = fullPath };
1 reference to FullPath
Microsoft.Build.Framework.UnitTests (1)
FileUtilities_Tests.cs (1)
56Assert.Equal(itemSpec, cache.FullPath);