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