blob: 13c79e905db7f568e8b44f5fa0e343f83ed580a2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<Wix xmlns="http://wixtoolset.org/schemas/v4/wxs">
<Package Name="~DefaultLanguagePackage" Version="1.0.0.0" Manufacturer="Example Corporation" UpgradeCode="047730a5-30fe-4a62-a520-da9381b8226a">
<MajorUpgrade DowngradeErrorMessage="!(loc.DowngradeError)" />
<Feature Id="ProductFeature" Title="!(loc.FeatureTitle)">
<Component Directory="INSTALLFOLDER">
<File Source="test.txt" />
</Component>
</Feature>
</Package>
<Fragment>
<StandardDirectory Id="ProgramFilesFolder">
<Directory Id="INSTALLFOLDER" Name="Example Corporation\MsiPackage" />
</StandardDirectory>
</Fragment>
</Wix>
|