Skip to content

Releases: oleg-shilo/wixsharp

Release v2.8.0.0

Choose a tag to compare

@oleg-shilo oleg-shilo released this 06 Sep 04:55
  • Added generic signer class:

    project.DigitalSignature = new GenericSigner
           {
               Implementation = (file) =>
               {
                   byte[] unsignedContent = IO.File.ReadAllBytes(file);
                   byte[] signedContent = SigningService.Sign(unsignedContent);
    
                   System.IO.File.WriteAllBytes(file, signedContent);
                   return 0;
               }
           };
  • #1833: Antivirus problems during installation of WixSharp built MSIs
    Added API for signing embedded assemblies (e.g. WixSharp.UI)

    Compiler.SignAllFilesOptions.SignEmbeddedAssemblies = true; // the default is true anyway
  • #1832: SetupEventArgs.IsUninstalling is false when uninstalling through modify-dialog

Full Changelog: v2.7.7.0...v2.8.0.0

Releasae v2.7.7.0

Choose a tag to compare

@oleg-shilo oleg-shilo released this 16 Aug 09:19

Release v2.7.6.0

Choose a tag to compare

@oleg-shilo oleg-shilo released this 04 Aug 13:53
  • #1826: Fix null handling for Windows 10 SDK path discovery

Release v2.7.5

Choose a tag to compare

@oleg-shilo oleg-shilo released this 30 Jul 12:38
  • Addressing #1825 (related to #1430, PRs #1432 & 1433)
  • #1823 Should query registry to locate Windows Kits directory

Release v2.7.4.0

Choose a tag to compare

@oleg-shilo oleg-shilo released this 24 Jul 13:44
  • 'Merge pull request #1820 from austinw-fineart/master'
  • 'Handle missing Windows 10 SDK directory in DiscoverWellKnownLocations'

Release v2.7.3.0

Choose a tag to compare

@oleg-shilo oleg-shilo released this 21 Jul 13:19

#1730-triggered: Implemented exporting all WixSharp own custom actions during APT build
#1816: The documentation around search paths is outdated and misleading
#1813: fix serialization of MultiString RegValue

Release v2.7.2.0

Choose a tag to compare

@oleg-shilo oleg-shilo released this 08 Jul 14:21

Release v2.7.2.0

  • #1810: Fixed scheduling Set_WixSharp_Load_Action_Props too early for project.Load event

Release v2.7.0.0

Choose a tag to compare

@oleg-shilo oleg-shilo released this 19 May 08:11
  • Add DirectorySearch and a sample
  • Fix Grid layout usage across WPF dialogs (XAML)

Release v2.6.2

Choose a tag to compare

@oleg-shilo oleg-shilo released this 30 Apr 06:35

#1784: WPF Welcome dialog has Back button enabled.

Release v2.6.1.0

Choose a tag to compare

@oleg-shilo oleg-shilo released this 06 Apr 12:33

#1774: Set INSTALLDIR as Secure by default'
#1761: bundle.LightOptions = "-spdb" | doesn't work (2)'
#1764: UnhandledException event'
#282: Built-in installer placeholders are displayed as format strings with [N] brackets'
#1761: bundle.LightOptions = "-spdb" | doesn't work'
VSTemplates: Release 2.3.0

  • Added version suffix in the "install wix extension manually" prompt
  • UACRevealer now exposes all approaches as public so users can experiment with it