main
wxs 14 lines 568 Bytes
Raw
1 <Wix xmlns="http://wixtoolset.org/schemas/v4/wxs">
2 <Package ProductCode="33333333-3333-3333-3333-333333333333" Name="All Users Package" Version="1.0" Manufacturer="Example Corporation" UpgradeCode="4BE34BEE-CA23-488E-96A0-B15878E3654B" Compressed="no" Scope="perUserOrMachine">
3
4 <StandardDirectory Id="ProgramFilesFolder">
5 <Directory Id="INSTALLFOLDER" Name="Example" />
6 </StandardDirectory>
7
8 <Feature Id="Main">
9 <Component Directory="INSTALLFOLDER">
10 <File Source="test.txt" />
11 </Component>
12 </Feature>
13 </Package>
14 </Wix>