main
wxs 20 lines 996 Bytes
Raw
1 <Wix xmlns="http://wixtoolset.org/schemas/v4/wxs">
2 <Package Name="PacakgeWithBindVariables" Version="!(bind.fileversion.TestBinaryFile)" Manufacturer="Example Corporation" UpgradeCode="41a2c17e-1976-465b-bcde-eae03516ca68">
3
4 <Property Id="TestPackageManufacturer" Value="!(bind.Property.Manufacturer)" />
5 <Property Id="TestPackageName" Value="!(bind.Property.ProductName)" />
6 <Property Id="TestPackageVersion" Value="!(bind.Property.ProductVersion)" />
7
8 <Property Id="TestTextVersion" Value="v!(bind.fileversion.TestTextFile)" />
9 <Property Id="TestTextLangauge" Value="!(bind.filelanguage.TestTextFile)" />
10
11 <Feature Id="ProductFeature">
12 <Component Directory="ProgramFiles6432Folder" Subdirectory="test">
13 <File Id="TestBinaryFile" Source="burn.exe" />
14 </Component>
15 <Component Directory="ProgramFiles6432Folder" Subdirectory="test">
16 <File Id="TestTextFile" Source="data\test.txt" />
17 </Component>
18 </Feature>
19 </Package>
20 </Wix>