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

97 lines
4.1 KiB
XML
Raw Permalink Normal View History

2025-07-19 12:26:33 +00:00
<Project Sdk="Microsoft.NET.Sdk">
2020-03-02 01:22:26 +00:00
<PropertyGroup>
2025-02-26 14:37:41 +00:00
<TargetFramework>net9.0-windows</TargetFramework>
<ProjectGuid>{4FD29318-A8AB-4D8F-AA47-60BC241B8DA3}</ProjectGuid>
<OutputType>Library</OutputType>
2020-03-02 01:22:26 +00:00
<UseWpf>true</UseWpf>
<AppDesignerFolder>Properties</AppDesignerFolder>
2020-04-21 09:12:17 +00:00
<RootNamespace>Flow.Launcher.Infrastructure</RootNamespace>
<AssemblyName>Flow.Launcher.Infrastructure</AssemblyName>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<AppendRuntimeIdentifierToOutputPath>false</AppendRuntimeIdentifierToOutputPath>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
2025-02-28 08:23:45 +00:00
<RestorePackagesWithLockFile>true</RestorePackagesWithLockFile>
</PropertyGroup>
2020-03-02 01:22:26 +00:00
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>portable</DebugType>
<Optimize>false</Optimize>
2014-03-17 13:49:54 +00:00
<OutputPath>..\Output\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
2015-01-15 12:47:48 +00:00
<Prefer32Bit>false</Prefer32Bit>
</PropertyGroup>
2020-03-02 01:22:26 +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>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
2015-01-15 12:47:48 +00:00
<Prefer32Bit>false</Prefer32Bit>
<NoWarn>$(NoWarn);FLSG0007</NoWarn>
</PropertyGroup>
2020-03-02 01:22:26 +00:00
2024-12-10 12:44:28 +00:00
<ItemGroup>
<AdditionalFiles Include="NativeMethods.txt" />
</ItemGroup>
<ItemGroup>
<Compile Include="..\SolutionAssemblyInfo.cs" Link="Properties\SolutionAssemblyInfo.cs" />
<None Include="FodyWeavers.xml" />
</ItemGroup>
<ItemGroup>
2020-04-21 09:12:17 +00:00
<ProjectReference Include="..\Flow.Launcher.Plugin\Flow.Launcher.Plugin.csproj">
<Project>{8451ecdd-2ea4-4966-bb0a-7bbc40138e80}</Project>
2020-04-21 09:12:17 +00:00
<Name>Flow.Launcher.Plugin</Name>
</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" />
<PackageReference Include="CommunityToolkit.Mvvm" Version="8.4.0" />
<PackageReference Include="Flow.Launcher.Localization" Version="0.0.6" />
2025-08-25 10:50:02 +00:00
<PackageReference Include="Fody" Version="6.9.3">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="ini-parser" Version="2.5.2" />
<PackageReference Include="InputSimulator" Version="1.0.4" />
<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>
<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">
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="SharpVectors.Wpf" Version="1.8.5" />
<!-- 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
<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>