Ejemplo n.º 1
0
 private static void ExtractPackage(string targetPath, FileStream stream)
 {
     using (var archive = new ZipArchive(stream, ZipArchiveMode.Read))
     {
         var packOperations = new BundleOperations();
         packOperations.ExtractNupkg(archive, targetPath);
     }
 }