Skip to content

Commit 5c20c7e

Browse files
committed
Add default values to DependencyChecker.AssertAllDependenciesPresent - make it easier to execute stand alone
1 parent 29e0167 commit 5c20c7e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

CefSharp/DependencyChecker.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ private static List<string> CheckDependencyList(string dir, IEnumerable<string>
178178
/// <param name="packLoadingDisabled">Is loading of pack files disabled?</param>
179179
/// <param name="browserSubProcessPath">The path to a separate executable that will be launched for sub-processes.</param>
180180
/// <exception cref="Exception">Throw when not all dependencies are present</exception>
181-
public static void AssertAllDependenciesPresent(string locale, string localesDirPath, string resourcesDirPath, bool packLoadingDisabled, string browserSubProcessPath)
181+
public static void AssertAllDependenciesPresent(string locale = null, string localesDirPath = null, string resourcesDirPath = null, bool packLoadingDisabled = false, string browserSubProcessPath = "CefSharp.BrowserSubProcess.exe")
182182
{
183183
var executingAssembly = Assembly.GetExecutingAssembly();
184184

0 commit comments

Comments
 (0)