aboutsummaryrefslogtreecommitdiff
path: root/src/test/WixToolsetTest.CoreIntegration/TestData/ComplexExampleExtension/OtherComponents.wxs
blob: 15a9a0ced5f84b164c7b314f846487cac67e7faa (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:ex="http://www.example.com/scheams/v1/wxs">
  <Fragment>
    <ComponentGroup Id="OtherComponents" Directory="INSTALLFOLDER">
       <Component>
         <File Source="other.txt" />
         <ex:Example Id="Other" Value="Value" />
       </Component>
    </ComponentGroup>
  </Fragment>
</Wix>