Fix MSI installer not setting houses read-only

This commit is contained in:
elasota
2020-05-11 05:35:29 -04:00
parent 931d7e0f30
commit 35308e41f3
3 changed files with 37 additions and 5 deletions

View File

@@ -31,9 +31,10 @@
</Directory>
</Directory>
<DirectoryRef Id="AEROFOILPRODUCTDIR">
<Component Id="Aerofoil.exe" Guid="*">
<File Id="Aerofoil.exe" Source="$(var.Aerofoil.TargetPath)" KeyPath="yes" Checksum="yes"/>
<File Id="Aerofoil.exe" Source="$(var.Aerofoil.TargetPath)" KeyPath="yes" Checksum="yes" />
</Component>
<Component Id="FreeType.dll" Guid="*">
<File Id="FreeType.dll" Source="$(var.FreeType.TargetPath)" KeyPath="yes" Checksum="yes"/>
@@ -108,7 +109,7 @@
</Component>
</DirectoryRef>
<Feature Id="AerofoilApplication" Title="Glider PRO Game Data" Level="1" Display="expand">
<Feature Id="AerofoilApplication" Title="Glider PRO Game Data" Level="1" Display="expand" ConfigurableDirectory="AEROFOILPRODUCTDIR">
<ComponentRef Id="Aerofoil.exe" />
<ComponentRef Id="FreeType.dll" />
<ComponentRef Id="GpApp.dll" />
@@ -140,7 +141,6 @@
<Feature Id="HousePack1Feature" Title="Additional Houses" Level="1">
<ComponentGroupRef Id="HousePack1ComponentGroup" />
</Feature>
</Feature>
<WixVariable Id="WixUILicenseRtf" Value="$(var.ProjectDir)\LICENSE.rtf"/>
@@ -153,8 +153,6 @@
<MergeRef Id="VCRedist" />
</Feature>
<Property Id="WIXUI_INSTALLDIR" Value="AEROFOILPRODUCTDIR" />
<UI>
<UIRef Id="WixUI_Mondo" />
<Publish Dialog="ExitDialog" Control="Finish" Event="DoAction" Value="LaunchApplication">WIXUI_EXITDIALOGOPTIONALCHECKBOX = 1 and NOT Installed</Publish>