Browse Source

Installer NuGet updates (and link to Wix7 issue)

pull/3733/head
Christoph Wille 2 weeks ago
parent
commit
2826fff43a
  1. 2
      ILSpy.Installer/ILSpy.Installer.csproj
  2. 3
      ILSpy.Installer/setup.cs

2
ILSpy.Installer/ILSpy.Installer.csproj

@ -23,7 +23,7 @@ @@ -23,7 +23,7 @@
</ItemGroup>
<ItemGroup>
<PackageReference Include="WixSharp_wix4" Version="2.12.2" />
<PackageReference Include="WixSharp_wix4" Version="2.14.0" />
</ItemGroup>
<Target Name="PostBuild" AfterTargets="PostBuildEvent">

3
ILSpy.Installer/setup.cs

@ -36,6 +36,9 @@ namespace ILSpy.Installer @@ -36,6 +36,9 @@ namespace ILSpy.Installer
new Files(Path.Combine(buildOutputDir, "ILSpy.resources.dll")),
new Files(Path.Combine(buildOutputDir, "ILSpy.ReadyToRun.Plugin.resources.dll"))));
// https://github.com/oleg-shilo/wixsharp/issues/1900 in addition to the pipeline dotnet tool install command
WixExtension.UI.PreferredVersion = "6.0.2";
#if ARM64
project.Platform = Platform.arm64;
#else

Loading…
Cancel
Save