Skip to content

Commit

Permalink
Release v1.4.5.0
Browse files Browse the repository at this point in the history
----
* Additional work for Issue #48: WixSharp.Files generation : same folder on different features
* Issue #71: Can`t build Wix# Samples\Shortcuts
* Fixed an error with path to signtool.exe from ClickOnce's SDK
* Issue #74: How to add file into install subdir?
* Issue #75: Passing data via SetupEventArgs.Data to AfterInstall handler
* Fixed typo in `UnescapeKeyValue` implementation
  • Loading branch information
oleg-shilo committed May 26, 2017
1 parent fa3588b commit d1c43f6
Show file tree
Hide file tree
Showing 10 changed files with 19 additions and 4 deletions.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
19 changes: 17 additions & 2 deletions Source/src/WixSharp.Samples/Wix# Samples/Release Folder/setup.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,23 @@ class Script
{
static public void Main(string[] args)
{
}

static void SimpleScenario()
{
var project =
new Project("MyProduct",
new Dir(@"%ProgramFiles%\My Company\My Product",
new Files(@"..\Release Folder\Release\*.*"),
new ExeFileShortcut("Uninstall My Product", "[System64Folder]msiexec.exe", "/x [ProductCode]")));

project.GUID = new Guid("6f330b47-2577-43ad-9095-1561ba25889b");

project.BuildMsi();
}

static void ComplexScenario()
{
var project =
new Project("MyProduct",
new Dir(@"%ProgramFiles%\My Company\My Product",
Expand Down Expand Up @@ -38,6 +54,5 @@ static public void Main(string[] args)
Compiler.PreserveTempFiles = true;
Compiler.EmitRelativePaths = false;
project.BuildMsi();
//project.BuildWxs();
}
}
}
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.4.1")]
[assembly: AssemblyFileVersion("1.4.4.1")]
[assembly: AssemblyVersion("1.4.5.0")]
[assembly: AssemblyFileVersion("1.4.5.0")]

0 comments on commit d1c43f6

Please sign in to comment.