You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: ElectronNET.CLI/Commands/BuildCommand.cs
+16-22Lines changed: 16 additions & 22 deletions
Original file line number
Diff line number
Diff line change
@@ -16,7 +16,7 @@ public class BuildCommand : ICommand
16
16
publicstaticstringCOMMAND_ARGUMENTS="Needed: '/target' with params 'win/osx/linux' to build for a typical app or use 'custom' and specify .NET Core build config & electron build config"+Environment.NewLine+
17
17
" for custom target, check .NET Core RID Catalog and Electron build target/"+Environment.NewLine+
18
18
" e.g. '/target win' or '/target custom \"win7-x86;win32\"'"+Environment.NewLine+
19
-
"Optional: '/dotnet-configuration' with the desired .NET Core build config e.g. release or debug. Default = Release"+Environment.NewLine+
19
+
"Optional: '/dotnet-configuration' with the desired .NET Core build config e.g. release or debug. Default = Release"+Environment.NewLine+
20
20
"Optional: '/electron-arch' to specify the resulting electron processor architecture (e.g. ia86 for x86 builds). Be aware to use the '/target custom' param as well!"+Environment.NewLine+
21
21
"Optional: '/electron-params' specify any other valid parameter, which will be routed to the electron-packager."+Environment.NewLine+
22
22
"Full example for a 32bit debug build with electron prune: build /target custom win7-x86;win32 /dotnet-configuration Debug /electron-arch ia32 /electron-params \"--prune=true \"";
@@ -86,32 +86,26 @@ public Task<bool> ExecuteAsync()
0 commit comments