-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPackage.wxs
More file actions
19 lines (19 loc) · 768 Bytes
/
Copy pathPackage.wxs
File metadata and controls
19 lines (19 loc) · 768 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<Wix xmlns="http://wixtoolset.org/schemas/v4/wxs">
<Package Id="com.github.falk_werner.dumb_edit" Name="Dumb Edit"
Manufacturer="Falk Werner" Version="0.1.0"
ProductCode="65961693-9bf5-434e-9240-05cc2dcf4597">
<File Id="dumb_edit.exe" Source="target/release/dumb-edit.exe">
<Shortcut Id="DumbEditShortcut"
Directory="ProgramMenuFolder"
Name="Dumb Edit"
WorkingDirectory="INSTALLFOLDER"
Advertise="yes"
Icon="dumb_edit.exe"
IconIndex="0"
>
</Shortcut>
</File>
<Icon Id="dumb_edit.exe" SourceFile="src/img/32x32.png" />
<Property Id="ARPPRODUCTICON" Value="dumb_edit.exe" />
</Package>
</Wix>