How can I deal with the ICE60 warning in WiX?
Posted
by Scott Boettger
on Stack Overflow
See other posts from Stack Overflow
or by Scott Boettger
Published on 2010-02-19T18:12:48Z
Indexed on
2010/05/01
21:57 UTC
Read the original article
Hit count: 216
Good Afternoon,
I have created a WiX project that installs a bunch of different EXEs and DLLs. Unfortunatly when I build the project I receive the following warning for each one of them:
ICE60: The file fileName is not a Font, and its version is not a companion file reference. It should have a language specified in the Language column.
I have found examples and possible solutions for this and each time it is suggested to set the DefaultLanguage tag to 0 in order to fix the warning. Once doing that I then get this warning:
The DefaultLanguage '0' was used for file 'fileName' which has no language or version. For unversioned files, specifying a value for DefaultLanguage is not neccessary and it will not be used when determining file versions. Remove the DefaultLanguage attribute to eliminate this warning.
So this leads me to the question of how can I handle this warning?
Thanks in advance for any and all help given.
© Stack Overflow or respective owner