Implemented interface member:
method
PathCombine
Microsoft.Arcade.Common.IFileSystem.PathCombine(System.String, System.String, System.String)
17 references to PathCombine
Microsoft.DotNet.Build.Tasks.Feed.Tests (17)
PushToBuildStorageTests.cs (17)
211string shippingPackagesDir = mockFileSystem.PathCombine("C:", "artifacts", "shipping-packages"); 212string nonShippingPackagesDir = mockFileSystem.PathCombine("C:", "artifacts", "nonshipping-packages"); 213string assetsDir = mockFileSystem.PathCombine("C:", "artifacts", "blobs"); 214string manifestsDir = mockFileSystem.PathCombine("C:", "artifacts", "manifests"); 215string pdbsDir = mockFileSystem.PathCombine("C:", "artifacts", "pdbs"); 461string shippingPackagesDir = mockFileSystem.PathCombine("C:", "artifacts", "shipping-packages"); 462string nonShippingPackagesDir = mockFileSystem.PathCombine("C:", "artifacts", "nonshipping-packages"); 463string assetsDir = mockFileSystem.PathCombine("C:", "artifacts", "blobs"); 464string manifestsDir = mockFileSystem.PathCombine("C:", "artifacts", "manifests"); 465string pdbsDir = mockFileSystem.PathCombine("C:", "artifacts", "pdbs"); 578string shippingPackagesDir = mockFileSystem.PathCombine("C:", "artifacts", "shipping-packages"); 579string nonShippingPackagesDir = mockFileSystem.PathCombine("C:", "artifacts", "nonshipping-packages"); 580string assetsDir = mockFileSystem.PathCombine("C:", "artifacts", "blobs"); 581string manifestsDir = mockFileSystem.PathCombine("C:", "artifacts", "manifests"); 582string pdbsDir = mockFileSystem.PathCombine("C:", "artifacts", "pdbs"); 653string expectedNonShippingPackagePath = mockFileSystem.PathCombine(nonShippingPackagesDir, task.ManifestRepoOrigin, mockFileSystem.GetFileName(PACKAGE_A)); 654string expectedShippingPackagePath = mockFileSystem.PathCombine(shippingPackagesDir, task.ManifestRepoOrigin, mockFileSystem.GetFileName(PACKAGE_B));