win32ShortcutName -> applicationName

This commit is contained in:
Joao Moreno 2016-02-12 15:18:13 +01:00
parent 82d60a43da
commit d1bccebbd1
2 changed files with 2 additions and 2 deletions

View file

@ -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);
}

View file

@ -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"