-
-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Allow for NSIS windows installer to be wrapped in an MSI (#7407)
- Loading branch information
1 parent
ece7f88
commit a338730
Showing
20 changed files
with
758 additions
and
112 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
"app-builder-lib": patch | ||
--- | ||
|
||
feat: Allow for NSIS windows installer to be wrapped in an MSI |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
import { TargetSpecificOptions } from "../core" | ||
import { CommonWindowsInstallerConfiguration } from "./CommonWindowsInstallerConfiguration" | ||
|
||
export interface MsiWrappedOptions extends CommonWindowsInstallerConfiguration, TargetSpecificOptions { | ||
/** | ||
* Extra arguments to provide to the wrapped installer (ie: /S for silent install) | ||
*/ | ||
readonly wrappedInstallerArgs?: string | null | ||
|
||
/** | ||
* Determines if the wrapped installer should be executed with impersonation | ||
* @default false | ||
*/ | ||
readonly impersonate?: boolean | ||
|
||
/** | ||
* The [upgrade code](https://msdn.microsoft.com/en-us/library/windows/desktop/aa372375(v=vs.85).aspx). Optional, by default generated using app id. | ||
*/ | ||
readonly upgradeCode?: string | null | ||
|
||
/** | ||
* If `warningsAsErrors` is `true` (default): treat warnings as errors. If `warningsAsErrors` is `false`: allow warnings. | ||
* @default true | ||
*/ | ||
readonly warningsAsErrors?: boolean | ||
|
||
/** | ||
* Any additional arguments to be passed to the WiX installer compiler, such as `["-ext", "WixUtilExtension"]` | ||
*/ | ||
readonly additionalWixArgs?: Array<string> | null | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.