aboutsummaryrefslogtreecommitdiff
path: root/src/test/WixToolsetTest.CoreIntegration/TestData/CustomTable/CustomTable-Expected.wxs
blob: 935cc8b31b2883a3a9973eb5647ad5b4ff573dce (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<Wix xmlns="http://wixtoolset.org/schemas/v4/wxs">
  <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}">
    <CustomTable Id="CustomTable1">
      <Column Id="Column1" PrimaryKey="yes" Type="string" Width="0" Category="text" Description="The first custom column." />
      <Column Id="Component_" Type="string" Width="72" KeyTable="Component" KeyColumn="1" Description="The custom table's Component reference" />
      <Row>
        <Data Column="Column1" Value="Row1" />
        <Data Column="Component_" Value="test.txt" />
      </Row>
      <Row>
        <Data Column="Column1" Value="Row2" />
        <Data Column="Component_" Value="test.txt" />
      </Row>
    </CustomTable>
    <Directory Id="TARGETDIR" Name="SourceDir">
      <Directory Id="ProgramFilesFolder" Name="PFiles">
        <Directory Id="ProgramFiles6432Folder">
          <Directory Id="INSTALLFOLDER" Name="MsiPackage" ShortName="1egc1laj">
            <Component Id="filcV1yrx0x8wJWj4qMzcH21jwkPko" Guid="{E597A58A-03CB-50D8-93E3-DABA263F233A}" Bitness="always32">
              <File Id="filcV1yrx0x8wJWj4qMzcH21jwkPko" Name="test.txt" KeyPath="yes" Source="SourceDir\PFiles\\MsiPackage\test.txt" />
            </Component>
          </Directory>
        </Directory>
      </Directory>
    </Directory>
    <Feature Id="ProductFeature" Level="1" Title="MsiPackageTitle">
      <ComponentRef Id="filcV1yrx0x8wJWj4qMzcH21jwkPko" />
    </Feature>
    <MajorUpgrade DowngradeErrorMessage="A newer version of [ProductName] is already installed." />
    <Media Id="1" />
  </Package>
</Wix>