Skip to content

Commit

Permalink
Add UI to installer.
Browse files Browse the repository at this point in the history
  • Loading branch information
rinrab committed Dec 26, 2023
1 parent e5ef8c5 commit cb0d21b
Show file tree
Hide file tree
Showing 3 changed files with 695 additions and 5 deletions.
8 changes: 4 additions & 4 deletions Installer/Installer.wixproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@
<OutputName>AOVpnManager</OutputName>
</PropertyGroup>
<ItemGroup>
<Content Include="TaskConfig.xml" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="WixToolset.UI.wixext" Version="4.0.3" />
<PackageReference Include="WixToolset.Util.wixext" Version="4.0.3" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\AOVpnManager\AOVpnManager.csproj" />
<None Include="license.rtf" />
<Content Include="TaskConfig.xml" />
</ItemGroup>
</Project>
</Project>
9 changes: 8 additions & 1 deletion Installer/Package.wxs
Original file line number Diff line number Diff line change
@@ -1,9 +1,16 @@
<Wix xmlns="http://wixtoolset.org/schemas/v4/wxs"
xmlns:util="http://wixtoolset.org/schemas/v4/wxs/util">
xmlns:util="http://wixtoolset.org/schemas/v4/wxs/util"
xmlns:ui="http://wixtoolset.org/schemas/v4/wxs/ui">

<Package Name="Always On Vpn Manager" Manufacturer="Rinrab"
Version="1.0.0.0" UpgradeCode="5fe165a7-f2e7-4fca-8291-4e54e7e33715"
Scope="perMachine" Compressed="yes">

<WixVariable Id="WixUILicenseRtf"
Value="license.rtf"/>

<ui:WixUI Id="WixUI_Minimal" />

<MediaTemplate EmbedCab="yes" />

<MajorUpgrade DowngradeErrorMessage="!(loc.DowngradeError)"

Check warning on line 16 in Installer/Package.wxs

View workflow job for this annotation

GitHub Actions / build (win-x64)

ICE61: This product should remove only older versions of itself. The Maximum version is not less than the current product. (1.0.0.0 1.0.0.0)

Check warning on line 16 in Installer/Package.wxs

View workflow job for this annotation

GitHub Actions / build (win-x64)

ICE61: This product should remove only older versions of itself. The Maximum version is not less than the current product. (1.0.0.0 1.0.0.0)

Check warning on line 16 in Installer/Package.wxs

View workflow job for this annotation

GitHub Actions / build (win-x86)

ICE61: This product should remove only older versions of itself. The Maximum version is not less than the current product. (1.0.0.0 1.0.0.0)

Check warning on line 16 in Installer/Package.wxs

View workflow job for this annotation

GitHub Actions / build (win-x86)

ICE61: This product should remove only older versions of itself. The Maximum version is not less than the current product. (1.0.0.0 1.0.0.0)

Check warning on line 16 in Installer/Package.wxs

View workflow job for this annotation

GitHub Actions / build (win-arm64)

ICE61: This product should remove only older versions of itself. The Maximum version is not less than the current product. (1.0.0.0 1.0.0.0)

Check warning on line 16 in Installer/Package.wxs

View workflow job for this annotation

GitHub Actions / build (win-arm64)

ICE61: This product should remove only older versions of itself. The Maximum version is not less than the current product. (1.0.0.0 1.0.0.0)
Expand Down
Loading

0 comments on commit cb0d21b

Please sign in to comment.