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);
}
}
}
}

View File

@@ -134,7 +134,6 @@
<Compile Include="CommandArgs\HideStartCommandArg.cs" />
<Compile Include="CommandArgs\ICommandArg.cs" />
<Compile Include="CommandArgs\InstallPluginCommandArg.cs" />
<Compile Include="CommandArgs\PluginDebuggerCommandArg.cs" />
<Compile Include="CommandArgs\QueryCommandArg.cs" />
<Compile Include="CommandArgs\ReloadPluginCommandArg.cs" />
<Compile Include="Helper\DataWebRequestFactory.cs" />