Skip to content

Commit

Permalink
Release v1.4.4.0
Browse files Browse the repository at this point in the history
* Issue #56: Install Dir Problem
* Issue #58: Signtool could not be found on Win10
* Improved Compiler.BuildPackageAsmCmd(...)
* Added InstallDir_DynamicPath sample
* Issue #56: Escaping "minus" `-` character in folder names
  • Loading branch information
oleg-shilo committed May 2, 2017
1 parent 186be96 commit a4660a6
Show file tree
Hide file tree
Showing 7 changed files with 16 additions and 19 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,24 +10,13 @@ class Script
static public void Main()
{
var project = new ManagedProject("MyProduct",
new Dir(new Id("ACTUAL_INSTALLDIR"), @"%ProgramFiles%\My Company\My Product", new File("setup.cs")),
new Dir(new Id("ACTUAL_TARGETDIR1"), @"%DesktopFolder%\My Company\My Product2", new Files(@"files\*.*"))
//new Dir(@"C:\MyCompany2", new File("setup.cs")),
//new Dir(@"C:\MyCompany\MyProduct",
// new Files(@"files\*.*"))
);
new Dir(@"C:\MyCompany2", new File("setup.cs")),
new Dir(@"C:\MyCompany\MyProduct",
new Files(@"files\*.*")));

project.UI = WUI.WixUI_ProgressOnly;

project.Load += Project_Load;

Compiler.PreserveTempFiles = true;
Compiler.BuildMsi(project);
}

static void Project_Load(SetupEventArgs e)
{
e.Session["ACTUAL_INSTALLDIR"] = @"C:\My_Company2";
e.Session["ACTUAL_TARGETDIR1"] = @"C:\My_Company\MyProduct";
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,10 @@ class Script
{
static public void Main()
{
var project = new ManagedProject("MyProduct",
new Dir(new Id("DIR1"), "root1", new File("setup.cs")),
new Dir(new Id("DIR2"), "root2", new Files(@"files\*.*")));
var project =
new ManagedProject("MyProduct",
new Dir(new Id("DIR1"), "root1", new File("setup.cs")),
new Dir(new Id("DIR2"), "root2", new Files(@"files\*.*")));

project.UI = WUI.WixUI_ProgressOnly;
project.Load += Project_Load;
Expand Down
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.
7 changes: 7 additions & 0 deletions Source/src/WixSharp.Samples/WixSharp.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4081,6 +4081,13 @@
<param name="defaultValue">The default value.</param>
<returns></returns>
</member>
<member name="M:WixSharp.Extensions.ToId(System.String)">
<summary>
Converts string to <see cref="T:WixSharp.Id"/>.
</summary>
<param name="obj">Id string value.</param>
<returns></returns>
</member>
<member name="M:WixSharp.Extensions.ToPublicString(System.Exception)">
<summary>
Returns Exception.ToString result containing no debug information.
Expand Down
4 changes: 2 additions & 2 deletions Source/src/WixSharp/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,5 @@
// Build Number
// Revision
//
[assembly: AssemblyVersion("1.4.3.1")]
[assembly: AssemblyFileVersion("1.4.3.1")]
[assembly: AssemblyVersion("1.4.4.0")]
[assembly: AssemblyFileVersion("1.4.4.0")]

0 comments on commit a4660a6

Please sign in to comment.