diff --git a/Wox.Plugin.System/ProgramSources/FileSystemProgramSource.cs b/Wox.Plugin.System/ProgramSources/FileSystemProgramSource.cs index 57440ed1f..07b6d8a6a 100644 --- a/Wox.Plugin.System/ProgramSources/FileSystemProgramSource.cs +++ b/Wox.Plugin.System/ProgramSources/FileSystemProgramSource.cs @@ -9,7 +9,7 @@ namespace Wox.Plugin.System.ProgramSources public class FileSystemProgramSource : AbstractProgramSource { public string BaseDirectory; - public List Suffixes = new List() { "lnk", "exe" }; + public List Suffixes = new List() { "lnk", "exe", "appref-ms" }; public FileSystemProgramSource(string baseDirectory) { diff --git a/Wox/ImagePathConverter.cs b/Wox/ImagePathConverter.cs index 0879cf78a..c6122869b 100644 --- a/Wox/ImagePathConverter.cs +++ b/Wox/ImagePathConverter.cs @@ -18,7 +18,7 @@ namespace Wox private static List selfExts = new List() { ".exe", ".lnk", ".ani", ".cur", - ".sln" + ".sln", ".appref-ms" }; private static ImageSource GetIcon(string fileName)