2 implementations of GetRelativePath
Microsoft.Arcade.Common (1)
FileSystem.cs (1)
55public virtual string GetRelativePath(string basePath, string targetPath) => throw new NotImplementedException("Not supported in default FileSystem implementation");
Microsoft.Arcade.Test.Common (1)
MockFileSystem.cs (1)
83public string GetRelativePath(string basePath, string targetPath)
1 reference to GetRelativePath
Microsoft.DotNet.Build.Tasks.Feed (1)
src\PushToBuildStorage.cs (1)
383string relativePath = _fileSystem.GetRelativePath(FutureArtifactPublishBasePath, artifactDestinationPath);