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
* The custom function (or path to file or module id) to sign Windows executables
33
-
* @deprecated Please use win.signtoolSigning.sign
33
+
* @deprecated Please use win.signtoolOptions.sign
34
34
*/
35
35
readonlysign?: CustomWindowsSign|string|null
36
36
/**
37
37
* The path to the *.pfx certificate you want to sign with. Please use it only if you cannot use env variable `CSC_LINK` (`WIN_CSC_LINK`) for some reason.
38
38
* Please see [Code Signing](/code-signing).
39
-
* @deprecated Please use win.signtoolSigning.certificateFile
39
+
* @deprecated Please use win.signtoolOptions.certificateFile
40
40
*/
41
41
readonlycertificateFile?: string|null
42
42
/**
43
43
* The password to the certificate provided in `certificateFile`. Please use it only if you cannot use env variable `CSC_KEY_PASSWORD` (`WIN_CSC_KEY_PASSWORD`) for some reason.
44
44
* Please see [Code Signing](/code-signing).
45
-
* @deprecated Please use win.signtoolSigning.certificatePassword
45
+
* @deprecated Please use win.signtoolOptions.certificatePassword
46
46
*/
47
47
readonlycertificatePassword?: string|null
48
48
/**
49
49
* The name of the subject of the signing certificate, which is often labeled with the field name `issued to`. Required only for EV Code Signing and works only on Windows (or on macOS if [Parallels Desktop](https://www.parallels.com/products/desktop/) Windows 10 virtual machines exits).
50
-
* @deprecated Please use win.signtoolSigning.certificateSubjectName
50
+
* @deprecated Please use win.signtoolOptions.certificateSubjectName
51
51
*/
52
52
readonlycertificateSubjectName?: string|null
53
53
/**
54
54
* The SHA1 hash of the signing certificate. The SHA1 hash is commonly specified when multiple certificates satisfy the criteria specified by the remaining switches. Works only on Windows (or on macOS if [Parallels Desktop](https://www.parallels.com/products/desktop/) Windows 10 virtual machines exits).
55
-
* @deprecated Please use win.signtoolSigning.certificateSha1
55
+
* @deprecated Please use win.signtoolOptions.certificateSha1
56
56
*/
57
57
readonlycertificateSha1?: string|null
58
58
/**
59
59
* The path to an additional certificate file you want to add to the signature block.
60
-
* @deprecated Please use win.signtoolSigning.additionalCertificateFile
60
+
* @deprecated Please use win.signtoolOptions.additionalCertificateFile
61
61
*/
62
62
readonlyadditionalCertificateFile?: string|null
63
63
/**
64
64
* The URL of the RFC 3161 time stamp server.
65
65
* @default http://timestamp.digicert.com
66
-
* @deprecated Please use win.signtoolSigning.rfc3161TimeStampServer
66
+
* @deprecated Please use win.signtoolOptions.rfc3161TimeStampServer
67
67
*/
68
68
readonlyrfc3161TimeStampServer?: string|null
69
69
/**
70
70
* The URL of the time stamp server.
71
71
* @default http://timestamp.digicert.com
72
-
* @deprecated Please use win.signtoolSigning.timeStampServer
72
+
* @deprecated Please use win.signtoolOptions.timeStampServer
0 commit comments