mirror of
https://github.com/microsoft/PowerToys.git
synced 2025-01-18 14:41:21 +08:00
Fix plugin API issues.
This commit is contained in:
parent
3144a54c5b
commit
0e5155c85a
@ -36,6 +36,13 @@ 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; }
|
||||
|
||||
|
4
Wox.sln
4
Wox.sln
@ -1,6 +1,8 @@
|
||||
|
||||
Microsoft Visual Studio Solution File, Format Version 12.00
|
||||
# Visual Studio 2012
|
||||
# Visual Studio 2013
|
||||
VisualStudioVersion = 12.0.21005.1
|
||||
MinimumVisualStudioVersion = 10.0.40219.1
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Wox.Test", "Wox.Test\Wox.Test.csproj", "{FF742965-9A80-41A5-B042-D6C7D3A21708}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Wox.Plugin", "Wox.Plugin\Wox.Plugin.csproj", "{8451ECDD-2EA4-4966-BB0A-7BBC40138E80}"
|
||||
|
Loading…
Reference in New Issue
Block a user