Add overload and update version

This commit is contained in:
2014-09-16 09:42:05 -04:00
parent 783152f7dc
commit 5454196518
2 changed files with 6 additions and 1 deletions

View File

@@ -65,6 +65,11 @@ namespace Common.Internet
return true; return true;
} }
public static Dictionary<string, Browser> DetectInstalledBrowsers()
{
return DetectInstalledBrowsers(false, false);
}
public static Dictionary<string, Browser> DetectInstalledBrowsers(bool loadImages, bool includeUseSystemDefault) public static Dictionary<string, Browser> DetectInstalledBrowsers(bool loadImages, bool includeUseSystemDefault)
{ {
var browsers = new Dictionary<string, Browser>(); var browsers = new Dictionary<string, Browser>();

View File

@@ -27,5 +27,5 @@ using System.Runtime.CompilerServices;
// //
// You can specify all the values or you can default the Revision and Build Numbers // You can specify all the values or you can default the Revision and Build Numbers
// by using the '*' as shown below: // by using the '*' as shown below:
[assembly: AssemblyVersion("1.0.174.0")] [assembly: AssemblyVersion("1.0.178.0")]
[assembly: CLSCompliant(true)] [assembly: CLSCompliant(true)]