Example #1
0
 public static List <string> GetPaths(Zip zip)
 {
     return(GetPaths(zip, true));
 }
Example #2
0
        /// <summary>Creates a .nupkg file from this UnpackedPackage and saves it to the exact filename that is passed in</summary>
        public virtual Nupkg CreateNupkgFile(string filename)
        {
            var zip = Zip.Archive(Path, filename);

            return(new Nupkg(zip.Path));
        }