Example #1
0
        private string generatePackageDownloadLocation(string localPath, RemotePackage package)
        {
            string packageFileName = package.ObjectKey.Substring("package/".Length);

            return($"{localPath}/tmp/{packageFileName}");
        }
Example #2
0
 public LocalPackage(RemotePackage remote, InstalledPackage local)
 {
     Remote = remote;
     Local  = local;
 }