Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions ElectronNET.CLI/Commands/BuildCommand.cs
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ private Dictionary<string, string> GetDotNetPublishFlags(SimpleCommandLineParser
var dotNetPublishFlags = new Dictionary<string, string>
{
{"/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))
Expand Down Expand Up @@ -252,4 +252,4 @@ private Dictionary<string, string> GetDotNetPublishFlags(SimpleCommandLineParser
return dotNetPublishFlags;
}
}
}
}