This commit is contained in:
Joao Moreno 2015-11-18 18:30:02 +01:00
parent f1b948dfe3
commit 5fc7cc270e
3 changed files with 3 additions and 2 deletions

View File

@ -100,7 +100,7 @@ var config = {
darwinBundleDocumentTypes: product.darwinBundleDocumentTypes,
darwinCredits: darwinCreditsTemplate ? new Buffer(darwinCreditsTemplate({ commit: commit, date: new Date().toISOString() })) : void 0,
winIcon: product.icons.application.ico,
win32ExeBasename: product.nameShort
win32ExeBasename: product.win32ExeBasename
};
gulp.task('electron', function () {

View File

@ -1,6 +1,7 @@
{
"nameShort": "Code [OSS Build]",
"nameLong": "Code [OSS Build]",
"win32ExeBasename": "CodeOSS",
"companyName": "Microsoft Corporation",
"copyright": "Copyright (C) 2015 Microsoft. All rights reserved",
"darwinBundleIdentifier": "code.visualstudio.com.Code",

View File

@ -8,5 +8,5 @@ set ELECTRON_ENABLE_STACK_DUMPING=1
pushd %~dp0\..
node .\node_modules\gulp\bin\gulp.js electron
..\Electron-Build\Code.exe . %*
..\Electron-Build\CodeOSS.exe . %*
popd