Remove PluginDebugger

This commit is contained in:
bao-qian
2015-10-31 18:20:43 +00:00
parent 9d9400f4d9
commit 1616aa87bd
4 changed files with 1 additions and 36 deletions

View File

@@ -1,22 +0,0 @@
using System.Collections.Generic;
using Wox.Core.Plugin;
namespace Wox.CommandArgs
{
public class PluginDebuggerCommandArg : ICommandArg
{
public string Command
{
get { return "plugindebugger"; }
}
public void Execute(IList<string> args)
{
if (args.Count > 0)
{
var pluginFolderPath = args[0];
PluginManager.ActivatePluginDebugger(pluginFolderPath);
}
}
}
}