Skip to content

Commit 6d3d0a0

Browse files
committed
Release v1.6.5.0
Accumulative fixes and minor improvements. ----- v1.6.5.0 - Added session extension `e.Session.GetMainWindow()` for properly displaying message box from CAs - Updated all sample projects to target v4.6.1 runtime - Issue #373: Bootstrapper.DigitalSignature.Apply hide console output - Issue #372: MsiFile location v1.6.4.3 - Issue #354: Adding an InternetShortcuts throw NullReferenceException - Assorted internal fixes (XML docs etc.) - All compatible `IGenericEntity.Process(ProcessingContext)` cases moved to `WixEntity.CreateAndInsertParentComponent` v1.6.4.2 * Issue #344: Duplicate symbol 'Directory:ProgramFilesFolder' found v1.6.4.1 * Updated all IGenericEntity implementations to support 'no-directory' deployments * Removed all references to the obsolete `IncludeWixExtension` * Implemented clean algorithm for handling no-dir scenarios without resorting to the `%ProgramFiles%\WixSharp\DummyDir`. Algorithm is controlled by `AutoElements.LagacyDummyDirAlgorithm` * Issue #341: UAC Text is not localized * Implemented adding custom error description of he ManagedUI.ExitDialog depending on the Install error or cancellation.
1 parent 49ead4e commit 6d3d0a0

6 files changed

Lines changed: 25 additions & 2 deletions

File tree

Source/src/WixSharp.Samples/Support/testpad/setup.cs

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,28 @@ static void prepare_dirs(string root)
4444
}
4545
}
4646

47+
static void Issue_374()
48+
{
49+
string inDir = @"C:\temp\wixIn\";
50+
string outDir = @"C:\temp\wixOut\";
51+
string file = @"C:\temp\wixIn\MyApp.exe";
52+
file = "setup.cs";
53+
54+
var project = new Project("TestMsi")
55+
{
56+
GUID = Guid.NewGuid(),
57+
PreserveTempFiles = true,
58+
OutDir = outDir,
59+
UI = WUI.WixUI_ProgressOnly,
60+
Dirs = new[]
61+
{
62+
new Dir(@"temp", new Dir(@"wixIn", new WixSharp.File(file, new FileShortcut("MyShortcut", inDir))))
63+
}
64+
};
65+
66+
Compiler.BuildMsi(project);
67+
}
68+
4769
static void Issue_354()
4870
{
4971
var mainFeature = new Feature("My Product", true, false);
@@ -110,6 +132,7 @@ static void Issue_298b()
110132

111133
static public void Main(string[] args)
112134
{
135+
Issue_374(); return;
113136
Issue_354(); return;
114137
Issue_298(); return;
115138
// Compiler.AutoGeneration.LegacyDefaultIdAlgorithm = true;
0 Bytes
Binary file not shown.
-2 KB
Binary file not shown.
-6 KB
Binary file not shown.
-22.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.6.4.3")]
11-
[assembly: AssemblyFileVersion("1.6.4.3")]
10+
[assembly: AssemblyVersion("1.6.5.0")]
11+
[assembly: AssemblyFileVersion("1.6.5.0")]

0 commit comments

Comments
 (0)