Merge pull request #29 from Flow-Launcher/fix-fsharp-icon-path

add icon to the sample F# plugin
This commit is contained in:
Ioannis G 2020-05-01 17:44:12 +03:00 committed by GitHub
commit f78fbf7e42
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 14 additions and 10 deletions

View file

@ -1,4 +1,4 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netcoreapp3.1</TargetFramework>
@ -16,6 +16,9 @@
</PropertyGroup>
<ItemGroup>
<Content Include="Images\app.png">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="plugin.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

View file

@ -1,11 +1,12 @@
{
"ID":"8FF5D5C1F8194958A12E8668FB7ECC04",
"ActionKeyword":"hf",
"Name":"Hello World FSharp",
"Description":"Hello World FSharp",
"Author":"Ioannis G.",
"Version":"1.0.0",
"Language":"fsharp",
"Website":"https://github.com/Flow-Launcher/Flow.Launcher",
"ExecuteFileName":"HelloWorldFSharp.dll"
"ID": "8FF5D5C1F8194958A12E8668FB7ECC04",
"ActionKeyword": "hf",
"Name": "Hello World FSharp",
"Description": "Hello World FSharp",
"Author": "Ioannis G.",
"Version": "1.0.0",
"Language": "fsharp",
"Website": "https://github.com/Flow-Launcher/Flow.Launcher",
"ExecuteFileName": "HelloWorldFSharp.dll",
"IcoPath": "Images\\app.png"
}