File tree Expand file tree Collapse file tree 1 file changed +7
-5
lines changed
Expand file tree Collapse file tree 1 file changed +7
-5
lines changed Original file line number Diff line number Diff 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 } ;
You can’t perform that action at this time.
0 commit comments