Skip to content

Commit d1c43f6

Browse files
committed
Release v1.4.5.0
---- * 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
1 parent fa3588b commit d1c43f6

10 files changed

Lines changed: 19 additions & 4 deletions

File tree

Binary file not shown.
Binary file not shown.

Source/src/WixSharp.Samples/Wix# Samples/Release Folder/setup.cs

Lines changed: 17 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,23 @@ class Script
99
{
1010
static public void Main(string[] args)
1111
{
12+
}
13+
14+
static void SimpleScenario()
15+
{
16+
var project =
17+
new Project("MyProduct",
18+
new Dir(@"%ProgramFiles%\My Company\My Product",
19+
new Files(@"..\Release Folder\Release\*.*"),
20+
new ExeFileShortcut("Uninstall My Product", "[System64Folder]msiexec.exe", "/x [ProductCode]")));
21+
22+
project.GUID = new Guid("6f330b47-2577-43ad-9095-1561ba25889b");
1223

24+
project.BuildMsi();
25+
}
26+
27+
static void ComplexScenario()
28+
{
1329
var project =
1430
new Project("MyProduct",
1531
new Dir(@"%ProgramFiles%\My Company\My Product",
@@ -38,6 +54,5 @@ static public void Main(string[] args)
3854
Compiler.PreserveTempFiles = true;
3955
Compiler.EmitRelativePaths = false;
4056
project.BuildMsi();
41-
//project.BuildWxs();
4257
}
43-
}
58+
}
0 Bytes
Binary file not shown.
-1.5 KB
Binary file not shown.
-4.5 KB
Binary file not shown.
-19.5 KB
Binary file not shown.

Source/src/WixSharp/Properties/AssemblyInfo.version.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@
77
// Build Number
88
// Revision
99
//
10-
[assembly: AssemblyVersion("1.4.4.1")]
11-
[assembly: AssemblyFileVersion("1.4.4.1")]
10+
[assembly: AssemblyVersion("1.4.5.0")]
11+
[assembly: AssemblyFileVersion("1.4.5.0")]

0 commit comments

Comments
 (0)