Skip to content

Commit

Permalink
Release v1.4.7.0
Browse files Browse the repository at this point in the history
----
* Issue #111: Display attribute & Reset link doesn't work in FeaturesDialog window
* Issue #107: ManagedBootstrapperApplication Payloads
* issue #108: [ManagedUI] feature checkbox can be unchecked when allowChange is false
* Issue #109: [ManagedUI] backgroup image dimensions
* Issue #103: Compiler.WixLocation, WixSharp.wix.bin and new csproj format in Visual Studio 2017
* Issue #99: Working with embedded WPF UI and MSI; Updated code sample.
* Issue #102: Update nuget package WixSharp.bin to include WIX (Windows Installer Xml) Toolset v3.11
* Migration of WiX Toolset from v3.10.3 (v3.10.3007.0) to v3.11.0 (v3.11.1701.0)
  • Loading branch information
oleg-shilo committed Aug 2, 2017
1 parent 852dd8f commit d660e17
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,12 @@ static Script()

static public void Main()
{
var binaries = new Feature("Binaries", "Product binaries", true, false) { Display = FeatureDisplay.expand };
var binaries = new Feature("Binaries", "Product binaries", true, false);
var docs = new Feature("Documentation", "Product documentation (manuals and user guides)", true) { Display = FeatureDisplay.expand };
var tuts = new Feature("Tutorials", "Product tutorials", false) { Display = FeatureDisplay.expand };
var manuals = new Feature("Manuals", "Product Manuals", false) { Display = FeatureDisplay.expand };
var user_manuals = new Feature("User Manuals", "User Manuals", false) { Display = FeatureDisplay.expand };
var dev_manuals = new Feature("Developer Manuals", "Developer Manuals", false) { Display = FeatureDisplay.expand };
var user_manuals = new Feature("User Manuals", "User Manuals", false);
var dev_manuals = new Feature("Developer Manuals", "Developer Manuals", false);

docs.Children.Add(tuts);
tuts.Children.Add(manuals);
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.4.6.2")]
[assembly: AssemblyFileVersion("1.4.6.2")]
[assembly: AssemblyVersion("1.4.7.0")]
[assembly: AssemblyFileVersion("1.4.7.0")]

0 comments on commit d660e17

Please sign in to comment.