2025-01-12 11:45:36 +00:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2020-03-02 01:22:26 +00:00
|
|
|
|
|
2014-01-29 10:33:24 +00:00
|
|
|
|
<PropertyGroup>
|
|
|
|
|
|
<OutputType>WinExe</OutputType>
|
2025-02-26 14:37:41 +00:00
|
|
|
|
<TargetFramework>net9.0-windows10.0.19041.0</TargetFramework>
|
2020-03-02 01:22:26 +00:00
|
|
|
|
<UseWPF>true</UseWPF>
|
2024-06-04 22:32:23 +00:00
|
|
|
|
<UseWindowsForms>false</UseWindowsForms>
|
2020-04-21 09:12:17 +00:00
|
|
|
|
<StartupObject>Flow.Launcher.App</StartupObject>
|
2020-03-02 01:22:26 +00:00
|
|
|
|
<ApplicationIcon>Resources\app.ico</ApplicationIcon>
|
|
|
|
|
|
<ApplicationManifest>app.manifest</ApplicationManifest>
|
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>
|
2020-05-02 16:52:41 +00:00
|
|
|
|
<SatelliteResourceLanguages>en</SatelliteResourceLanguages>
|
2025-02-28 08:23:45 +00:00
|
|
|
|
<RestorePackagesWithLockFile>true</RestorePackagesWithLockFile>
|
2014-01-29 10:33:24 +00:00
|
|
|
|
</PropertyGroup>
|
2020-03-02 01:22:26 +00:00
|
|
|
|
|
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
2014-05-10 04:21:55 +00:00
|
|
|
|
<PlatformTarget>AnyCPU</PlatformTarget>
|
2014-01-29 10:33:24 +00:00
|
|
|
|
<DebugSymbols>true</DebugSymbols>
|
2021-02-22 05:16:48 +00:00
|
|
|
|
<DebugType>portable</DebugType>
|
2014-01-29 10:33:24 +00:00
|
|
|
|
<Optimize>false</Optimize>
|
2014-03-17 13:49:54 +00:00
|
|
|
|
<OutputPath>..\Output\Debug\</OutputPath>
|
2014-01-29 10:33:24 +00:00
|
|
|
|
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
|
|
|
|
|
<ErrorReport>prompt</ErrorReport>
|
|
|
|
|
|
<WarningLevel>4</WarningLevel>
|
|
|
|
|
|
<UseVSHostingProcess>true</UseVSHostingProcess>
|
2015-01-15 12:47:48 +00:00
|
|
|
|
<Prefer32Bit>false</Prefer32Bit>
|
2014-01-29 10:33:24 +00:00
|
|
|
|
</PropertyGroup>
|
2020-03-02 01:22:26 +00:00
|
|
|
|
|
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
|
2014-01-29 10:33:24 +00:00
|
|
|
|
<PlatformTarget>AnyCPU</PlatformTarget>
|
|
|
|
|
|
<DebugType>pdbonly</DebugType>
|
|
|
|
|
|
<Optimize>true</Optimize>
|
2014-03-17 13:49:54 +00:00
|
|
|
|
<OutputPath>..\Output\Release\</OutputPath>
|
2015-11-11 00:33:33 +00:00
|
|
|
|
<DefineConstants>TRACE;RELEASE</DefineConstants>
|
2014-01-29 10:33:24 +00:00
|
|
|
|
<ErrorReport>prompt</ErrorReport>
|
|
|
|
|
|
<WarningLevel>4</WarningLevel>
|
2015-01-15 12:47:48 +00:00
|
|
|
|
<Prefer32Bit>false</Prefer32Bit>
|
2026-02-24 11:52:23 +00:00
|
|
|
|
<NoWarn>$(NoWarn);FLSG0007</NoWarn>
|
2014-01-29 10:33:24 +00:00
|
|
|
|
</PropertyGroup>
|
2020-03-02 01:22:26 +00:00
|
|
|
|
|
2025-08-07 01:33:31 +00:00
|
|
|
|
<Target Name="RemoveUnnecessaryRuntimesAfterBuild" AfterTargets="Build">
|
2026-02-24 11:52:23 +00:00
|
|
|
|
<RemoveDir Directories="$(OutputPath)runtimes\browser-wasm;
|
|
|
|
|
|
$(OutputPath)runtimes\linux-arm;
|
|
|
|
|
|
$(OutputPath)runtimes\linux-arm64;
|
|
|
|
|
|
$(OutputPath)runtimes\linux-armel;
|
|
|
|
|
|
$(OutputPath)runtimes\linux-mips64;
|
|
|
|
|
|
$(OutputPath)runtimes\linux-musl-arm;
|
|
|
|
|
|
$(OutputPath)runtimes\linux-musl-arm64;
|
|
|
|
|
|
$(OutputPath)runtimes\linux-musl-x64;
|
|
|
|
|
|
$(OutputPath)runtimes\linux-musl-s390x;
|
|
|
|
|
|
$(OutputPath)runtimes\linux-ppc64le;
|
|
|
|
|
|
$(OutputPath)runtimes\linux-s390x;
|
|
|
|
|
|
$(OutputPath)runtimes\linux-x64;
|
|
|
|
|
|
$(OutputPath)runtimes\linux-x86;
|
|
|
|
|
|
$(OutputPath)runtimes\maccatalyst-arm64;
|
|
|
|
|
|
$(OutputPath)runtimes\maccatalyst-x64;
|
|
|
|
|
|
$(OutputPath)runtimes\osx;
|
|
|
|
|
|
$(OutputPath)runtimes\osx-arm64;
|
|
|
|
|
|
$(OutputPath)runtimes\osx-x64;
|
|
|
|
|
|
$(OutputPath)runtimes\win-arm;
|
|
|
|
|
|
$(OutputPath)runtimes\win-arm64;"/>
|
2025-08-07 01:33:31 +00:00
|
|
|
|
</Target>
|
|
|
|
|
|
|
|
|
|
|
|
<Target Name="RemoveUnnecessaryRuntimesAfterPublish" AfterTargets="Publish">
|
2026-02-24 11:52:23 +00:00
|
|
|
|
<RemoveDir Directories="$(PublishDir)runtimes\browser-wasm;
|
|
|
|
|
|
$(PublishDir)runtimes\linux-arm;
|
|
|
|
|
|
$(PublishDir)runtimes\linux-arm64;
|
|
|
|
|
|
$(PublishDir)runtimes\linux-armel;
|
|
|
|
|
|
$(PublishDir)runtimes\linux-mips64;
|
|
|
|
|
|
$(PublishDir)runtimes\linux-musl-arm;
|
|
|
|
|
|
$(PublishDir)runtimes\linux-musl-arm64;
|
|
|
|
|
|
$(PublishDir)runtimes\linux-musl-x64;
|
|
|
|
|
|
$(PublishDir)runtimes\linux-musl-s390x;
|
|
|
|
|
|
$(PublishDir)runtimes\linux-ppc64le;
|
|
|
|
|
|
$(PublishDir)runtimes\linux-s390x;
|
|
|
|
|
|
$(PublishDir)runtimes\linux-x64;
|
|
|
|
|
|
$(PublishDir)runtimes\linux-x86;
|
|
|
|
|
|
$(PublishDir)runtimes\maccatalyst-arm64;
|
|
|
|
|
|
$(PublishDir)runtimes\maccatalyst-x64;
|
|
|
|
|
|
$(PublishDir)runtimes\osx;
|
|
|
|
|
|
$(PublishDir)runtimes\osx-arm64;
|
|
|
|
|
|
$(PublishDir)runtimes\osx-x64;
|
|
|
|
|
|
$(PublishDir)runtimes\win-arm;
|
|
|
|
|
|
$(PublishDir)runtimes\win-arm64;"/>
|
2025-08-07 01:33:31 +00:00
|
|
|
|
</Target>
|
|
|
|
|
|
|
2014-01-29 10:33:24 +00:00
|
|
|
|
<ItemGroup>
|
2020-03-02 01:22:26 +00:00
|
|
|
|
<ApplicationDefinition Remove="App.xaml" />
|
2014-01-29 10:33:24 +00:00
|
|
|
|
</ItemGroup>
|
2020-03-02 01:22:26 +00:00
|
|
|
|
|
2014-01-29 10:33:24 +00:00
|
|
|
|
<ItemGroup>
|
2020-03-02 01:22:26 +00:00
|
|
|
|
<Page Include="App.xaml" />
|
2014-01-29 10:33:24 +00:00
|
|
|
|
</ItemGroup>
|
2021-09-27 16:30:27 +00:00
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<Page Remove="Themes\ThemeBuilder\Template.xaml" />
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
2020-04-01 11:20:33 +00:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<Compile Include="..\SolutionAssemblyInfo.cs" Link="Properties\SolutionAssemblyInfo.cs" />
|
|
|
|
|
|
</ItemGroup>
|
2020-03-02 01:22:26 +00:00
|
|
|
|
|
2020-05-14 22:41:56 +00:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<Content Include="Languages\*.xaml">
|
|
|
|
|
|
<Generator>MSBuild:Compile</Generator>
|
|
|
|
|
|
<SubType>Designer</SubType>
|
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
|
</Content>
|
2021-01-26 08:24:30 +00:00
|
|
|
|
<Content Include="Images\*.png">
|
2021-01-02 01:59:58 +00:00
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
|
</Content>
|
2021-01-09 00:49:14 +00:00
|
|
|
|
<Content Include="Images\*.svg">
|
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
|
</Content>
|
2021-02-13 11:01:52 +00:00
|
|
|
|
<Content Include="Images\*.ico">
|
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
|
</Content>
|
2020-05-14 22:41:56 +00:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
2020-06-02 14:43:11 +00:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<Content Include="Themes\*.xaml">
|
|
|
|
|
|
<Generator>MSBuild:Compile</Generator>
|
|
|
|
|
|
<SubType>Designer</SubType>
|
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
|
</Content>
|
2025-02-28 15:40:23 +00:00
|
|
|
|
<Content Include="Resources\SegoeFluentIcons.ttf">
|
2021-10-07 10:58:54 +00:00
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
|
</Content>
|
2020-06-02 14:43:11 +00:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
2014-01-29 10:33:24 +00:00
|
|
|
|
<ItemGroup>
|
2025-02-21 09:55:32 +00:00
|
|
|
|
<PackageReference Include="ChefKeys" Version="0.1.2" />
|
2024-12-16 22:11:39 +00:00
|
|
|
|
<PackageReference Include="CommunityToolkit.Mvvm" Version="8.4.0" />
|
2026-02-24 11:52:23 +00:00
|
|
|
|
<PackageReference Include="Flow.Launcher.Localization" Version="0.0.6" />
|
2025-09-21 12:23:00 +00:00
|
|
|
|
<PackageReference Include="Fody" Version="6.9.3">
|
2021-10-20 19:50:46 +00:00
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
|
|
</PackageReference>
|
2026-02-24 11:52:23 +00:00
|
|
|
|
<PackageReference Include="iNKORE.UI.WPF.Modern" Version="0.10.1" />
|
2025-06-06 15:08:32 +00:00
|
|
|
|
<PackageReference Include="MdXaml" Version="1.27.0" />
|
2025-06-07 03:11:40 +00:00
|
|
|
|
<PackageReference Include="MdXaml.AnimatedGif" Version="1.27.0" />
|
|
|
|
|
|
<PackageReference Include="MdXaml.Html" Version="1.27.0" />
|
|
|
|
|
|
<PackageReference Include="MdXaml.Plugins" Version="1.27.0" />
|
|
|
|
|
|
<PackageReference Include="MdXaml.Svg" Version="1.27.0" />
|
2025-09-21 12:23:00 +00:00
|
|
|
|
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="9.0.9" />
|
|
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Hosting" Version="9.0.9" />
|
2022-11-14 22:17:10 +00:00
|
|
|
|
<PackageReference Include="Microsoft.Toolkit.Uwp.Notifications" Version="7.1.3" />
|
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-01-10 04:52:09 +00:00
|
|
|
|
<PackageReference Include="SemanticVersioning" Version="3.0.0" />
|
2025-07-19 12:26:33 +00:00
|
|
|
|
<PackageReference Include="TaskScheduler" Version="2.12.2" />
|
2025-09-21 12:23:00 +00:00
|
|
|
|
<PackageReference Include="VirtualizingWrapPanel" Version="2.3.1" />
|
2014-01-29 10:33:24 +00:00
|
|
|
|
</ItemGroup>
|
2020-03-02 01:22:26 +00:00
|
|
|
|
|
2014-01-29 10:33:24 +00:00
|
|
|
|
<ItemGroup>
|
2020-04-21 09:12:17 +00:00
|
|
|
|
<ProjectReference Include="..\Flow.Launcher.Core\Flow.Launcher.Core.csproj" />
|
|
|
|
|
|
<ProjectReference Include="..\Flow.Launcher.Infrastructure\Flow.Launcher.Infrastructure.csproj" />
|
|
|
|
|
|
<ProjectReference Include="..\Flow.Launcher.Plugin\Flow.Launcher.Plugin.csproj" />
|
2014-01-29 10:33:24 +00:00
|
|
|
|
</ItemGroup>
|
2020-03-02 01:22:26 +00:00
|
|
|
|
|
2026-02-24 11:52:23 +00:00
|
|
|
|
<PropertyGroup>
|
|
|
|
|
|
<FLLUseDependencyInjection>true</FLLUseDependencyInjection>
|
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
2021-11-14 02:43:03 +00:00
|
|
|
|
<ItemGroup>
|
2021-11-14 06:09:09 +00:00
|
|
|
|
<Content Include="Resources\open.wav">
|
|
|
|
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
|
|
|
|
</Content>
|
2021-11-14 02:43:03 +00:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
2024-05-30 16:48:29 +00:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<None Update="Resources\dev.ico">
|
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
|
</None>
|
2025-06-14 06:32:00 +00:00
|
|
|
|
<None Update="Resources\double_pinyin.json">
|
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
|
</None>
|
2024-05-30 16:48:29 +00:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
2020-03-02 01:22:26 +00:00
|
|
|
|
<Target Name="PreBuild" BeforeTargets="PreBuildEvent">
|
2020-04-21 09:12:17 +00:00
|
|
|
|
<Exec Command="taskkill /f /fi "IMAGENAME eq Flow.Launcher.exe"" />
|
2014-01-29 10:33:24 +00:00
|
|
|
|
</Target>
|
2022-11-13 09:33:00 +00:00
|
|
|
|
|
|
|
|
|
|
<Target Name="RemoveDuplicateAnalyzers" BeforeTargets="CoreCompile">
|
|
|
|
|
|
<!-- Work around https://github.com/dotnet/wpf/issues/6792 -->
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<FilteredAnalyzer Include="@(Analyzer->Distinct())" />
|
|
|
|
|
|
<Analyzer Remove="@(Analyzer)" />
|
|
|
|
|
|
<Analyzer Include="@(FilteredAnalyzer)" />
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
</Target>
|
2022-11-24 07:22:59 +00:00
|
|
|
|
</Project>
|