tags:

views:

141

answers:

2

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.

A: 

Did you try this solution? http://wix.mindcapers.com/wiki/ICE60

sankar
Actually mentioned my attempt with that fix in the question, but thanks.
Scott Boettger
Sorry, i didnt realize this before. It seems it may be an issue with WIX, i guess. you can report to WIX team. However, I am not sure whether you will accept it, but if you dont have any issues to suppress this warning, just do this until you get a proper solution for this. I hope you may know how to suppress the warning message.
sankar
+2  A: 

I beileve you are stuck with the warning until the executables are updated. Not helpful, I know, but I would focus on fixing the executables rather than trying to hack the Windows Installer.

Rob Mensching
Unfortunately that is what I'm stuck with thanks for the response.
Scott Boettger

related questions