mirror of
https://github.com/microsoft/PowerToys.git
synced 2025-12-16 11:48:06 +01:00
Add support ClickOnce application
ex. Github for Windows use this file extension
This commit is contained in:
@@ -9,7 +9,7 @@ namespace Wox.Plugin.System.ProgramSources
|
||||
public class FileSystemProgramSource : AbstractProgramSource
|
||||
{
|
||||
public string BaseDirectory;
|
||||
public List<string> Suffixes = new List<string>() { "lnk", "exe" };
|
||||
public List<string> Suffixes = new List<string>() { "lnk", "exe", "appref-ms" };
|
||||
|
||||
public FileSystemProgramSource(string baseDirectory)
|
||||
{
|
||||
|
||||
@@ -18,7 +18,7 @@ namespace Wox
|
||||
private static List<string> selfExts = new List<string>() {
|
||||
".exe", ".lnk",
|
||||
".ani", ".cur",
|
||||
".sln"
|
||||
".sln", ".appref-ms"
|
||||
};
|
||||
|
||||
private static ImageSource GetIcon(string fileName)
|
||||
|
||||
Reference in New Issue
Block a user