-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbeectl.wxs
25 lines (25 loc) · 1.41 KB
/
beectl.wxs
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
<?xml version='1.0' encoding='windows-1252'?>
<Wix xmlns='http://schemas.microsoft.com/wix/2006/wi'>
<Product Name='BeeCtl 1.3.5' Id='ABCDDCBA-86C7-4D14-AEC0-86416A69ABDE' UpgradeCode='ABCDDCBA-7349-453F-94F6-BCB5110BA4FD'
Language='1033' Codepage='1252' Version='1.0' Manufacturer='Ruslan Osmanov <608192+rosmanov@users.noreply.github.com>'>
<Package Id='*' Keywords='Installer' Description="Native Messaging Host for Bee Extension Installer"
Comments='THE SOFTWARE IS PROVIDED "AS IS"' Manufacturer='Ruslan Osmanov'
InstallerVersion='100' Languages='1033' Compressed='yes' SummaryCodepage='1252' />
<!--<Media Id='1' Cabinet='Sample.cab' EmbedCab='yes' DiskPrompt="CD-ROM #1" />-->
<Property Id='DiskPrompt' Value="Native Messaging Host for Bee Extension Installation [1]" />
<Directory Id='TARGETDIR' Name='SourceDir'>
<Directory Id='ProgramFilesFolder' Name='PFiles'>
<Directory Id='Ruslan-Osmanov' Name='Ruslan-Osmanov'>
<Directory Id='INSTALLDIR' Name='beectl-1.3.3'>
<Component Id='MainExecutable' Guid='ABCDDCBA-83F1-4F22-985B-FDB3C8ABD471'>
<File Id='BeectlEXE' Name='beectl.exe' DiskId='1' Source='beectl.exe' KeyPath='yes'/>
</Component>
</Directory>
</Directory>
</Directory>
</Directory>
<Feature Id='Complete' Level='1'>
<ComponentRef Id='MainExecutable' />
</Feature>
</Product>
</Wix>