Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Jul 20th, 2012  |  syntax: None  |  size: 1.26 KB  |  hits: 11  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. Is there a way to find wix product version number which is being applied?
  2. <?xml version="1.0" encoding="UTF-8"?>
  3. <Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
  4.   <Product Id="7a224f9a-0627-4848-8b9e-f037cb409fc6" UpgradeCode="42c97588-6c36-40ef-aeb0-290aaffd6456" Version="$(var.ProductVersion)" Language="1033" Name="Myproj" Manufacturer="My Organization">
  5.        
  6. <?xml version="1.0" encoding="utf-8"?>
  7. <Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="4.0">
  8.   <PropertyGroup>
  9.     <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  10.     <Platform Condition=" '$(Platform)' == '' ">x86</Platform>
  11.     <ProductVersion>3.0</ProductVersion>
  12.     <SchemaVersion>2.0</SchemaVersion>
  13.     <Version Condition=" '$(Version)' == '' ">1.0.0.5</Version>
  14.     <OutputType>Package</OutputType>
  15.     <WixTargetsPath Condition=" '$(WixTargetsPath)' == '' ">$(MSBuildExtensionsPath)MicrosoftWiXv3.xWix.targets</WixTargetsPath>
  16.  
  17.  
  18.  
  19.   <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
  20.     <OutputPath>bin$(Configuration)</OutputPath>
  21.     <IntermediateOutputPath>obj$(Configuration)</IntermediateOutputPath>
  22.     <DefineConstants>ProductVersion=$(Version)</DefineConstants>
  23.   </PropertyGroup>