-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathFlow.Launcher.Plugin.Favorites.csproj
49 lines (42 loc) · 1.82 KB
/
Flow.Launcher.Plugin.Favorites.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net7.0-windows7.0</TargetFramework>
<UseWindowsForms>true</UseWindowsForms>
<AssemblyName>Flow.Launcher.Plugin.Favorites</AssemblyName>
<PackageId>Flow.Launcher.Plugin.Favorites</PackageId>
<Authors>stax76</Authors>
<PackageProjectUrl>https://github.com/stax76/Flow.Launcher.Plugin.Favorites</PackageProjectUrl>
<RepositoryUrl>https://github.com/stax76/Flow.Launcher.Plugin.Favorites</RepositoryUrl>
<PackageTags>flow-launcher flow-plugin</PackageTags>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<AppendRuntimeIdentifierToOutputPath>false</AppendRuntimeIdentifierToOutputPath>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<Version>1.6.0</Version>
<Description>Flow Launcher plugin to define favorite apps, files, folders and URLs.</Description>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<DebugSymbols>false</DebugSymbols>
<DebugType>None</DebugType>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<DocumentationFile />
<GenerateSerializationAssemblies>Off</GenerateSerializationAssemblies>
<OutputPath>C:\Users\frank\AppData\Roaming\FlowLauncher\Plugins\Flow.Launcher.Plugin.Favorites</OutputPath>
</PropertyGroup>
<ItemGroup>
<Content Include="plugin.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Flow.Launcher.Plugin" Version="2.0.0" />
</ItemGroup>
<ItemGroup>
<None Update="Icons\CommandLine.ico">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="Icons\Web.ico">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>