mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-02 08:15:56 +01:00
* chore: enable sub app entrypoint on windows * chore: update window icons * chore: update gulp-electron * chore: bump inno_updater * chore: cleanup * fix: inno compilation for stable * chore: bump distro * chore: bump distro
19 lines
679 B
TypeScript
19 lines
679 B
TypeScript
/*---------------------------------------------------------------------------------------------
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the MIT License. See License.txt in the project root for license information.
|
|
*--------------------------------------------------------------------------------------------*/
|
|
|
|
export type EmbeddedProductInfo = {
|
|
nameShort: string;
|
|
nameLong: string;
|
|
applicationName: string;
|
|
dataFolderName: string;
|
|
darwinBundleIdentifier: string;
|
|
urlProtocol: string;
|
|
win32AppUserModelId: string;
|
|
win32MutexName: string;
|
|
win32RegValueName: string;
|
|
win32NameVersion: string;
|
|
win32VersionedUpdate: boolean;
|
|
};
|