Skip to content

Commit 6b388ef

Browse files
author
Tajudeen
committed
Disable APPX packaging for Windows builds
APPX packages (Windows Store) are not needed for CortexIDE Fixes: Source file code_x64.appx does not exist error
1 parent 0bd6924 commit 6b388ef

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

build/gulpfile.vscode.win32.js

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -111,11 +111,13 @@ function buildWin32Setup(arch, target) {
111111
Quality: quality
112112
};
113113

114-
if (quality !== 'exploration') {
115-
definitions['AppxPackage'] = `${quality === 'stable' ? 'code' : 'code_insider'}_${arch}.appx`;
116-
definitions['AppxPackageDll'] = `${quality === 'stable' ? 'code' : 'code_insider'}_explorer_command_${arch}.dll`;
117-
definitions['AppxPackageName'] = `${product.win32AppUserModelId}`;
118-
}
114+
// CortexIDE: Disable APPX packaging (Windows Store packages)
115+
// APPX packages are not needed for CortexIDE distribution
116+
// if (quality !== 'exploration') {
117+
// definitions['AppxPackage'] = `${quality === 'stable' ? 'code' : 'code_insider'}_${arch}.appx`;
118+
// definitions['AppxPackageDll'] = `${quality === 'stable' ? 'code' : 'code_insider'}_explorer_command_${arch}.dll`;
119+
// definitions['AppxPackageName'] = `${product.win32AppUserModelId}`;
120+
// }
119121

120122
packageInnoSetup(issPath, { definitions }, cb);
121123
};

0 commit comments

Comments
 (0)