2021-02-11 19:17:13 +00:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2020-03-03 00:48:07 +00:00
|
|
|
|
|
2014-03-17 12:12:39 +00:00
|
|
|
|
<PropertyGroup>
|
2020-09-20 07:14:47 +00:00
|
|
|
|
<OutputType>Library</OutputType>
|
2025-02-26 14:37:41 +00:00
|
|
|
|
<TargetFramework>net9.0-windows</TargetFramework>
|
2015-07-17 07:08:39 +00:00
|
|
|
|
<ProjectGuid>{403B57F2-1856-4FC7-8A24-36AB346B763E}</ProjectGuid>
|
2014-03-17 12:12:39 +00:00
|
|
|
|
<AppDesignerFolder>Properties</AppDesignerFolder>
|
2021-02-23 10:28:46 +00:00
|
|
|
|
<UseWPF>true</UseWPF>
|
2020-04-21 09:12:17 +00:00
|
|
|
|
<RootNamespace>Flow.Launcher.Plugin.WebSearch</RootNamespace>
|
|
|
|
|
|
<AssemblyName>Flow.Launcher.Plugin.WebSearch</AssemblyName>
|
2020-09-20 07:14:47 +00:00
|
|
|
|
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
|
2020-03-03 00:48:07 +00:00
|
|
|
|
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
|
|
|
|
|
|
<AppendRuntimeIdentifierToOutputPath>false</AppendRuntimeIdentifierToOutputPath>
|
2020-05-02 16:52:41 +00:00
|
|
|
|
<SatelliteResourceLanguages>en</SatelliteResourceLanguages>
|
2014-03-17 12:12:39 +00:00
|
|
|
|
</PropertyGroup>
|
2021-02-23 10:28:46 +00:00
|
|
|
|
|
2014-03-17 12:12:39 +00:00
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
|
|
|
|
|
<DebugSymbols>true</DebugSymbols>
|
2021-02-22 05:16:48 +00:00
|
|
|
|
<DebugType>portable</DebugType>
|
2014-03-17 12:12:39 +00:00
|
|
|
|
<Optimize>false</Optimize>
|
2020-04-21 09:12:17 +00:00
|
|
|
|
<OutputPath>..\..\Output\Debug\Plugins\Flow.Launcher.Plugin.WebSearch\</OutputPath>
|
2014-03-17 12:12:39 +00:00
|
|
|
|
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
|
|
|
|
|
<ErrorReport>prompt</ErrorReport>
|
|
|
|
|
|
<WarningLevel>4</WarningLevel>
|
2015-07-17 07:08:39 +00:00
|
|
|
|
<Prefer32Bit>false</Prefer32Bit>
|
2014-03-17 12:12:39 +00:00
|
|
|
|
</PropertyGroup>
|
2021-02-23 10:28:46 +00:00
|
|
|
|
|
2014-03-17 12:12:39 +00:00
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
|
|
|
|
|
<DebugType>pdbonly</DebugType>
|
|
|
|
|
|
<Optimize>true</Optimize>
|
2020-04-21 09:12:17 +00:00
|
|
|
|
<OutputPath>..\..\Output\Release\Plugins\Flow.Launcher.Plugin.WebSearch\</OutputPath>
|
2014-03-17 12:12:39 +00:00
|
|
|
|
<DefineConstants>TRACE</DefineConstants>
|
|
|
|
|
|
<ErrorReport>prompt</ErrorReport>
|
|
|
|
|
|
<WarningLevel>4</WarningLevel>
|
2015-07-17 07:08:39 +00:00
|
|
|
|
<Prefer32Bit>false</Prefer32Bit>
|
2014-03-17 12:12:39 +00:00
|
|
|
|
</PropertyGroup>
|
2020-03-03 00:48:07 +00:00
|
|
|
|
|
2015-07-17 07:08:39 +00:00
|
|
|
|
<ItemGroup>
|
2021-01-02 01:57:13 +00:00
|
|
|
|
<Content Include="Images\*.png">
|
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
|
</Content>
|
2021-02-23 10:28:46 +00:00
|
|
|
|
<Content Include="Languages\*.xaml">
|
2015-07-17 07:08:39 +00:00
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
2021-02-23 10:28:46 +00:00
|
|
|
|
</Content>
|
2021-02-23 10:44:59 +00:00
|
|
|
|
</ItemGroup>
|
2020-03-03 00:48:07 +00:00
|
|
|
|
|
2021-02-23 10:44:59 +00:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<None Include="plugin.json">
|
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
|
</None>
|
|
|
|
|
|
</ItemGroup>
|
2021-02-23 10:28:46 +00:00
|
|
|
|
|
2026-01-04 15:00:24 +00:00
|
|
|
|
<ItemGroup>
|
2026-02-22 04:38:17 +00:00
|
|
|
|
<PackageReference Include="iNKORE.UI.WPF.Modern" Version="0.10.1" />
|
2026-01-04 15:00:24 +00:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
2021-02-23 10:44:59 +00:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<ProjectReference Include="..\..\Flow.Launcher.Plugin\Flow.Launcher.Plugin.csproj" />
|
|
|
|
|
|
</ItemGroup>
|
2020-03-03 00:48:07 +00:00
|
|
|
|
|
2021-02-23 10:44:59 +00:00
|
|
|
|
</Project>
|