I want to default a proptery in my wix installation to a hardcoded directory. Is there a "correct" way to encode a default value (note, this is an internal project, not something distributed to the public) so I don't get the following warning:
LGHT1076: ICE48 Directory 'FOO' appears to be hardcoded in the property table to a local drive.
The wix file looks like this:
<?xml version="1.0" encoding="UTF-8"?>
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi"
xmlns:util="http://schemas.microsoft.com/wix/UtilExtension">
<Product Id="22E1F223-E3AD-45F8-A394-1289AAAA64C8"
Name="MyService"
Language="1033" Version="1.0.0.0"
UpgradeCode="140F5A44-58DA-4364-876B-9D9484C04CD9">
<Package InstallerVersion="200" Compressed="yes" />
<Media Id="1" Cabinet="media1.cab" EmbedCab="yes" />
<Property Id="FOO" Value="C:\MyRootDirectory\" />
Any thoughts on this?