How can I deal with the ICE60 warning in WiX?
- by Scott Boettger
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.