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

196 lines
8.4 KiB
XML
Raw Permalink Normal View History

<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>
<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>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<AppendRuntimeIdentifierToOutputPath>false</AppendRuntimeIdentifierToOutputPath>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<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>
<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
<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;"/>
</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;"/>
</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>
<ItemGroup>
<Page Remove="Themes\ThemeBuilder\Template.xaml" />
</ItemGroup>
<ItemGroup>
<Compile Include="..\SolutionAssemblyInfo.cs" Link="Properties\SolutionAssemblyInfo.cs" />
</ItemGroup>
2020-03-02 01:22:26 +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">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="Images\*.svg">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
2021-02-13 11:01:52 +00:00
<Content Include="Images\*.ico">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
<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>
</ItemGroup>
2014-01-29 10:33:24 +00:00
<ItemGroup>
<PackageReference Include="ChefKeys" Version="0.1.2" />
<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">
<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" />
<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">
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<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>
<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 &quot;IMAGENAME eq Flow.Launcher.exe&quot;" />
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-&gt;Distinct())" />
<Analyzer Remove="@(Analyzer)" />
<Analyzer Include="@(FilteredAnalyzer)" />
</ItemGroup>
</Target>
2022-11-24 07:22:59 +00:00
</Project>