Refactoring. Move plugin related work to Wox.Core

This commit is contained in:
qianlifeng
2014-12-28 15:17:58 +08:00
parent d9b2863382
commit 890397bae7
14 changed files with 49 additions and 36 deletions

View File

@@ -6,7 +6,6 @@ using System.Reflection;
using System.Threading;
using System.Windows.Forms;
using Newtonsoft.Json;
using Wox.Infrastructure.Exceptions;
using Wox.Infrastructure.Logger;
using Wox.Plugin;
@@ -73,7 +72,7 @@ namespace Wox.Core.Plugin
}
return results;
}
catch (Exception e)
catch (System.Exception e)
{
Log.Error(e.Message);
}
@@ -90,7 +89,7 @@ namespace Wox.Core.Plugin
{
methodInfo.Invoke(PluginManager.API, parameters);
}
catch (Exception)
catch (System.Exception)
{
#if (DEBUG)
{