Lots of errors CNDL0014
See original GitHub issueProbably this is because of how electron-forge is managing package process, but when I try to build the installer it fails because this kind of errors.
error CNDL0014 : The Component/@Id attribute's value, '04100c53dc5f432d07c04be570365740873_bcf33811_39e7_4040_b3b8_be696fb50ded', is not a legal identifier. Identifiers may contain ASCII characters A-Z, a-z, digits, underscores (_), or periods (.). Every identifier must begin with either a letter or an underscore.
Do you know, by chance, how to solve this? Thanks.
Issue Analytics
- State:
- Created 6 years ago
- Reactions:1
- Comments:5
Top Results From Across the Web
Lots of errors CNDL0014 · Issue #6 - GitHub
I'm having the same issue. Looks like we need to add not allowing ids that start with '.' or a number. So in:...
Read more >[WiX-users] error CNDL0014
3\UltraEdit32_FIles.wixobj", I am getting the following error: UltraEdit32_Files.wxs. C:\Installs\UltraEdit32_Files.wxs(72) : error CNDL0014 : The
Read more >Re: [WiX-users] error CNDL0014 - SourceForge
The TypeLib/@HelpDirectory attribute's value is supposed to be the ID of the directory, not a Formatted type. Use INSTALLDIR, not [INSTALLDIR].
Read more >error CNDL0027 : The File/@Name attribute's value, is not a ...
I am suspecting that it is due to the old version because i am using windows 10 32 bit environment. So do i...
Read more >Script Packager Install Folder - SAPIEN Forums
error CNDL0014 : The Directory/@Id attribute's value, '_[AppDataFolder]', is not a legal identifier. Identifiers may contain ASCII ...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
I’m having the same issue. Looks like we need to add not allowing ids that start with ‘.’ or a number.
So in: https://github.com/felixrieseberg/electron-wix-msi/blob/master/src/creator.ts#L437
return id.replace(/[^A-Za-z0-9_\.]|\.|^[0-9]/g, '_');
I am seeing the same problem. Has anyone figured out a workaround?