File tree Expand file tree Collapse file tree 5 files changed +152
-58
lines changed
Flow.Launcher.Plugin.BrowserBookmark
Flow.Launcher.Plugin.Program Expand file tree Collapse file tree 5 files changed +152
-58
lines changed Original file line number Diff line number Diff line change 3
3
<PropertyGroup >
4
4
<OutputType >Library</OutputType >
5
5
<TargetFramework >net6.0-windows</TargetFramework >
6
- <RuntimeIdentifier >win-x64</RuntimeIdentifier >
7
6
<UseWPF >true</UseWPF >
8
7
<ProjectGuid >{9B130CC5-14FB-41FF-B310-0A95B6894C37}</ProjectGuid >
9
8
<AppDesignerFolder >Properties</AppDesignerFolder >
65
64
<Compile Remove =" Bookmark.cs" />
66
65
</ItemGroup >
67
66
67
+ <Target Name =" CopyDLLs" AfterTargets =" Build" >
68
+ <Message Text =" Executing CopyDLLs task" Importance =" High" />
69
+ <Copy
70
+ SourceFiles =" $(TargetDir)\runtimes\win-x64\native\SQLite.Interop.dll"
71
+ DestinationFolder =" $(TargetDir)\x64" />
72
+ <Copy
73
+ SourceFiles =" $(TargetDir)\runtimes\win-x86\native\SQLite.Interop.dll"
74
+ DestinationFolder =" $(TargetDir)\x86" />
75
+ </Target >
76
+
77
+ <Target Name =" DeleteRuntimesFolder" AfterTargets =" CopyDLLs" >
78
+ <Message Text =" Deleting runtimes folder" Importance =" High" />
79
+ <RemoveDir Directories =" $(TargetDir)\runtimes" />
80
+ </Target >
81
+
68
82
</Project >
Original file line number Diff line number Diff line change 61
61
Insert file suffixes you want to index. Suffixes should be separated by ';'. (ex>bat;py)
62
62
</system : String >
63
63
<system : String x : Key =" flowlauncher_plugin_program_protocol_tooltip" >
64
- Insert protocols of .url files you want to index. Protocols should be separated by ';'. (ex>ftp;netflix )
64
+ Insert protocols of .url files you want to index. Protocols should be separated by ';', and should end with "://" . (ex>ftp://;mailto:// )
65
65
</system : String >
66
66
67
67
<system : String x : Key =" flowlauncher_plugin_program_run_as_different_user" >Run As Different User</system : String >
Original file line number Diff line number Diff line change @@ -102,7 +102,7 @@ public async Task InitAsync(PluginInitContext context)
102
102
await Task . WhenAll ( a , b ) ;
103
103
104
104
Win32 . WatchProgramUpdate ( _settings ) ;
105
- UWP . WatchPackageChange ( ) ;
105
+ _ = UWP . WatchPackageChange ( ) ;
106
106
}
107
107
108
108
public static void IndexWin32Programs ( )
You can’t perform that action at this time.
0 commit comments