string GetSolutionPackageRepositoryPath(PackageManagementOptions options)
        {
            string customPath = options.GetCustomPackagesDirectory ();
            if (!String.IsNullOrEmpty (customPath)) {
                return customPath;
            }

            return Path.Combine (solution.Directory, options.PackagesDirectory);
        }
        string GetSolutionPackageRepositoryPath(PackageManagementOptions options)
        {
            string customPath = options.GetCustomPackagesDirectory();

            if (!String.IsNullOrEmpty(customPath))
            {
                return(Path.GetFullPath(customPath));
            }

            return(Path.Combine(solution.BaseDirectory, options.PackagesDirectory));
        }