Skip to content

Commit

Permalink
Release v1.6.5.0
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
oleg-shilo committed May 26, 2018
1 parent 49ead4e commit 6d3d0a0
Show file tree
Hide file tree
Showing 6 changed files with 25 additions and 2 deletions.
23 changes: 23 additions & 0 deletions Source/src/WixSharp.Samples/Support/testpad/setup.cs
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,28 @@ static void prepare_dirs(string root)
}
}

static void Issue_374()
{
string inDir = @"C:\temp\wixIn\";
string outDir = @"C:\temp\wixOut\";
string file = @"C:\temp\wixIn\MyApp.exe";
file = "setup.cs";

var project = new Project("TestMsi")
{
GUID = Guid.NewGuid(),
PreserveTempFiles = true,
OutDir = outDir,
UI = WUI.WixUI_ProgressOnly,
Dirs = new[]
{
new Dir(@"temp", new Dir(@"wixIn", new WixSharp.File(file, new FileShortcut("MyShortcut", inDir))))
}
};

Compiler.BuildMsi(project);
}

static void Issue_354()
{
var mainFeature = new Feature("My Product", true, false);
Expand Down Expand Up @@ -110,6 +132,7 @@ static void Issue_298b()

static public void Main(string[] args)
{
Issue_374(); return;
Issue_354(); return;
Issue_298(); return;
// Compiler.AutoGeneration.LegacyDefaultIdAlgorithm = true;
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.6.4.3")]
[assembly: AssemblyFileVersion("1.6.4.3")]
[assembly: AssemblyVersion("1.6.5.0")]
[assembly: AssemblyFileVersion("1.6.5.0")]

0 comments on commit 6d3d0a0

Please sign in to comment.