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
/** Internal name of the file. Usually, this string should be the original filename, without the extension. */
InternalFilename?: string
However, Windows docs for StringFileInfo documents InternalName, not InternalFilename
Since the Node wrapper passes object keys verbatim to --set-version-string, using InternalFilename writes a non-standard field into the binary's version info rather than the intended InternalName field.
The property should be renamed to InternalName in index.d.ts.
The
VersionStringOptionsinterface definesInternalFilenameas a property name:However, Windows docs for
StringFileInfodocumentsInternalName, notInternalFilenameSince the Node wrapper passes object keys verbatim to
--set-version-string, usingInternalFilenamewrites a non-standard field into the binary's version info rather than the intendedInternalNamefield.The property should be renamed to
InternalNameinindex.d.ts.