diff --git a/ElectronNET.CLI/Commands/BuildCommand.cs b/ElectronNET.CLI/Commands/BuildCommand.cs index 93d3499..ae09b1e 100644 --- a/ElectronNET.CLI/Commands/BuildCommand.cs +++ b/ElectronNET.CLI/Commands/BuildCommand.cs @@ -212,7 +212,7 @@ namespace ElectronNET.CLI.Commands var dotNetPublishFlags = new Dictionary { {"/p:PublishReadyToRun", parser.TryGet(_paramPublishReadyToRun, out var rtr) ? rtr[0] : "true"}, - {"/p:PublishSingleFile", parser.TryGet(_paramPublishSingleFile, out var psf) ? psf[0] : "true"}, + {"/p:PublishSingleFile", parser.TryGet(_paramPublishSingleFile, out var psf) ? psf[0] : "false"}, }; if (parser.Arguments.ContainsKey(_paramVersion)) @@ -253,4 +253,4 @@ namespace ElectronNET.CLI.Commands return dotNetPublishFlags; } } -} \ No newline at end of file +}