diff options
| author | Sean Hall <r.sean.hall@gmail.com> | 2021-05-05 19:01:35 -0500 |
|---|---|---|
| committer | Sean Hall <r.sean.hall@gmail.com> | 2021-05-11 19:11:19 -0500 |
| commit | dc5e7be8b3810510ef2948d38c66a4c98501c229 (patch) | |
| tree | e5e40aac54f1f7289cc602d542abae81e27ff9d3 /src/WixToolset.WixBA/InstallationViewModel.cs | |
| parent | 42170f18cf21e6ac018b264f88eab104eacfe6ab (diff) | |
| download | wix-dc5e7be8b3810510ef2948d38c66a4c98501c229.tar.gz wix-dc5e7be8b3810510ef2948d38c66a4c98501c229.tar.bz2 wix-dc5e7be8b3810510ef2948d38c66a4c98501c229.zip | |
Update WixBA to Mba.Core 4.0.35.
Diffstat (limited to 'src/WixToolset.WixBA/InstallationViewModel.cs')
| -rw-r--r-- | src/WixToolset.WixBA/InstallationViewModel.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/WixToolset.WixBA/InstallationViewModel.cs b/src/WixToolset.WixBA/InstallationViewModel.cs index 1ccb2485..c7b736ff 100644 --- a/src/WixToolset.WixBA/InstallationViewModel.cs +++ b/src/WixToolset.WixBA/InstallationViewModel.cs | |||
| @@ -329,7 +329,7 @@ namespace WixToolset.WixBA | |||
| 329 | { | 329 | { |
| 330 | if (this.openLogCommand == null) | 330 | if (this.openLogCommand == null) |
| 331 | { | 331 | { |
| 332 | this.openLogCommand = new RelayCommand(param => WixBA.OpenLog(new Uri(WixBA.Model.Engine.StringVariables["WixBundleLog"]))); | 332 | this.openLogCommand = new RelayCommand(param => WixBA.OpenLog(new Uri(WixBA.Model.Engine.GetVariableString("WixBundleLog")))); |
| 333 | } | 333 | } |
| 334 | return this.openLogCommand; | 334 | return this.openLogCommand; |
| 335 | } | 335 | } |
| @@ -341,7 +341,7 @@ namespace WixToolset.WixBA | |||
| 341 | { | 341 | { |
| 342 | if (this.openLogFolderCommand == null) | 342 | if (this.openLogFolderCommand == null) |
| 343 | { | 343 | { |
| 344 | string logFolder = IO.Path.GetDirectoryName(WixBA.Model.Engine.StringVariables["WixBundleLog"]); | 344 | string logFolder = IO.Path.GetDirectoryName(WixBA.Model.Engine.GetVariableString("WixBundleLog")); |
| 345 | this.openLogFolderCommand = new RelayCommand(param => WixBA.OpenLogFolder(logFolder)); | 345 | this.openLogFolderCommand = new RelayCommand(param => WixBA.OpenLogFolder(logFolder)); |
| 346 | } | 346 | } |
| 347 | return this.openLogFolderCommand; | 347 | return this.openLogFolderCommand; |
