diff --git a/src/modules/launcher/Wox.Core/Plugin/QueryBuilder.cs b/src/modules/launcher/Wox.Core/Plugin/QueryBuilder.cs index 114c3bc9c4..7a6f6af455 100644 --- a/src/modules/launcher/Wox.Core/Plugin/QueryBuilder.cs +++ b/src/modules/launcher/Wox.Core/Plugin/QueryBuilder.cs @@ -43,10 +43,6 @@ namespace Wox.Core.Plugin RawQuery = rawQuery, ActionKeyword = actionKeyword, Search = search, - - // Obsolete value initialisation - ActionName = actionKeyword, - ActionParameters = actionParameters, }; return query; diff --git a/src/modules/launcher/Wox.Core/Wox.Core.csproj b/src/modules/launcher/Wox.Core/Wox.Core.csproj index 1fa6012071..c90d55bf52 100644 --- a/src/modules/launcher/Wox.Core/Wox.Core.csproj +++ b/src/modules/launcher/Wox.Core/Wox.Core.csproj @@ -39,7 +39,13 @@ MinimumRecommendedRules.ruleset 4 + + true + + + true + diff --git a/src/modules/launcher/Wox.Plugin/Query.cs b/src/modules/launcher/Wox.Plugin/Query.cs index 1d89a81dd2..af6adb8e13 100644 --- a/src/modules/launcher/Wox.Plugin/Query.cs +++ b/src/modules/launcher/Wox.Plugin/Query.cs @@ -103,12 +103,6 @@ namespace Wox.Plugin public override string ToString() => RawQuery; - [Obsolete("Use ActionKeyword, this property will be removed in v1.3.0")] - public string ActionName { get; internal set; } - - [Obsolete("Use Search instead, this property will be removed in v1.3.0")] - public List ActionParameters { get; internal set; } - [Obsolete("Use Search instead, this method will be removed in v1.3.0")] public string GetAllRemainingParameter() => Search; }