2 implementations of PathCombine
Microsoft.Arcade.Common (1)
FileSystem.cs (1)
28
public string
PathCombine
(string path1, string path2) => Path.Combine(path1, path2);
Microsoft.Arcade.Test.Common (1)
MockFileSystem.cs (1)
53
public string
PathCombine
(string path1, string path2) => path1 + "/" + path2;
3 references to PathCombine
Microsoft.DotNet.Helix.Sdk (3)
CreateXHarnessAppleWorkItems.cs (1)
123
string archiveCopyPath = fileSystem.
PathCombine
(appFolderDirectory, fileName);
ProvisioningProfileProvider.cs (1)
181
var targetFile = _fileSystem.
PathCombine
(_tmpDir!, GetProvisioningProfileFileName(platform));
XharnessTaskBase.cs (1)
136
outputZipPath = fileSystem.
PathCombine
(appFolderDirectory, fileName);