aboutsummaryrefslogtreecommitdiffstats
path: root/installer/installer.wxs
diff options
context:
space:
mode:
Diffstat (limited to 'installer/installer.wxs')
-rw-r--r--installer/installer.wxs18
1 files changed, 9 insertions, 9 deletions
diff --git a/installer/installer.wxs b/installer/installer.wxs
index f5627dd..dd2f1c8 100644
--- a/installer/installer.wxs
+++ b/installer/installer.wxs
@@ -13,7 +13,7 @@
InstallerVersion="200"
InstallPrivileges="elevated"
InstallScope="perMachine"
- ReadOnly="yes"/>
+ ReadOnly="yes" />
<Directory Id="TARGETDIR" Name="SourceDir">
<Component Guid="b668d4c7-abb3-485a-b8df-d34200489a43">
@@ -22,24 +22,24 @@
Key="SOFTWARE\Wintun"
Type="integer"
Value="1"
- KeyPath="yes"/>
+ KeyPath="yes" />
</Component>
</Directory>
- <Property Id="WintunInstallerHash" Value="$(var.INSTALLER_LIBRARY_HASH)" SuppressModularization="yes"/>
- <Property Id="WintunInstallerBuildtime" Value="$(var.INSTALLER_LIBRARY_TIME)" SuppressModularization="yes"/>
- <Property Id="WintunVersion" Value="$(var.WINTUN_VERSION)" SuppressModularization="yes"/>
+ <Property Id="WintunInstallerHash" Value="$(var.INSTALLER_LIBRARY_HASH)" SuppressModularization="yes" />
+ <Property Id="WintunInstallerBuildtime" Value="$(var.INSTALLER_LIBRARY_TIME)" SuppressModularization="yes" />
+ <Property Id="WintunVersion" Value="$(var.WINTUN_VERSION)" SuppressModularization="yes" />
- <Binary Id="installer.dll" SourceFile="!(bindpath.output_dir)installer.dll"/>
+ <Binary Id="installer.dll" SourceFile="!(bindpath.output_dir)installer.dll" />
<CustomAction Id="EvaluateWintun" SuppressModularization="yes" BinaryKey="installer.dll" DllEntry="MsiEvaluate" Execute="immediate" />
<CustomAction Id="ProcessWintun" SuppressModularization="yes" BinaryKey="installer.dll" DllEntry="MsiProcess" Execute="deferred" Impersonate="no" />
<InstallExecuteSequence>
- <Custom Action="EvaluateWintun" After="CostFinalize"/>
- <Custom Action="ProcessWintun" After="InstallFiles"/>
+ <Custom Action="EvaluateWintun" After="CostFinalize" />
+ <Custom Action="ProcessWintun" After="InstallFiles" />
</InstallExecuteSequence>
<?if $(var.Platform) = "x86"?>
- <CustomAction Id="WoW64Unsupported" Error="You are attempting to install the 32-bit variant of [ProductName] on a 64-bit operating system, which is not supported. Please install the 64-bit variant instead."/>
+ <CustomAction Id="WoW64Unsupported" Error="You are attempting to install the 32-bit variant of [ProductName] on a 64-bit operating system, which is not supported. Please install the 64-bit variant instead." />
<InstallExecuteSequence>
<Custom Action="WoW64Unsupported" After="LaunchConditions"><![CDATA[VersionNT64]]></Custom>
</InstallExecuteSequence>