mirror of
https://github.com/feschber/lan-mouse.git
synced 2026-03-12 07:40:55 +03:00
27 lines
873 B
XML
27 lines
873 B
XML
<Wix xmlns="http://wixtoolset.org/schemas/v4/wxs">
|
|
<Fragment>
|
|
<ComponentGroup Id="LanMouseComponents" Directory="INSTALLFOLDER">
|
|
<Component>
|
|
<File Source="..\target\release\lan-mouse.exe"/>
|
|
</Component>
|
|
<Component Id="ApplicationShortcut" Directory="ApplicationProgramsFolder">
|
|
<Shortcut Id="ApplicationStartMenuShortcut"
|
|
Name="!(bind.Property.ProductName)"
|
|
Description ="Mouse and Keyboard sharing Software"
|
|
Target="[INSTALLFOLDER]lan-mouse.exe"
|
|
WorkingDirectory="INSTALLFOLDER">
|
|
<Icon Id="LanMouse" SourceFile=".\icon.ico"/>
|
|
</Shortcut>
|
|
<RemoveFolder Id="ApplicationProgramsFolder" On="uninstall"/>
|
|
<RegistryValue
|
|
Root="HKCU"
|
|
Key="Software\Feschber\LanMouse"
|
|
Name="installed"
|
|
Type="integer"
|
|
Value="1"
|
|
KeyPath="yes"/>
|
|
</Component>
|
|
</ComponentGroup>
|
|
</Fragment>
|
|
</Wix>
|