Ejemplo n.º 1
0
            /// <summary>
            /// Unzips content. Requires .NET 4.5.
            /// </summary>
            public void UnzipContent()
            {
                IEnumerable <string> resourceNames = this.assembly.GetManifestResourceNames();

                string contentZipPath    = this.GetContentZipPath(resourceNames);
                string contentOutputPath = this.GetContentExtractionPath();

                Zipper.DecompressToDirectory(contentZipPath, contentOutputPath);
            }