Skip to content

Commit

Permalink
Release v1.18.2.0-pre
Browse files Browse the repository at this point in the history
- Add missing Version element to ComRegistration (Class element) and add extra validation
- Fix COM registration output
  • Loading branch information
oleg.shilo authored and oleg.shilo committed Aug 22, 2021
1 parent 9336f90 commit 7fb7b1b
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 73 deletions.
23 changes: 5 additions & 18 deletions Source/NuGet/WixSharp/WixSharp.WPF.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.WPF</id>
<version>1.18.1.0</version>
<version>1.18.2.0</version>
<title>Wix# (WixSharp) - Binaries</title>
<authors>Oleg Shilo</authors>
<owners>Oleg Shilo</owners>
Expand All @@ -16,28 +16,15 @@ 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.18.1.0
<releaseNotes>Release v1.18.2.0

* Added full UI for uninstalling from control panel. The feature can be enabled via `project.EnableUninstallFullUI(...)`
* Nsis Bootstrapper
- Added support for Nsis Bootstrapper compression.
- Added sample `BuildScriptWithCompressor` (Samples/Bootstrapper/NsisBootstrapper/setup.cs)
* Issue #1025: Add generated children of TypeLib to element
* Issue #1014: Modify MS Build task to include configuration and platform parameters
* Added support for `WixStandardBootstrapperApplication.HyperlinkSidebarLicense`.
* Issue #1023: Copy File Not working; Fixed misspelled field name
* Introduce logging options for UninstallFullUI feature
* Issue #1005: Request: Arm64 support
* Issue #1001: Fix null reference exception if SDK is located inside the wixlocation…
* Issue #999: Multiple windows services to single .exe
* Issue #995: IgnoreWildCardEmptyDirectories with 1.17.0 causes Wxs generation to never finish with multiple top-level dirs
* Fixed: Respect TargetFileName on OverwriteOnInstall option
</releaseNotes>
- Add missing Version element to ComRegistration (Class element) and add extra validation
- Fix COM registration output</releaseNotes>
<copyright>Copyright (C) 2008-2021 Oleg Shilo</copyright>
<language>en-AU</language>
<tags>C# scripting msi install setup wix</tags>
<dependencies>
<dependency id="WixSharp.bin" version="1.18.1.0" />
<dependency id="WixSharp.bin" version="1.18.2.0" />
<dependency id="Caliburn.Micro" version="3.2.0" />
</dependencies>
<references>
Expand Down
21 changes: 4 additions & 17 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.18.1.0</version>
<version>1.18.2.0</version>
<title>Wix# (WixSharp) - Binaries</title>
<authors>Oleg Shilo</authors>
<owners>Oleg Shilo</owners>
Expand All @@ -16,23 +16,10 @@ 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.18.1.0
<releaseNotes>Release v1.18.2.0

* Added full UI for uninstalling from control panel. The feature can be enabled via `project.EnableUninstallFullUI(...)`
* Nsis Bootstrapper
- Added support for Nsis Bootstrapper compression.
- Added sample `BuildScriptWithCompressor` (Samples/Bootstrapper/NsisBootstrapper/setup.cs)
* Issue #1025: Add generated children of TypeLib to element
* Issue #1014: Modify MS Build task to include configuration and platform parameters
* Added support for `WixStandardBootstrapperApplication.HyperlinkSidebarLicense`.
* Issue #1023: Copy File Not working; Fixed misspelled field name
* Introduce logging options for UninstallFullUI feature
* Issue #1005: Request: Arm64 support
* Issue #1001: Fix null reference exception if SDK is located inside the wixlocation…
* Issue #999: Multiple windows services to single .exe
* Issue #995: IgnoreWildCardEmptyDirectories with 1.17.0 causes Wxs generation to never finish with multiple top-level dirs
* Fixed: Respect TargetFileName on OverwriteOnInstall option
</releaseNotes>
- Add missing Version element to ComRegistration (Class element) and add extra validation
- Fix COM registration output</releaseNotes>
<copyright>Copyright (C) 2008-2021 Oleg Shilo</copyright>
<language>en-AU</language>
<tags>C# scripting msi install setup wix</tags>
Expand Down
23 changes: 5 additions & 18 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.18.1.0</version>
<version>1.18.2.0</version>
<title>Wix# (WixSharp) - Experimantal features</title>
<authors>Oleg Shilo</authors>
<owners>Oleg Shilo</owners>
Expand All @@ -14,23 +14,10 @@
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.18.1.0
<releaseNotes>Release v1.18.2.0

* Added full UI for uninstalling from control panel. The feature can be enabled via `project.EnableUninstallFullUI(...)`
* Nsis Bootstrapper
- Added support for Nsis Bootstrapper compression.
- Added sample `BuildScriptWithCompressor` (Samples/Bootstrapper/NsisBootstrapper/setup.cs)
* Issue #1025: Add generated children of TypeLib to element
* Issue #1014: Modify MS Build task to include configuration and platform parameters
* Added support for `WixStandardBootstrapperApplication.HyperlinkSidebarLicense`.
* Issue #1023: Copy File Not working; Fixed misspelled field name
* Introduce logging options for UninstallFullUI feature
* Issue #1005: Request: Arm64 support
* Issue #1001: Fix null reference exception if SDK is located inside the wixlocation…
* Issue #999: Multiple windows services to single .exe
* Issue #995: IgnoreWildCardEmptyDirectories with 1.17.0 causes Wxs generation to never finish with multiple top-level dirs
* Fixed: Respect TargetFileName on OverwriteOnInstall option
</releaseNotes>
- Add missing Version element to ComRegistration (Class element) and add extra validation
- Fix COM registration output</releaseNotes>
<copyright>Copyright (C) 2008-2021 Oleg Shilo</copyright>
<language>en-AU</language>
<tags>C# Scripting msi install setup</tags>
Expand All @@ -39,7 +26,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.18.1.0" />
<dependency id="WixSharp.bin" version="1.18.2.0" />
</dependencies>
</metadata>
<files>
Expand Down
23 changes: 5 additions & 18 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.18.1.0</version>
<version>1.18.2.0</version>
<title>Wix# (WixSharp) - managed interface for WiX</title>
<authors>Oleg Shilo</authors>
<owners>Oleg Shilo</owners>
Expand All @@ -18,28 +18,15 @@ 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.18.1.0
<releaseNotes>Release v1.18.2.0

* Added full UI for uninstalling from control panel. The feature can be enabled via `project.EnableUninstallFullUI(...)`
* Nsis Bootstrapper
- Added support for Nsis Bootstrapper compression.
- Added sample `BuildScriptWithCompressor` (Samples/Bootstrapper/NsisBootstrapper/setup.cs)
* Issue #1025: Add generated children of TypeLib to element
* Issue #1014: Modify MS Build task to include configuration and platform parameters
* Added support for `WixStandardBootstrapperApplication.HyperlinkSidebarLicense`.
* Issue #1023: Copy File Not working; Fixed misspelled field name
* Introduce logging options for UninstallFullUI feature
* Issue #1005: Request: Arm64 support
* Issue #1001: Fix null reference exception if SDK is located inside the wixlocation…
* Issue #999: Multiple windows services to single .exe
* Issue #995: IgnoreWildCardEmptyDirectories with 1.17.0 causes Wxs generation to never finish with multiple top-level dirs
* Fixed: Respect TargetFileName on OverwriteOnInstall option
</releaseNotes>
- Add missing Version element to ComRegistration (Class element) and add extra validation
- Fix COM registration output</releaseNotes>
<copyright>Copyright (C) 2008-2021 Oleg Shilo</copyright>
<language>en-AU</language>
<tags>C# scripting msi install setup wix</tags>
<dependencies>
<dependency id="WixSharp.bin" version="1.18.1.0" />
<dependency id="WixSharp.bin" version="1.18.2.0" />
</dependencies>
</metadata>
<files>
Expand Down
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.18.1.0")]
[assembly: AssemblyFileVersion("1.18.1.0")]
[assembly: AssemblyVersion("1.18.2.0")]
[assembly: AssemblyFileVersion("1.18.2.0")]

0 comments on commit 7fb7b1b

Please sign in to comment.