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: src/ElectronNET.CLI/Commands/BuildCommand.cs
+9-1
Original file line number
Diff line number
Diff line change
@@ -15,6 +15,7 @@ public class BuildCommand : ICommand
15
15
" for custom target, check .NET Core RID Catalog and Electron build target/"+Environment.NewLine+
16
16
" e.g. '/target win' or '/target custom \"win7-x86;win\"'"+Environment.NewLine+
17
17
"Optional: '/dotnet-configuration' with the desired .NET Core build config e.g. release or debug. Default = Release"+Environment.NewLine+
18
+
"Optional: '/no-restore' to disable nuget packages restore"+Environment.NewLine+
18
19
"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
20
"Optional: '/electron-params' specify any other valid parameter, which will be routed to the electron-packager."+Environment.NewLine+
20
21
"Optional: '/relative-path' to specify output a subdirectory for output."+Environment.NewLine+
@@ -45,6 +46,8 @@ public BuildCommand(string[] args)
0 commit comments