Merge branch 'master' into dotnet-core-upgrade

# Conflicts:
#	src/modules/launcher/Wox.Core/Wox.Core.csproj
This commit is contained in:
Barbara Kudiess
2020-03-27 10:25:39 -07:00
26 changed files with 3 additions and 181 deletions

View File

@@ -2,11 +2,6 @@
{
public static class AllowedLanguage
{
public static string Python
{
get { return "PYTHON"; }
}
public static string CSharp
{
get { return "CSHARP"; }
@@ -19,8 +14,7 @@
public static bool IsAllowed(string language)
{
return language.ToUpper() == Python.ToUpper()
|| language.ToUpper() == CSharp.ToUpper()
return language.ToUpper() == CSharp.ToUpper()
|| language.ToUpper() == Executable.ToUpper();
}
}