main
wxs 29 lines 1.59 KB
Raw
1 <Wix xmlns="http://wixtoolset.org/schemas/v4/wxs">
2 <Package Codepage="1252" Language="1033" Manufacturer="Example Corporation" Name="MsiPackage" UpgradeCode="{12E4699F-E774-4D05-8A01-5BDD41BBA127}" Version="1.0.0.0" ProductCode="{83F9C623-26FE-42AB-951E-170022117F54}" Compressed="no">
3 <CustomTable Id="CustomTable1">
4 <Column Id="Column1" PrimaryKey="yes" Type="string" Width="0" Category="text" Description="The first custom column." />
5 <Column Id="Component_" Type="string" Width="72" KeyTable="Component" KeyColumn="1" Description="The custom table's Component reference" />
6 <Row>
7 <Data Column="Column1" Value="Row1" />
8 <Data Column="Component_" Value="test.txt" />
9 </Row>
10 <Row>
11 <Data Column="Column1" Value="Row2" />
12 <Data Column="Component_" Value="test.txt" />
13 </Row>
14 </CustomTable>
15 <StandardDirectory Id="ProgramFiles6432Folder">
16 <Directory Id="INSTALLFOLDER" Name="MsiPackage" ShortName="1egc1laj">
17 <Component Id="filcV1yrx0x8wJWj4qMzcH21jwkPko" Guid="{E597A58A-03CB-50D8-93E3-DABA263F233A}" Bitness="always32">
18 <File Id="filcV1yrx0x8wJWj4qMzcH21jwkPko" Name="test.txt" KeyPath="yes" Source=".\MsiPackage\test.txt" />
19 </Component>
20 </Directory>
21 </StandardDirectory>
22 <StandardDirectory Id="ProgramFilesFolder" />
23 <Feature Id="ProductFeature" Level="1" Title="MsiPackageTitle">
24 <ComponentRef Id="filcV1yrx0x8wJWj4qMzcH21jwkPko" />
25 </Feature>
26 <MajorUpgrade DowngradeErrorMessage="A newer version of [ProductName] is already installed." />
27 <Media Id="1" />
28 </Package>
29 </Wix>