aboutsummaryrefslogtreecommitdiff
path: root/src/ext/Msmq/test/WixToolsetTest.Msmq/TestData/UsingMessageQueue/PackageComponents.wxs
blob: ff9f7d923d4baf4e694cedcf9485f3e1019f3518 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<?xml version="1.0" encoding="utf-8"?>
<Wix xmlns="http://wixtoolset.org/schemas/v4/wxs"
     xmlns:msmq="http://wixtoolset.org/schemas/v4/wxs/msmq">
  <Fragment>
    <ComponentGroup Id="ProductComponents" Directory="INSTALLFOLDER">
        <Component>
            <File Source="example.txt" />
            <msmq:MessageQueue Id="TestMQ" Label="MQLabel" PathName="MQPath" />
        </Component>
    </ComponentGroup>
  </Fragment>
</Wix>