15815213711
2024-08-26 67b8b6731811983447e053d4396b3708c14dfe3c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import { Arch } from "builder-util";
import { MsiOptions } from "../";
import { Target } from "../core";
import { WinPackager } from "../winPackager";
export default class MsiTarget extends Target {
    private readonly packager;
    readonly outDir: string;
    private readonly vm;
    readonly options: MsiOptions;
    constructor(packager: WinPackager, outDir: string);
    /**
     * A product-specific string that can be used in an [MSI Identifier](https://docs.microsoft.com/en-us/windows/win32/msi/identifier).
     */
    private get productMsiIdPrefix();
    private get iconId();
    private get upgradeCode();
    build(appOutDir: string, arch: Arch): Promise<void>;
    private light;
    private getCommonWixArgs;
    private writeManifest;
    private computeFileDeclaration;
}