I am not sure if it lack of understanding or not but I have the following code implemented in my WiX installer
<?ifdef svn.BUILD_NUMBER?>
<?define PRODUCTVERSION="1.0.$(svn.BUILD_NUMBER).0"?>
<?else?>
<?define PRODUCTVERSION="1.0.1.0"?>
<?endif?>
<Product Id="*" Name="My Installer" Language="1033" Version="$(var.PRODUCTVERSION)" Manufacturer="My Corporation" UpgradeCode="170e2710-5690-4433-8787-7bcd0a922fbc">
No matter what I try however I cannot get the installer to use the SVN revision number...am I missing something/doing something wrong?