11 references to GetParentPathNullable
dotnet (4)
ToolManifest\ToolManifestFinder.cs (4)
164while (currentSearchDirectory.HasValue && (currentSearchDirectory.Value.GetParentPathNullable() != null || AllowManifestInRoot())) 172currentSearchDirectory = currentSearchDirectory.Value.GetParentPathNullable(); 222while (currentSearchDirectory.HasValue && currentSearchDirectory.Value.GetParentPathNullable() != null) 239currentSearchDirectory = currentSearchDirectory.Value.GetParentPathNullable();
dotnet.Tests (6)
ToolManifestTests\ToolManifestFinderTests.cs (6)
97while (rootDirectory.GetParentPathNullable() != null) 99rootDirectory = (DirectoryPath)rootDirectory.GetParentPathNullable(); 135while (rootDirectory.GetParentPathNullable() != null) 137rootDirectory = (DirectoryPath)rootDirectory.GetParentPathNullable(); 158while (rootDirectory.GetParentPathNullable() != null) 160rootDirectory = (DirectoryPath)rootDirectory.GetParentPathNullable();
Microsoft.DotNet.Tools.Tests.ComponentMocks (1)
ToolPackageDownloaderMock.cs (1)
302currentSearchDirectory = currentSearchDirectory.Value.GetParentPathNullable();