2025-07-19 12:26:33 +00:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2020-03-02 01:22:26 +00:00
|
|
|
|
|
2014-01-29 14:44:57 +00:00
|
|
|
|
<PropertyGroup>
|
2025-02-26 14:37:41 +00:00
|
|
|
|
<TargetFramework>net9.0-windows</TargetFramework>
|
2014-01-29 14:44:57 +00:00
|
|
|
|
<ProjectGuid>{4FD29318-A8AB-4D8F-AA47-60BC241B8DA3}</ProjectGuid>
|
|
|
|
|
|
<OutputType>Library</OutputType>
|
2020-03-02 01:22:26 +00:00
|
|
|
|
<UseWpf>true</UseWpf>
|
2014-01-29 14:44:57 +00:00
|
|
|
|
<AppDesignerFolder>Properties</AppDesignerFolder>
|
2020-04-21 09:12:17 +00:00
|
|
|
|
<RootNamespace>Flow.Launcher.Infrastructure</RootNamespace>
|
|
|
|
|
|
<AssemblyName>Flow.Launcher.Infrastructure</AssemblyName>
|
2020-03-03 00:48:07 +00:00
|
|
|
|
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
|
|
|
|
|
|
<AppendRuntimeIdentifierToOutputPath>false</AppendRuntimeIdentifierToOutputPath>
|
2020-04-01 11:20:33 +00:00
|
|
|
|
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
|
2021-12-07 04:37:18 +00:00
|
|
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
2025-02-28 08:23:45 +00:00
|
|
|
|
<RestorePackagesWithLockFile>true</RestorePackagesWithLockFile>
|
2014-01-29 14:44:57 +00:00
|
|
|
|
</PropertyGroup>
|
2020-03-02 01:22:26 +00:00
|
|
|
|
|
2014-01-29 14:44:57 +00:00
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
|
|
|
|
|
<DebugSymbols>true</DebugSymbols>
|
2021-02-22 05:16:48 +00:00
|
|
|
|
<DebugType>portable</DebugType>
|
2014-01-29 14:44:57 +00:00
|
|
|
|
<Optimize>false</Optimize>
|
2014-03-17 13:49:54 +00:00
|
|
|
|
<OutputPath>..\Output\Debug\</OutputPath>
|
2014-01-29 14:44:57 +00:00
|
|
|
|
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
|
|
|
|
|
<ErrorReport>prompt</ErrorReport>
|
|
|
|
|
|
<WarningLevel>4</WarningLevel>
|
2015-01-15 12:47:48 +00:00
|
|
|
|
<Prefer32Bit>false</Prefer32Bit>
|
2014-01-29 14:44:57 +00:00
|
|
|
|
</PropertyGroup>
|
2020-03-02 01:22:26 +00:00
|
|
|
|
|
2014-01-29 14:44:57 +00:00
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
|
|
|
|
|
<DebugType>pdbonly</DebugType>
|
|
|
|
|
|
<Optimize>true</Optimize>
|
2014-03-17 13:49:54 +00:00
|
|
|
|
<OutputPath>..\Output\Release\</OutputPath>
|
2014-01-29 14:44:57 +00:00
|
|
|
|
<DefineConstants>TRACE</DefineConstants>
|
|
|
|
|
|
<ErrorReport>prompt</ErrorReport>
|
|
|
|
|
|
<WarningLevel>4</WarningLevel>
|
2015-01-15 12:47:48 +00:00
|
|
|
|
<Prefer32Bit>false</Prefer32Bit>
|
2025-09-23 09:14:30 +00:00
|
|
|
|
<NoWarn>$(NoWarn);FLSG0007</NoWarn>
|
2014-01-29 14:44:57 +00:00
|
|
|
|
</PropertyGroup>
|
2020-03-02 01:22:26 +00:00
|
|
|
|
|
2024-12-10 12:44:28 +00:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<AdditionalFiles Include="NativeMethods.txt" />
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
2020-04-01 11:20:33 +00:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<Compile Include="..\SolutionAssemblyInfo.cs" Link="Properties\SolutionAssemblyInfo.cs" />
|
2020-07-14 21:34:09 +00:00
|
|
|
|
<None Include="FodyWeavers.xml" />
|
2020-04-01 11:20:33 +00:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
2014-01-29 14:44:57 +00:00
|
|
|
|
<ItemGroup>
|
2020-04-21 09:12:17 +00:00
|
|
|
|
<ProjectReference Include="..\Flow.Launcher.Plugin\Flow.Launcher.Plugin.csproj">
|
2014-01-29 14:44:57 +00:00
|
|
|
|
<Project>{8451ecdd-2ea4-4966-bb0a-7bbc40138e80}</Project>
|
2020-04-21 09:12:17 +00:00
|
|
|
|
<Name>Flow.Launcher.Plugin</Name>
|
2014-01-29 14:44:57 +00:00
|
|
|
|
</ProjectReference>
|
|
|
|
|
|
</ItemGroup>
|
2020-03-02 01:22:26 +00:00
|
|
|
|
|
2015-11-07 03:03:54 +00:00
|
|
|
|
<ItemGroup>
|
2021-06-11 04:40:07 +00:00
|
|
|
|
<PackageReference Include="Ben.Demystifier" Version="0.4.1" />
|
2025-07-19 12:26:33 +00:00
|
|
|
|
<PackageReference Include="BitFaster.Caching" Version="2.5.4" />
|
2025-01-12 11:45:36 +00:00
|
|
|
|
<PackageReference Include="CommunityToolkit.Mvvm" Version="8.4.0" />
|
2025-09-23 09:14:30 +00:00
|
|
|
|
<PackageReference Include="Flow.Launcher.Localization" Version="0.0.6" />
|
2025-08-25 10:50:02 +00:00
|
|
|
|
<PackageReference Include="Fody" Version="6.9.3">
|
2021-10-22 04:31:51 +00:00
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
|
|
</PackageReference>
|
2025-09-23 00:40:01 +00:00
|
|
|
|
<PackageReference Include="ini-parser" Version="2.5.2" />
|
2025-07-20 11:11:09 +00:00
|
|
|
|
<PackageReference Include="InputSimulator" Version="1.0.4" />
|
2025-03-09 03:19:20 +00:00
|
|
|
|
<PackageReference Include="MemoryPack" Version="1.21.4" />
|
2025-07-19 12:26:33 +00:00
|
|
|
|
<PackageReference Include="Microsoft.VisualStudio.Threading" Version="17.14.15" />
|
2025-09-13 06:14:59 +00:00
|
|
|
|
<PackageReference Include="Microsoft.Windows.CsWin32" Version="0.3.205">
|
2024-12-10 12:44:28 +00:00
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
|
|
</PackageReference>
|
2025-07-20 11:11:09 +00:00
|
|
|
|
<PackageReference Include="NHotkey.Wpf" Version="3.0.0" />
|
2025-09-13 06:14:59 +00:00
|
|
|
|
<PackageReference Include="NLog" Version="6.0.4" />
|
|
|
|
|
|
<PackageReference Include="NLog.OutputDebugString" Version="6.0.4" />
|
2025-07-19 12:26:33 +00:00
|
|
|
|
<PackageReference Include="PropertyChanged.Fody" Version="4.1.0">
|
2025-04-30 02:45:18 +00:00
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
|
|
</PackageReference>
|
2025-08-17 08:54:41 +00:00
|
|
|
|
<PackageReference Include="SharpVectors.Wpf" Version="1.8.5" />
|
2025-08-29 05:03:34 +00:00
|
|
|
|
<!-- Do not upgrade this to higher version since it can cause this issue on WinForm platform: -->
|
|
|
|
|
|
<!-- PlatformNotSupportedException: SystemEvents is not supported on this platform. -->
|
|
|
|
|
|
<PackageReference Include="System.Drawing.Common" Version="7.0.0" />
|
2025-07-20 00:39:35 +00:00
|
|
|
|
<PackageReference Include="ToolGood.Words.Pinyin" Version="3.1.0.3" />
|
2015-01-15 12:47:48 +00:00
|
|
|
|
</ItemGroup>
|
2020-03-02 01:22:26 +00:00
|
|
|
|
|
2025-09-23 09:14:30 +00:00
|
|
|
|
<PropertyGroup>
|
|
|
|
|
|
<FLLUseDependencyInjection>true</FLLUseDependencyInjection>
|
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<AdditionalFiles Remove="Languages\en.xaml" />
|
|
|
|
|
|
<AdditionalFiles Include="..\Flow.Launcher\Languages\en.xaml">
|
|
|
|
|
|
<Link>Languages\en.xaml</Link>
|
|
|
|
|
|
</AdditionalFiles>
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
2015-10-31 21:19:32 +00:00
|
|
|
|
</Project>
|