Releases: oleg-shilo/wixsharp
Releases · oleg-shilo/wixsharp
Release list
Release v2.8.0.0
-
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
Release v2.7.6.0
- #1826: Fix null handling for Windows 10 SDK path discovery
Release v2.7.5
Release v2.7.4.0
- 'Merge pull request #1820 from austinw-fineart/master'
- 'Handle missing Windows 10 SDK directory in DiscoverWellKnownLocations'
Release v2.7.3.0
Release v2.7.2.0
Release v2.7.2.0
- #1810: Fixed scheduling
Set_WixSharp_Load_Action_Propstoo early forproject.Loadevent
Release v2.7.0.0
- Add DirectorySearch and a sample
- Fix Grid layout usage across WPF dialogs (XAML)
Release v2.6.2
#1784: WPF Welcome dialog has Back button enabled.
Release v2.6.1.0
#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