main
wxs 18 lines 607 Bytes
Raw
1 <Wix xmlns="http://wixtoolset.org/schemas/v4/wxs">
2 <Package Name="LocalizedPackage" Version="1.0.0.0" Manufacturer="Example Corporation" UpgradeCode="047730a5-30fe-4a62-a520-da9381b8226a" Compressed="no" Scope="perMachine">
3
4 <PropertyRef Id="LocalizedProperty" />
5
6 <Feature Id="ProductFeature">
7 <Component Directory="INSTALLFOLDER">
8 <File Source="example.txt" />
9 </Component>
10 </Feature>
11 </Package>
12
13 <Fragment>
14 <StandardDirectory Id="ProgramFilesFolder">
15 <Directory Id="INSTALLFOLDER" Name="MsiPackage" />
16 </StandardDirectory>
17 </Fragment>
18 </Wix>