Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
microsoft
GitHub Repository: microsoft/vscode
Path: blob/main/build/lib/embeddedType.ts
13379 views
1
/*---------------------------------------------------------------------------------------------
2
* Copyright (c) Microsoft Corporation. All rights reserved.
3
* Licensed under the MIT License. See License.txt in the project root for license information.
4
*--------------------------------------------------------------------------------------------*/
5
6
export type EmbeddedProductInfo = {
7
nameShort: string;
8
nameLong: string;
9
applicationName: string;
10
dataFolderName: string;
11
darwinBundleIdentifier: string;
12
darwinSiblingBundleIdentifier?: string;
13
urlProtocol: string;
14
win32AppUserModelId: string;
15
win32MutexName: string;
16
win32RegValueName: string;
17
win32NameVersion: string;
18
win32VersionedUpdate: boolean;
19
win32SiblingExeBasename?: string;
20
};
21
22