aboutsummaryrefslogtreecommitdiff
path: root/src/test/WixToolsetTest.CoreIntegration/TestData/ExampleExtension/PackageComponents.wxs
blob: 7f17b538d28d37784dbe17ee3ebdde9746c1ebd6 (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="ProductComponents" Directory="INSTALLFOLDER">
       <Component>
         <File Source="example.txt" />
         <ex:Example Id="Foo" Value="Bar" />
       </Component>
    </ComponentGroup>
  </Fragment>
</Wix>