Fix for CefSharp.BrowserSubprocess.exe fully qualified path

This commit is contained in:
Christian Wade 2020-03-06 10:53:38 -08:00
parent 038651242e
commit fffd2ed3b9
4 changed files with 4 additions and 2 deletions

View File

@ -58,7 +58,9 @@ namespace AlmToolkit
CefSettings settings = new CefSettings();
// Initialize cef with the provided settings
settings.CefCommandLineArgs.Add("disable-gpu", "1");
settings.BrowserSubprocessPath = @"x86\CefSharp.BrowserSubprocess.exe";
//settings.BrowserSubprocessPath = @"x86\CefSharp.BrowserSubprocess.exe";
settings.BrowserSubprocessPath = string.Format(@"{0}\x86\CefSharp.BrowserSubprocess.exe", Application.StartupPath); ;
Cef.Initialize(settings, performDependencyCheck: false, browserProcessHandler: null);
// Create a browser component

View File

@ -2218,7 +2218,7 @@ namespace BismNormalizer.TabularCompare.TabularMetadata
else
{
int rowCount = Core.Comparison.FindRowCount(_server, table.Name, _database.Name);
message = $"Success. {String.Format("{0:#,###0}", rowCount)} rows transferred.";
message = $"Success. {String.Format("{0:#,###0}", rowCount)} rows.";
}
_parentComparison.OnDeploymentMessage(new DeploymentMessageEventArgs(table.Name, message, DeploymentStatus.Success));
}