-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Flow.Launcher.Plugin.LinkOpener.csproj
43 lines (40 loc) · 1.62 KB
/
Flow.Launcher.Plugin.LinkOpener.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net7.0-windows</TargetFramework>
<AssemblyName>Flow.Launcher.Plugin.LinkOpener</AssemblyName>
<PackageId>Flow.Launcher.Plugin.LinkOpener</PackageId>
<Authors>Exarilo</Authors>
<PackageProjectUrl>https://github.com/Exarilo/Flow.Launcher.Plugin.LinkOpener</PackageProjectUrl>
<RepositoryUrl>https://github.com/Exarilo/Flow.Launcher.Plugin.LinkOpener</RepositoryUrl>
<PackageTags>flow-launcher flow-plugin</PackageTags>
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<NoWarn>1591</NoWarn>
<UseWPF>true</UseWPF>
<UseWindowsForms>false</UseWindowsForms>
<EnableDefaultPageItems>false</EnableDefaultPageItems>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<NoWarn>1591</NoWarn>
</PropertyGroup>
<ItemGroup>
<Content Include="plugin.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<Content Include="Images\*.png">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="Images\*.jpg">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Flow.Launcher.Plugin" Version="4.1.0" />
</ItemGroup>
<ItemGroup>
<Page Include="LinkSettings.xaml" />
</ItemGroup>
</Project>