mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
Add support ClickOnce application
ex. Github for Windows use this file extension
This commit is contained in:
parent
eb094eaebb
commit
dbdd6c701b
2 changed files with 2 additions and 2 deletions
|
|
@ -9,7 +9,7 @@ namespace Wox.Plugin.System.ProgramSources
|
||||||
public class FileSystemProgramSource : AbstractProgramSource
|
public class FileSystemProgramSource : AbstractProgramSource
|
||||||
{
|
{
|
||||||
public string BaseDirectory;
|
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)
|
public FileSystemProgramSource(string baseDirectory)
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -18,7 +18,7 @@ namespace Wox
|
||||||
private static List<string> selfExts = new List<string>() {
|
private static List<string> selfExts = new List<string>() {
|
||||||
".exe", ".lnk",
|
".exe", ".lnk",
|
||||||
".ani", ".cur",
|
".ani", ".cur",
|
||||||
".sln"
|
".sln", ".appref-ms"
|
||||||
};
|
};
|
||||||
|
|
||||||
private static ImageSource GetIcon(string fileName)
|
private static ImageSource GetIcon(string fileName)
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue