Remove all obsolete methods

This commit is contained in:
qianlifeng
2015-01-24 22:42:06 +08:00
parent 929cc2727d
commit ddf6154600
2 changed files with 0 additions and 88 deletions

View File

@@ -9,18 +9,6 @@ namespace Wox.Plugin
{
public class PluginMetadata
{
private int configVersion = 1;
/// <summary>
/// if we need to change the plugin config in the futher, use this to
/// indicate config version
/// </summary>
[Obsolete]
public int ConfigVersion
{
get { return configVersion; }
set { configVersion = value; }
}
public string ID { get; set; }
public string Name { get; set; }
public string Author { get; set; }
@@ -38,12 +26,6 @@ namespace Wox.Plugin
public string ExecuteFileName { get; set; }
public string PluginDirectory { get; set; }
[Obsolete("This property has been obsoleted, use PluginDirectory instead")]
public string PluginDirecotry
{
get { return PluginDirectory; }
}
public string ActionKeyword { get; set; }
public PluginType PluginType { get; set; }