Skip to content

Tags: stas-mursaev/wixsharp

Tags

v1.14.2.0

Toggle v1.14.2.0's commit message
Release v1.14.2.0

* Fix collision possibility for GetHashCode32(): use (uint) instead of Math.Abs()
* Issue oleg-shilo#786: NullReferenceException on FindClientAssemblyInCallStack
* Dynamic Localization - bootstrapper support
* Modified `Compiler.BuildMsi(string path)` to return potentially modified input path

v1.14.1.0

Toggle v1.14.1.0's commit message
Release v1.14.1.0

* Issue oleg-shilo#784: WixSharp Managed Setup - Custom UI - FeaturesDialog does not propagate user selection
* Issue oleg-shilo#783: Temporary Files Not Deleted After Successful Build

v1.14.0.0

Toggle v1.14.0.0's commit message
Merge branch 'master' of https://github.com/oleg-shilo/wixsharp

v1.13.2.0

Toggle v1.13.2.0's commit message
- Reverted some "Issue oleg-shilo#758" invalid change

v1.13.1.0

Toggle v1.13.1.0's commit message
Release v1.13.1.0

- Issue oleg-shilo#750: MigrateFeatures not behaving as expected
- Issue oleg-shilo#756: Fix Extensions.SaveBinary
- Issue oleg-shilo#748: error for FirewallException
- Issue oleg-shilo#758: PVS-Studio report
- Issue oleg-shilo#756: Fix Extensions.Combine(this List<>, List<>)
- Added fallback language setting to demonstrate safe localization technique in the 'Firewall Exception' sample.
- Add Interface element for COM registration
- Added extra content to the `SetupArgs.Data` documentation.

v1.13.0.0

Toggle v1.13.0.0's commit message
Release v1.13.2.0

- Issue oleg-shilo#750: MigrateFeatures not behaving as expected
- Issue oleg-shilo#756: Fix Extensions.SaveBinary
- Issue oleg-shilo#748: error for FirewallException
- Issue oleg-shilo#758: PVS-Studio report
- Issue oleg-shilo#756: Fix Extensions.Combine(this List<>, List<>)
- Added fallback language setting to demonstrate safe localization technique in the 'Firewall Exception' sample.
- Add Interface element for COM registration
- Added extra content to the `SetupArgs.Data` documentation.

v1.12.0.0

Toggle v1.12.0.0's commit message
Release v1.12.0

* Issue oleg-shilo#695: FR - Implement Harvester using wix heat.
* Issue oleg-shilo#714: Incorrect fonts when building on Windows Server Core
* Added `XElement.GetAttribute` extension method.
* New class `PublicProperty` to encapsulate a public property which must be uppercase

v1

Toggle v1's commit message
Release v1.12.0

* Issue oleg-shilo#695: FR - Implement Harvester using wix heat.
* Issue oleg-shilo#714: Incorrect fonts when building on Windows Server Core
* Added `XElement.GetAttribute` extension method.
* New class `PublicProperty` to encapsulate a public property which must be uppercase

v1.11.1.0

Toggle v1.11.1.0's commit message
Release v1.11.0-1

Release v1.11.1
* Issue oleg-shilo#704: Question: Localized progress action messages.
* Issue oleg-shilo#696: ComponentCondition on CloseApplication doesn't appear to be working
* Removed `ValidateAssemblyCompatibility`as no longer needed since .NET4.0 is arguably a better choice for the recommended runtime
* Issue oleg-shilo#604: Is it possible to suppress the "UAC prompt" text if UAC is not enabled?
* Issue oleg-shilo#701: FR: Access to 32/64bit registry keys in Custom Actions (using .NET3.5)
* WixSharpVSIX (VS Templates): Release v1.8.3
  - Migrated to .NET4.0 as target runtime
  - ManagedUI progress message localization improvements triggered by oleg-shilo#704
* Added a `Property.Secure`:
  ```C#
  new Property("Gritting", "Hello World!"){ Secure = true })
  ```
* More granular conditions for feature install/uninstall:
  ```C#
  var condition = feature.ShallInstall() && feature.IsInstalled();
  ```

v1.11.0.0

Toggle v1.11.0.0's commit message
Release v1.11.0.0

* Added registry values aggregator (`RegKey`):
  ```
  new RegKey(fullSetup, RegistryHive.LocalMachine, @"Software\My Company\My Product",
      new RegValue("Message", "Hello"),
      new RegValue("Count", 777)),
  ```
* Issue oleg-shilo#699: Wix Error for ServiceInstaller if at least one ServiceConfig parameter is not specified
* Improvements to DigitalSignature to allow loading cert by sha1hash
* Implemented custom message dialog instead (of the default MessageBox.Show) for displaying error message (if any detected) during the MSI session.
* Issue oleg-shilo#688: Adding prompt to CloseApplication prevents installer from completing.
* Issue oleg-shilo#683. Close MSI Interop handles when getting data from MSI
* Issue oleg-shilo#672: outdir and BuildMsiCmd fails because the outdir is not created
* Issue oleg-shilo#670: msi is always creating root folder, even if feature is disabled