mirror of
https://github.com/pcvolkmer/osc-variant.git
synced 2025-04-19 11:46:50 +00:00
Initial WXS file to build MSI installer package
This commit is contained in:
parent
f089ad0b32
commit
4745a75f2e
30
osc-variant.wxs
Normal file
30
osc-variant.wxs
Normal file
@ -0,0 +1,30 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
|
||||
<Product Id="*"
|
||||
Language="1033"
|
||||
Manufacturer="CCC Mainfranken"
|
||||
Name="OSC-Variant"
|
||||
UpgradeCode="{83088581-5db3-49a2-8932-27da356818c7}"
|
||||
Version="0.6.0">
|
||||
|
||||
<Package InstallScope="perMachine" Compressed="yes" />
|
||||
|
||||
<MediaTemplate EmbedCab="yes" />
|
||||
|
||||
<Directory Id="TARGETDIR" Name="SourceDir">
|
||||
<Directory Id="ProgramFiles64Folder">
|
||||
<Directory Id="INSTALLFOLDER" Name="osc-variant">
|
||||
<Component Id="MainExecutable" Guid="*">
|
||||
<File Id="OscVariantExe" Name="osc-variant.exe" KeyPath="yes" Source="target/x86_64-pc-windows-gnu/release/osc-variant.exe" />
|
||||
<File Id="LicenseTxt" Name="LICENSE.txt" Source="LICENSE.txt" />
|
||||
</Component>
|
||||
</Directory>
|
||||
</Directory>
|
||||
</Directory>
|
||||
|
||||
<Feature Id="Complete">
|
||||
<ComponentRef Id="MainExecutable" />
|
||||
</Feature>
|
||||
|
||||
</Product>
|
||||
</Wix>
|
Loading…
x
Reference in New Issue
Block a user