1 implementation of PathCombine
Microsoft.Arcade.Common (1)
FileSystem.cs (1)
31public string PathCombine(string path1, string path2) => Path.Combine(path1, path2);
6 references to PathCombine
Microsoft.DotNet.Build.Tasks.Feed (6)
src\PushToBuildStorage.cs (6)
412artifactDestinationPath = _fileSystem.PathCombine(AssetManifestsLocalStorageDir, filename); 423packageDestinationDirectory = _fileSystem.PathCombine(packageDestinationDirectory, artifactModel.RepoOrigin); 425artifactDestinationPath = _fileSystem.PathCombine(packageDestinationDirectory, filename); 431artifactDestinationPath = _fileSystem.PathCombine( 440artifactDestinationPath = _fileSystem.PathCombine( 483string pdbArtifactTarget = _fileSystem.PathCombine(PdbArtifactsLocalStorageDir, artifactModel.Id);