From 08686cebb5b2e517cd356bc33d79205d8fcc8d66 Mon Sep 17 00:00:00 2001 From: Roy Ben Shabat Date: Mon, 10 Feb 2020 19:28:21 +0200 Subject: Fixed issue with cef installer. --- .../PPC/Packages/Tango.PPC.Packages.CefInstaller/CefInstaller.cs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'Software/Visual_Studio/PPC') 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) { -- cgit v1.3.1