Skip to content

Commit

Permalink
Release v1.14.1.0
Browse files Browse the repository at this point in the history
* Issue #784: WixSharp Managed Setup - Custom UI - FeaturesDialog does not propagate user selection
* Issue #783: Temporary Files Not Deleted After Successful Build
  • Loading branch information
lbs-contributor committed Dec 12, 2019
1 parent 3fd6761 commit e612250
Show file tree
Hide file tree
Showing 8 changed files with 16 additions and 31 deletions.
13 changes: 4 additions & 9 deletions Source/NuGet/WixSharp/WixSharp.bin.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2011/10/nuspec.xsd">
<metadata>
<id>WixSharp.bin</id>
<version>1.14.0.0</version>
<version>1.14.1.0</version>
<title>Wix# (WixSharp) - Binaries</title>
<authors>Oleg Shilo</authors>
<owners>Oleg Shilo</owners>
Expand All @@ -16,14 +16,9 @@ The package contains Wix# binaries only.
In order to use this package you need have WiX Toolset installed.
The package is tested against WIX (Windows Installer Xml) Toolset v3.10 (v3.10.2103.0)</description>
<summary>Wix# (WixSharp) - Binaries</summary>
<releaseNotes>Release v1.14.0.0
- Issue #765: Dynamic localization
- Added WiXUtil ProductSearch element. Used in the same way as the RegistrySearch. The product search is used to determine installation state of other products based on ProductCode or UpgradeCode by Burn bootstrappers. Useful for bypassing the plan phase of redistributable exe packages that may already be on the system.
- Add support for ShortcutProperties (Refs: #218). ShortcutProperty is a simple child element on Shortcuts which has a key and a value. A simple dictionary object has been added to the Shortcut base class and processed later during compilation to emit child XML on the parent Shortcut.
- Issue #774: Using CommonAppDataFolder in project.AddRegValue(RegValue) generates wrong XML
- Issue #748: error for FirewallException. Added localization sample
- Issue #772: `Extensions.DeleteIfExists` does not delete folders
- Issue #771: default REINSTALLMODE</releaseNotes>
<releaseNotes>Release v1.14.1.0
* Issue #784: WixSharp Managed Setup - Custom UI - FeaturesDialog does not propagate user selection
* Issue #783: Temporary Files Not Deleted After Successful Build</releaseNotes>
<copyright>Copyright (C) 2008-2019 Oleg Shilo</copyright>
<language>en-AU</language>
<tags>C# scripting msi install setup wix</tags>
Expand Down
15 changes: 5 additions & 10 deletions Source/NuGet/WixSharp/WixSharp.lab.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
<metadata>
<id>WixSharp.Lab</id>
<version>1.14.0.0</version>
<version>1.14.1.0</version>
<title>Wix# (WixSharp) - Experimantal features</title>
<authors>Oleg Shilo</authors>
<owners>Oleg Shilo</owners>
Expand All @@ -14,14 +14,9 @@
The package contains the sample code for building a simple MSI with the CLR WinForm dialog inserted into UI sequence between InsallDirDlg and VerifyReadyDlg native MSI dialogs. In order to use this package you need have WiX Toolset installed.
The package is tested against WIX (Windows Installer Xml) Toolset v3.10 (v3.10.2103.0)</description>
<summary>Wix# binaries containing experimental features (e.g. native WiX UI support).</summary>
<releaseNotes>Release v1.14.0.0
- Issue #765: Dynamic localization
- Added WiXUtil ProductSearch element. Used in the same way as the RegistrySearch. The product search is used to determine installation state of other products based on ProductCode or UpgradeCode by Burn bootstrappers. Useful for bypassing the plan phase of redistributable exe packages that may already be on the system.
- Add support for ShortcutProperties (Refs: #218). ShortcutProperty is a simple child element on Shortcuts which has a key and a value. A simple dictionary object has been added to the Shortcut base class and processed later during compilation to emit child XML on the parent Shortcut.
- Issue #774: Using CommonAppDataFolder in project.AddRegValue(RegValue) generates wrong XML
- Issue #748: error for FirewallException. Added localization sample
- Issue #772: `Extensions.DeleteIfExists` does not delete folders
- Issue #771: default REINSTALLMODE</releaseNotes>
<releaseNotes>Release v1.14.1.0
* Issue #784: WixSharp Managed Setup - Custom UI - FeaturesDialog does not propagate user selection
* Issue #783: Temporary Files Not Deleted After Successful Build</releaseNotes>
<copyright>Copyright (C) 2008-2019 Oleg Shilo</copyright>
<language>en-AU</language>
<tags>C# Scripting msi install setup</tags>
Expand All @@ -30,7 +25,7 @@ The package is tested against WIX (Windows Installer Xml) Toolset v3.10 (v3.10.2
<frameworkAssembly assemblyName="System.Drawing" targetFramework="" />
</frameworkAssemblies>
<dependencies>
<dependency id="WixSharp.bin" version="1.14.0.0" />
<dependency id="WixSharp.bin" version="1.14.1.0" />
</dependencies>
</metadata>
<files>
Expand Down
15 changes: 5 additions & 10 deletions Source/NuGet/WixSharp/WixSharp.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
<metadata>
<id>WixSharp</id>
<version>1.14.0.0</version>
<version>1.14.1.0</version>
<title>Wix# (WixSharp) - managed interface for WiX</title>
<authors>Oleg Shilo</authors>
<owners>Oleg Shilo</owners>
Expand All @@ -18,19 +18,14 @@ If you need only Wix# binaries you may want to use WixSharp.bin package instead.
In order to use this package you need have WiX Toolset installed.
The package is tested against WIX (Windows Installer Xml) Toolset v3.10 (v3.10.2103.0)</description>
<summary>Wix# (WixSharp) - Binaries</summary>
<releaseNotes>Release v1.14.0.0
- Issue #765: Dynamic localization
- Added WiXUtil ProductSearch element. Used in the same way as the RegistrySearch. The product search is used to determine installation state of other products based on ProductCode or UpgradeCode by Burn bootstrappers. Useful for bypassing the plan phase of redistributable exe packages that may already be on the system.
- Add support for ShortcutProperties (Refs: #218). ShortcutProperty is a simple child element on Shortcuts which has a key and a value. A simple dictionary object has been added to the Shortcut base class and processed later during compilation to emit child XML on the parent Shortcut.
- Issue #774: Using CommonAppDataFolder in project.AddRegValue(RegValue) generates wrong XML
- Issue #748: error for FirewallException. Added localization sample
- Issue #772: `Extensions.DeleteIfExists` does not delete folders
- Issue #771: default REINSTALLMODE</releaseNotes>
<releaseNotes>Release v1.14.1.0
* Issue #784: WixSharp Managed Setup - Custom UI - FeaturesDialog does not propagate user selection
* Issue #783: Temporary Files Not Deleted After Successful Build</releaseNotes>
<copyright>Copyright (C) 2008-2019 Oleg Shilo</copyright>
<language>en-AU</language>
<tags>C# scripting msi install setup wix</tags>
<dependencies>
<dependency id="WixSharp.bin" version="1.14.0.0" />
<dependency id="WixSharp.bin" version="1.14.1.0" />
</dependencies>
</metadata>
<files>
Expand Down
Binary file modified Source/src/WixSharp.Samples/WixSharp.Lab.dll
Binary file not shown.
Binary file modified Source/src/WixSharp.Samples/WixSharp.Msi.dll
Binary file not shown.
Binary file modified Source/src/WixSharp.Samples/WixSharp.UI.dll
Binary file not shown.
Binary file modified Source/src/WixSharp.Samples/WixSharp.dll
Binary file not shown.
4 changes: 2 additions & 2 deletions Source/src/WixSharp/Properties/AssemblyInfo.version.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@
// Build Number
// Revision
//
[assembly: AssemblyVersion("1.14.0.0")]
[assembly: AssemblyFileVersion("1.14.0.0")]
[assembly: AssemblyVersion("1.14.1.0")]
[assembly: AssemblyFileVersion("1.14.1.0")]

0 comments on commit e612250

Please sign in to comment.