Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/sn4k3/UVtools.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'UVtools.Installer/Code/Features.wxs')
-rw-r--r--UVtools.Installer/Code/Features.wxs17
1 files changed, 17 insertions, 0 deletions
diff --git a/UVtools.Installer/Code/Features.wxs b/UVtools.Installer/Code/Features.wxs
new file mode 100644
index 0000000..a0c923f
--- /dev/null
+++ b/UVtools.Installer/Code/Features.wxs
@@ -0,0 +1,17 @@
+<?xml version="1.0" encoding="utf-8"?>
+<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
+ <Fragment>
+ <Directory Id="TARGETDIR" Name="SourceDir">
+ <Directory Id="ProgramFilesFolder">
+ <Directory Id="INSTALLLOCATION" Name="UVtools">
+ <Merge Id="UVtools" SourceFile="$(var.UVtools.InstallerMM.TargetPath)" DiskId="1" Language="1033" />
+ </Directory>
+ </Directory>
+ </Directory>
+ <Feature Id="UVtools" Title="UVtools" Description="Installs all the files needed for UVtools" Level="1" AllowAdvertise="no" ConfigurableDirectory="INSTALLLOCATION">
+ <MergeRef Id="UVtools" />
+ <!-- Uncomment the below line to pull in IIS Metadata. Otherwise delete if not needed -->
+ <!--<ComponentGroupRef Id="webSite" />-->
+ </Feature>
+ </Fragment>
+</Wix> \ No newline at end of file