Files
vscode/build/lib/embeddedType.ts
Robo d597a37462 fix: agent app cleanup post update on windows (#307387)
* fix: agent app cleanup post update on windows

* chore: bump inno_updater
2026-04-02 15:56:48 +02:00

20 lines
714 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;
win32SiblingExeBasename?: string;
};