From f2139b95c4e0c238fb62fefd38ed17ff028eb064 Mon Sep 17 00:00:00 2001 From: Gregor Biswanger Date: Thu, 5 Oct 2017 22:08:36 +0200 Subject: [PATCH] remove build optimization --- ElectronNET.CLI/Commands/BuildCommand.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ElectronNET.CLI/Commands/BuildCommand.cs b/ElectronNET.CLI/Commands/BuildCommand.cs index 5f2933b..1feff18 100644 --- a/ElectronNET.CLI/Commands/BuildCommand.cs +++ b/ElectronNET.CLI/Commands/BuildCommand.cs @@ -39,7 +39,8 @@ namespace ElectronNET.CLI.Commands Console.WriteLine("Build Electron Desktop Application..."); string buildPath = Path.Combine(Directory.GetCurrentDirectory(), "bin", "desktop"); - ProcessHelper.CmdExecute($"electron-packager . --platform=win32 --arch=x64 --electronVersion=1.7.8 --out=\"{buildPath}\" --overwrite --asar", tempPath); + // Need a solution for --asar support + ProcessHelper.CmdExecute($"electron-packager . --platform=win32 --arch=x64 --electronVersion=1.7.8 --out=\"{buildPath}\" --overwrite", tempPath); return true; });