-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathsample.wxs
More file actions
26 lines (21 loc) · 1.01 KB
/
sample.wxs
File metadata and controls
26 lines (21 loc) · 1.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<?xml version='1.0' encoding='windows-1252'?>
<Wix xmlns='http://schemas.microsoft.com/wix/2006/wi'>
<Product Name='Sample Installer' Id='EA524AD9-6920-4D46-B03E-7DA72F46F89B'
UpgradeCode='8AB05FAB-726C-4AA1-BB09-CC8C2534683C'
Language='1033' Version='0.6.9' Manufacturer='Dactiv'>
<Package Id='*' InstallerVersion='200' Compressed='yes' />
<MediaTemplate EmbedCab="yes" />
<Directory Id='TARGETDIR' Name='SourceDir'>
<Directory Id='ProgramFilesFolder'>
<Directory Id='INSTALLDIR' Name='Sample Installer'>
<Component Id='SampleFile' Guid='181410DA-06A6-413A-A1C7-261B894D4EF9'>
<File Source='sample.txt' Vital='yes' />
</Component>
</Directory>
</Directory>
</Directory>
<Feature Id='Complete' Level="1">
<ComponentRef Id='SampleFile' />
</Feature>
</Product>
</Wix>