aboutsummaryrefslogtreecommitdiff
path: root/src/test/WixToolsetTest.Netfx/TestData/UsingNativeImage/PackageComponents.wxs
blob: 21c92f26737efc02800c1359d149e0eb1b5c6d3a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<?xml version="1.0" encoding="utf-8"?>
<Wix xmlns="http://wixtoolset.org/schemas/v4/wxs"
     xmlns:netfx="http://wixtoolset.org/schemas/v4/wxs/netfx">
  <Fragment>
    <ComponentGroup Id="ProductComponents" Directory="INSTALLFOLDER">
       <Component>
         <File Name="fake.ddl" Source="example.txt">
           <netfx:NativeImage Id="ExampleNgen" />
         </File>
       </Component>
    </ComponentGroup>
  </Fragment>
</Wix>