From d1bccebbd1c0b20ea48c887db3d75762b67cbaaa Mon Sep 17 00:00:00 2001 From: Joao Moreno Date: Fri, 12 Feb 2016 15:18:13 +0100 Subject: [PATCH] win32ShortcutName -> applicationName --- build/gulpfile.vscode.js | 2 +- product.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/build/gulpfile.vscode.js b/build/gulpfile.vscode.js index b6b01d18ef2..51475120fb3 100644 --- a/build/gulpfile.vscode.js +++ b/build/gulpfile.vscode.js @@ -252,7 +252,7 @@ function packageTask(platform, arch, opts) { result = es.merge(result, gulp.src('resources/win32/bin/**', { base: 'resources/win32' })) .pipe(shortcutFilter) - .pipe(rename(function (f) { f.basename = product.win32ShortcutName; })) + .pipe(rename(function (f) { f.basename = product.applicationName; })) .pipe(shortcutFilter.restore); } diff --git a/product.json b/product.json index 36f1474e9e1..5a7cf9cf28a 100644 --- a/product.json +++ b/product.json @@ -1,9 +1,9 @@ { "nameShort": "Code - OSS", "nameLong": "Code - OSS", + "applicationName": "code-oss", "dataFolderName": ".vscode-oss", "win32MutexName": "vscodeoss", - "win32ShortcutName": "code-oss", "licenseUrl": "https://github.com/Microsoft/vscode/blob/master/LICENSE.txt", "darwinBundleIdentifier": "com.visualstudio.code.oss", "welcomePage": "http://go.microsoft.com/fwlink/?LinkId=723048"