Skip to content

Commit

Permalink
- Issue #1162: WPF installDir dialog is ignoring selectedfolder
Browse files Browse the repository at this point in the history
  • Loading branch information
oleg-shilo committed May 13, 2022
1 parent e5b099c commit 6b9b6e3
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 6 deletions.
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,11 @@ public string InstallDirPath
return null;
}

set => session[installDirProperty] = value;
set
{
session[installDirProperty] = value;
base.NotifyOfPropertyChange(() => InstallDirPath);
}
}

public void ChangeInstallDir()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,5 +29,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.14.4.0")]
[assembly: AssemblyFileVersion("1.14.4.0")]
[assembly: AssemblyVersion("1.17.1.0")]
[assembly: AssemblyFileVersion("1.17.1.0")]
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<PackageManifest Version="2.0.0" xmlns="http://schemas.microsoft.com/developer/vsx-schema/2011" xmlns:d="http://schemas.microsoft.com/developer/vsx-schema-design/2011">
<Metadata>
<Identity Id="WixSharp Visual Studio project templetes" Version="1.17.0" Language="en-US" Publisher="Oleg Shilo" />
<Identity Id="WixSharp Visual Studio project templetes" Version="1.17.1" Language="en-US" Publisher="Oleg Shilo" />
<DisplayName>WixSharp Project Templates</DisplayName>
<Description xml:space="preserve">A WixSharp project templates for WiX/MSI setup (C#).
Compatibility: Wix# v1.6.4.0 and higher</Description>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,11 @@ public string InstallDirPath
return null;
}

set => session[installDirProperty] = value;
set
{
session[installDirProperty] = value;
base.NotifyOfPropertyChange(() => InstallDirPath);
}
}

public void ChangeInstallDir()
Expand Down
6 changes: 5 additions & 1 deletion Source/src/WixSharp.UI.WPF/Dialogs/InstallDirDialog.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,11 @@ public string InstallDirPath
return null;
}

set => session[installDirProperty] = value;
set
{
session[installDirProperty] = value;
base.NotifyOfPropertyChange(() => InstallDirPath);
}
}

public void ChangeInstallDir()
Expand Down

0 comments on commit 6b9b6e3

Please sign in to comment.