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
/// rawData - <see cref="UploadRawData"/> The data is available as a Buffer, in the rawData field.
11
+
/// file - <see cref="UploadFile"/> The object represents a file. The filePath, offset, length and modificationTime fields will be used to describe the file.
12
+
/// blob - <see cref="Blob"/> The object represents a Blob. The blobUUID field will be used to describe the Blob.
Copy file name to clipboardExpand all lines: ElectronNET.CLI/Commands/BuildCommand.cs
+60-21Lines changed: 60 additions & 21 deletions
Original file line number
Diff line number
Diff line change
@@ -21,6 +21,8 @@ public class BuildCommand : ICommand
21
21
"Optional: '/absolute-path to specify and absolute path for output."+Environment.NewLine+
22
22
"Optional: '/package-json' to specify a custom package.json file."+Environment.NewLine+
23
23
"Optional: '/install-modules' to force node module install. Implied by '/package-json'"+Environment.NewLine+
24
+
"Optional: '/Version' to specify the version that should be applied to both the `dotnet publish` and `electron-builder` commands. Implied by '/Version'"+Environment.NewLine+
25
+
"Optional: '/p:[property]' or '/property:[property]' to pass in dotnet publish properties. Example: '/property:Version=1.0.0' to override the FileVersion"+Environment.NewLine+
24
26
"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