Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- Is there a way to find wix product version number which is being applied?
- <?xml version="1.0" encoding="UTF-8"?>
- <Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
- <Product Id="7a224f9a-0627-4848-8b9e-f037cb409fc6" UpgradeCode="42c97588-6c36-40ef-aeb0-290aaffd6456" Version="$(var.ProductVersion)" Language="1033" Name="Myproj" Manufacturer="My Organization">
- <?xml version="1.0" encoding="utf-8"?>
- <Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="4.0">
- <PropertyGroup>
- <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
- <Platform Condition=" '$(Platform)' == '' ">x86</Platform>
- <ProductVersion>3.0</ProductVersion>
- <SchemaVersion>2.0</SchemaVersion>
- <Version Condition=" '$(Version)' == '' ">1.0.0.5</Version>
- <OutputType>Package</OutputType>
- <WixTargetsPath Condition=" '$(WixTargetsPath)' == '' ">$(MSBuildExtensionsPath)MicrosoftWiXv3.xWix.targets</WixTargetsPath>
- <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
- <OutputPath>bin$(Configuration)</OutputPath>
- <IntermediateOutputPath>obj$(Configuration)</IntermediateOutputPath>
- <DefineConstants>ProductVersion=$(Version)</DefineConstants>
- </PropertyGroup>
Advertisement
Add Comment
Please, Sign In to add comment