I'm also using the most up to date 3.7, so I must be doing something wrong. 
Here's my Bundle's source:

<?xml version='1.0' encoding='windows-1252'?>
<Wix 
        xmlns='http://schemas.microsoft.com/wix/2006/wi'
        xmlns:bal="http://schemas.microsoft.com/wix/BalExtension";
        xmlns:util="http://schemas.microsoft.com/wix/UtilExtension";
>

<?ifndef PRODUCTVERSION?>
        <?error PRODUCTVERSION must be defined ?>
<?endif ?>

<Bundle
        Name="MyBundle Installer" 
        UpgradeCode="MY-GUID" 
        Version="$(var.PRODUCTVERSION)"
        Copyright="Copyright © Us"
        IconSourceFile="lib/logo.ico"
        Manufacturer="Us"
        Condition="Privileged AND (VersionNT = v6.1 OR VersionNT = v6.2)"
        DisableModify="yes"
>       
        <BootstrapperApplicationRef 
Id="WixStandardBootstrapperApplication.RtfLicense" >
                <bal:WixStandardBootstrapperApplication 
                        LicenseFile="License.rtf" 
                        LogoFile="lib\logo.png"
                        SuppressOptionsUI="yes"
                        ThemeFile="RtfTheme-Custom.xml"
                        />
        </BootstrapperApplicationRef>
        
        <Chain>
                <PackageGroupRef Id="pkgJRE7" />
                <MsiPackage
                        Id="pkgMyPackage"
                        DisplayName="MyPackage"
                        Cache="no"
                        Compressed="yes"
                        Permanent="no"
                        SourceFile="MyPackage.msi"
                        Visible="no"
                        Vital="yes"
                ></MsiPackage>
        </Chain>
</Bundle>
</Wix>


-----Original Message-----
From: Rob Mensching [mailto:r...@robmensching.com] 
Sent: June 1, 2013 11:23
To: afor...@cmu.edu; General discussion for Windows Installer XML toolset.
Subject: Re: [WiX-users] File version always 1.0.0.0

I downloaded WiX37.exe (built with WiX v3.7) and it looks like it set both 
versions correctly.
 
Personally, I think every WiX v3.8 build is better than the last.


On Sat, Jun 1, 2013 at 6:53 AM, Alain Forget <afor...@cmu.edu> wrote:


        Ah, I'm on 3.7, which looking at the website still seems to be the most 
recent stable/endorsed version.
        
        How stable are the 3.8 weekly releases? Is there a particular one you 
currently have most confidence in?
        


        -----Original Message-----
        From: Rob Mensching [mailto:r...@robmensching.com]
        Sent: June 1, 2013 00:33
        To: afor...@cmu.edu; General discussion for Windows Installer XML 
toolset.
        Subject: Re: [WiX-users] File version always 1.0.0.0
        
        I downloaded the wix38.exe which uses the latest WiX toolset to build 
and it seems to set both of the version numbers correctly. Not sure why you'd 
see different behavior. Maybe a bug in an old version of WiX toolset (assuming 
your using an older version).
        
        
        On Fri, May 31, 2013 at 3:26 PM, Alain Forget <afor...@cmu.edu> wrote:
        
        
                When setting my Bundle's version to X.Y.Z (using the Version 
attribute), the resulting .exe's Product Version is correctly X.Y.Z, but 
looking at the .exe's Properties' Details tab (or even hovering over the icon 
or filename), the File Version always seems to display 1.0.0.0 . To my 
knowledge, we don't set anything to 1.0.0.0.
        
                I want the Product and File Versions to match, just to avoid 
any versioning confusion. Does anyone know how to set the File Version?
        
                Alain
        
                ***************************************
                Alain Forget, Ph.D.
                Postdoctoral Researcher
                CyLab, Carnegie Mellon University
                afor...@cmu.edu
                http://cups.cs.cmu.edu/~aforget/
                ***************************************
        
        
        
        
                
------------------------------------------------------------------------------
                Get 100% visibility into Java/.NET code with AppDynamics Lite
                It's a free troubleshooting tool designed for production
                Get down to code-level detail for bottlenecks, with <2% 
overhead.
                Download for free and get started troubleshooting in minutes.
                http://p.sf.net/sfu/appdyn_d2d_ap2
                _______________________________________________
                WiX-users mailing list
                WiX-users@lists.sourceforge.net
                https://lists.sourceforge.net/lists/listinfo/wix-users
        
        
        
        
        
        
        
------------------------------------------------------------------------------
        Get 100% visibility into Java/.NET code with AppDynamics Lite
        It's a free troubleshooting tool designed for production
        Get down to code-level detail for bottlenecks, with <2% overhead.
        Download for free and get started troubleshooting in minutes.
        http://p.sf.net/sfu/appdyn_d2d_ap2
        _______________________________________________
        WiX-users mailing list
        WiX-users@lists.sourceforge.net
        https://lists.sourceforge.net/lists/listinfo/wix-users
        
        




------------------------------------------------------------------------------
Get 100% visibility into Java/.NET code with AppDynamics Lite
It's a free troubleshooting tool designed for production
Get down to code-level detail for bottlenecks, with <2% overhead.
Download for free and get started troubleshooting in minutes.
http://p.sf.net/sfu/appdyn_d2d_ap2
_______________________________________________
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

Reply via email to