mirror of
https://github.com/rustdesk/rustdesk.git
synced 2024-12-19 14:37:51 +08:00
21 lines
602 B
Plaintext
21 lines
602 B
Plaintext
|
<Wix xmlns="http://wixtoolset.org/schemas/v4/wxs"
|
||
|
xmlns:util="http://wixtoolset.org/schemas/v4/wxs/util">
|
||
|
<?include ../Includes.wxi?>
|
||
|
|
||
|
<Fragment>
|
||
|
<StandardDirectory Id="ProgramFiles6432Folder">
|
||
|
<Directory Id="INSTALLFOLDER" Name="$(var.Product)" />
|
||
|
</StandardDirectory>
|
||
|
|
||
|
<StandardDirectory Id="CommonAppDataFolder">
|
||
|
<Directory Id="App.Data.Folder" Name="$(var.Product)" />
|
||
|
</StandardDirectory>
|
||
|
|
||
|
<StandardDirectory Id="ProgramMenuFolder">
|
||
|
<Directory Id="App.StartMenu" Name="$(var.Product)" />
|
||
|
</StandardDirectory>
|
||
|
|
||
|
<StandardDirectory Id="DesktopFolder" />
|
||
|
</Fragment>
|
||
|
</Wix>
|