Flow.Launcher/Flow.Launcher.Core/Flow.Launcher.Core.csproj

67 lines
2.3 KiB
XML
Raw Normal View History

2021-02-11 19:17:13 +00:00
<Project Sdk="Microsoft.NET.Sdk">
2020-03-02 01:22:26 +00:00
2014-12-26 11:36:43 +00:00
<PropertyGroup>
2021-02-11 19:17:13 +00:00
<TargetFramework>net5.0-windows</TargetFramework>
2020-03-02 01:22:26 +00:00
<UseWpf>true</UseWpf>
<UseWindowsForms>true</UseWindowsForms>
2014-12-26 11:36:43 +00:00
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
2020-04-21 09:12:17 +00:00
<RootNamespace>Flow.Launcher.Core</RootNamespace>
<AssemblyName>Flow.Launcher.Core</AssemblyName>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<AppendRuntimeIdentifierToOutputPath>false</AppendRuntimeIdentifierToOutputPath>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<SatelliteResourceLanguages>en</SatelliteResourceLanguages>
2014-12-26 11:36:43 +00:00
</PropertyGroup>
2020-03-02 01:22:26 +00:00
2014-12-26 11:36:43 +00:00
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>portable</DebugType>
2014-12-26 11:36:43 +00:00
<Optimize>false</Optimize>
2014-12-26 14:51:04 +00:00
<OutputPath>..\Output\Debug\</OutputPath>
2014-12-26 11:36:43 +00:00
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
2015-01-15 12:47:48 +00:00
<Prefer32Bit>false</Prefer32Bit>
2014-12-26 11:36:43 +00:00
</PropertyGroup>
2020-03-02 01:22:26 +00:00
2014-12-26 11:36:43 +00:00
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
2015-11-11 00:42:34 +00:00
<OutputPath>..\Output\Release\</OutputPath>
2014-12-26 11:36:43 +00:00
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
2015-01-15 12:47:48 +00:00
<Prefer32Bit>false</Prefer32Bit>
2014-12-26 11:36:43 +00:00
</PropertyGroup>
2020-03-02 01:22:26 +00:00
2014-12-26 11:36:43 +00:00
<ItemGroup>
<None Include="Plugin\README.md" />
2014-12-29 13:55:27 +00:00
<None Include="README.md" />
2014-12-26 11:36:43 +00:00
</ItemGroup>
2020-03-02 01:22:26 +00:00
2014-12-26 11:36:43 +00:00
<ItemGroup>
2020-03-02 01:22:26 +00:00
<None Remove="FodyWeavers.xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="..\SolutionAssemblyInfo.cs" Link="Properties\SolutionAssemblyInfo.cs" />
2014-12-26 11:36:43 +00:00
</ItemGroup>
2020-03-02 01:22:26 +00:00
2016-05-21 18:25:28 +00:00
<ItemGroup>
<Content Include="FodyWeavers.xml" />
</ItemGroup>
2020-03-02 01:22:26 +00:00
2020-01-14 19:10:54 +00:00
<ItemGroup>
Release 1.9.4 (#1287) * Merge pull request #1205 from Flow-Launcher/fix_cmd_command_with_blank Fix shell cmd command with quote and space * Bump NuGet.CommandLine from 5.4.0 to 5.7.2 (#1241) * Merge pull request #1098 from Flow-Launcher/ScrollToSelectedPlugin Scroll to selected item when expanded or size changed * fix RemoveOldQueryResults NullPointerException (#1204) * Merge pull request #1005 from Flow-Launcher/KillProcess Use Cancellation Token to avoid potential race tracing issue * Merge pull request #1187 from Flow-Launcher/update_python_download_mirrors Update Python download mirrors * Merge pull request #1108 from Flow-Launcher/CalculatorDecimalSeparator Respect Decimal Separator for query not just result * Merge pull request #1087 from Flow-Launcher/turnoff_replace_win_r_shell Set Shell plugin's default replace Win R hotkey to off * Merge pull request #1077 from Flow-Launcher/fix_explorer_button_visibility Fix incorrect button visibility in Explorer's expander control * Merge pull request #1076 from Flow-Launcher/fix_path_search_with_index Fix the use of index in path search * Merge pull request #1071 from medlir/fix-browser-bookmarks-plugin-exception avoid exception in ChromiumBookmarkLoader.cs * Merge pull request #1056 from Flow-Launcher/fix_context_menu_typo Fix typo for plugin title in context menu and WindowsSettings name * Merge pull request #1119 from onesounds/antialising Remove All Cleartype Rendering * Version bump * Remove Calculator plugin CopyText feature for 1.9.4 release
2022-07-24 01:39:31 +00:00
<PackageReference Include="Droplex" Version="1.4.1" />
2021-08-13 23:12:22 +00:00
<PackageReference Include="FSharp.Core" Version="5.0.2" />
<PackageReference Include="Microsoft.IO.RecyclableMemoryStream" Version="2.1.3" />
<PackageReference Include="squirrel.windows" Version="1.5.2" />
2020-03-02 01:22:26 +00:00
</ItemGroup>
<ItemGroup>
2020-04-21 09:12:17 +00:00
<ProjectReference Include="..\Flow.Launcher.Infrastructure\Flow.Launcher.Infrastructure.csproj" />
<ProjectReference Include="..\Flow.Launcher.Plugin\Flow.Launcher.Plugin.csproj" />
2020-01-14 19:10:54 +00:00
</ItemGroup>
2020-03-02 01:22:26 +00:00
</Project>