Fix for CefSharp.BrowserSubprocess.exe fully qualified path
This commit is contained in:
parent
038651242e
commit
fffd2ed3b9
@ -58,7 +58,9 @@ namespace AlmToolkit
|
|||||||
CefSettings settings = new CefSettings();
|
CefSettings settings = new CefSettings();
|
||||||
// Initialize cef with the provided settings
|
// Initialize cef with the provided settings
|
||||||
settings.CefCommandLineArgs.Add("disable-gpu", "1");
|
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);
|
Cef.Initialize(settings, performDependencyCheck: false, browserProcessHandler: null);
|
||||||
// Create a browser component
|
// Create a browser component
|
||||||
|
Binary file not shown.
Binary file not shown.
@ -2218,7 +2218,7 @@ namespace BismNormalizer.TabularCompare.TabularMetadata
|
|||||||
else
|
else
|
||||||
{
|
{
|
||||||
int rowCount = Core.Comparison.FindRowCount(_server, table.Name, _database.Name);
|
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));
|
_parentComparison.OnDeploymentMessage(new DeploymentMessageEventArgs(table.Name, message, DeploymentStatus.Success));
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user