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
+31-1Lines changed: 31 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -17,6 +17,10 @@ public class BuildCommand : ICommand
17
17
"Optional: '/dotnet-configuration' with the desired .NET Core build config e.g. release or debug. Default = Release"+Environment.NewLine+
18
18
"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+
19
19
"Optional: '/electron-params' specify any other valid parameter, which will be routed to the electron-packager."+Environment.NewLine+
20
+
"Optional: '/relative-path' to specify output a subdirectory for output."+Environment.NewLine+
21
+
"Optional: '/absolute-path to specify and absolute path for output."+Environment.NewLine+
22
+
"Optional: '/package-json' to specify a custom package.json file."+Environment.NewLine+
23
+
"Optional: '/install-modules' to force node module install. Implied by '/package-json'"+Environment.NewLine+
20
24
"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 \"";
0 commit comments