diff options
| author | Roy Ben Shabat <Roy.mail.net@gmail.com> | 2020-02-10 19:28:21 +0200 |
|---|---|---|
| committer | Roy Ben Shabat <Roy.mail.net@gmail.com> | 2020-02-10 19:28:21 +0200 |
| commit | 08686cebb5b2e517cd356bc33d79205d8fcc8d66 (patch) | |
| tree | 0f5e6189f92229b82c0a9521db2643237f546fd2 /Software/Visual_Studio/PPC | |
| parent | c7cc955c8d6d546bf65652c2de7482c56d91bf05 (diff) | |
| download | Tango-08686cebb5b2e517cd356bc33d79205d8fcc8d66.tar.gz Tango-08686cebb5b2e517cd356bc33d79205d8fcc8d66.zip | |
Fixed issue with cef installer.
Diffstat (limited to 'Software/Visual_Studio/PPC')
| -rw-r--r-- | Software/Visual_Studio/PPC/Packages/Tango.PPC.Packages.CefInstaller/CefInstaller.cs | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Software/Visual_Studio/PPC/Packages/Tango.PPC.Packages.CefInstaller/CefInstaller.cs b/Software/Visual_Studio/PPC/Packages/Tango.PPC.Packages.CefInstaller/CefInstaller.cs index 62a1d5717..b302bd1d4 100644 --- a/Software/Visual_Studio/PPC/Packages/Tango.PPC.Packages.CefInstaller/CefInstaller.cs +++ b/Software/Visual_Studio/PPC/Packages/Tango.PPC.Packages.CefInstaller/CefInstaller.cs @@ -36,7 +36,10 @@ namespace Tango.PPC.Packages.CefInstaller downloader.Download().GetAwaiter().GetResult(); } - ZipFile.ExtractToDirectory(zipFile, context.ApplicationManager.StartPath); + using (ZipArchive zip = ZipFile.OpenRead(zipFile)) + { + zip.ExtractToDirectory(context.ApplicationManager.StartPath, true); + } } catch (Exception ex) { |
