From dc5e7be8b3810510ef2948d38c66a4c98501c229 Mon Sep 17 00:00:00 2001 From: Sean Hall Date: Wed, 5 May 2021 19:01:35 -0500 Subject: Update WixBA to Mba.Core 4.0.35. --- src/WixToolset.WixBA/InstallationViewModel.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/WixToolset.WixBA/InstallationViewModel.cs') 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 { if (this.openLogCommand == null) { - this.openLogCommand = new RelayCommand(param => WixBA.OpenLog(new Uri(WixBA.Model.Engine.StringVariables["WixBundleLog"]))); + this.openLogCommand = new RelayCommand(param => WixBA.OpenLog(new Uri(WixBA.Model.Engine.GetVariableString("WixBundleLog")))); } return this.openLogCommand; } @@ -341,7 +341,7 @@ namespace WixToolset.WixBA { if (this.openLogFolderCommand == null) { - string logFolder = IO.Path.GetDirectoryName(WixBA.Model.Engine.StringVariables["WixBundleLog"]); + string logFolder = IO.Path.GetDirectoryName(WixBA.Model.Engine.GetVariableString("WixBundleLog")); this.openLogFolderCommand = new RelayCommand(param => WixBA.OpenLogFolder(logFolder)); } return this.openLogFolderCommand; -- cgit v1.2.3-55-g6feb