> You're doing it too late indeed. During msbuild 
> (BeforeCompile?) grasp the build version and write it to a 
> (new?) wxs file. Then add that wxs file to your Compile 
> itemgroup to get it compiled (and linked) to an msi. 

An easier way is to create a custom MSBuild task to get the version
number and pass it in as a pre-processor variable:

  <Target Name="BeforeBuild">
    <MyGetVersionTask>
      <Output TaskParameter="Version" PropertyName="MyVersion" />
    </MyGetVersionTask>

    <CreateProperty Value="Version=$(MyVersion);$(DefineConstants)">
      <Output TaskParameter="Value" PropertyName="DefineConstants" />
    </CreateProperty>
  </Target>

This will pass in your version into candle as a pre-processor variable,
which you can access with $(var.Version).

Regards,
John

-------------------------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >>  http://get.splunk.com/
_______________________________________________
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

Reply via email to