2 implementations of GetDirectoryName
Microsoft.Arcade.Common (1)
FileSystem.cs (1)
21
public string?
GetDirectoryName
(string? path) => Path.GetDirectoryName(path);
Microsoft.Arcade.Test.Common (1)
MockFileSystem.cs (1)
50
public string?
GetDirectoryName
(string? path) => Path.GetDirectoryName(path);
4 references to GetDirectoryName
Microsoft.DotNet.Build.Tasks.Feed (2)
src\PushToBuildStorage.cs (2)
455
_fileSystem.CreateDirectory(_fileSystem.
GetDirectoryName
(artifactDestinationPath));
484
_fileSystem.CreateDirectory(_fileSystem.
GetDirectoryName
(pdbArtifactTarget));
Microsoft.DotNet.Helix.Sdk (2)
CreateXHarnessAppleWorkItems.cs (1)
121
string appFolderDirectory = fileSystem.
GetDirectoryName
(appFolderPath);
XharnessTaskBase.cs (1)
134
string appFolderDirectory = fileSystem.
GetDirectoryName
(pathToZip);