1 | import { TargetSpecificOptions } from "../core";
|
2 | import { CommonWindowsInstallerConfiguration } from "./CommonWindowsInstallerConfiguration";
|
3 | export interface MsiOptions extends CommonWindowsInstallerConfiguration, TargetSpecificOptions {
|
4 | /**
|
5 | * One-click installation.
|
6 | * @default true
|
7 | */
|
8 | readonly oneClick?: boolean;
|
9 | /**
|
10 | * The [upgrade code](https://msdn.microsoft.com/en-us/library/windows/desktop/aa372375(v=vs.85).aspx). Optional, by default generated using app id.
|
11 | */
|
12 | readonly upgradeCode?: string | null;
|
13 | /**
|
14 | * If `warningsAsErrors` is `true` (default): treat warnings as errors. If `warningsAsErrors` is `false`: allow warnings.
|
15 | * @default true
|
16 | */
|
17 | readonly warningsAsErrors?: boolean;
|
18 | }
|