2021-02-11 19:17:13 +00:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2020-03-03 00:48:07 +00:00
|
|
|
|
|
2015-04-21 00:32:10 +00:00
|
|
|
|
<PropertyGroup>
|
2020-09-20 07:14:47 +00:00
|
|
|
|
<OutputType>Library</OutputType>
|
2025-02-26 14:37:41 +00:00
|
|
|
|
<TargetFramework>net9.0-windows10.0.19041.0</TargetFramework>
|
2015-04-21 00:32:10 +00:00
|
|
|
|
<ProjectGuid>{FDB3555B-58EF-4AE6-B5F1-904719637AB4}</ProjectGuid>
|
|
|
|
|
|
<AppDesignerFolder>Properties</AppDesignerFolder>
|
2020-04-21 09:12:17 +00:00
|
|
|
|
<RootNamespace>Flow.Launcher.Plugin.Program</RootNamespace>
|
|
|
|
|
|
<AssemblyName>Flow.Launcher.Plugin.Program</AssemblyName>
|
2020-03-03 00:48:07 +00:00
|
|
|
|
<UseWpf>true</UseWpf>
|
|
|
|
|
|
<UseWindowsForms>true</UseWindowsForms>
|
2020-09-20 07:14:47 +00:00
|
|
|
|
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
|
2020-03-03 00:48:07 +00:00
|
|
|
|
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
|
|
|
|
|
|
<AppendRuntimeIdentifierToOutputPath>false</AppendRuntimeIdentifierToOutputPath>
|
2024-05-23 05:03:01 +00:00
|
|
|
|
<SatelliteResourceLanguages>en</SatelliteResourceLanguages>
|
2015-04-21 00:32:10 +00:00
|
|
|
|
</PropertyGroup>
|
2020-03-03 00:48:07 +00:00
|
|
|
|
|
2015-04-21 00:32:10 +00:00
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
|
|
|
|
|
<DebugSymbols>true</DebugSymbols>
|
2021-02-22 05:16:48 +00:00
|
|
|
|
<DebugType>portable</DebugType>
|
2015-04-21 00:32:10 +00:00
|
|
|
|
<Optimize>false</Optimize>
|
2020-04-21 09:12:17 +00:00
|
|
|
|
<OutputPath>..\..\Output\Debug\Plugins\Flow.Launcher.Plugin.Program\</OutputPath>
|
2015-04-21 00:32:10 +00:00
|
|
|
|
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
|
|
|
|
|
<ErrorReport>prompt</ErrorReport>
|
|
|
|
|
|
<WarningLevel>4</WarningLevel>
|
|
|
|
|
|
<Prefer32Bit>false</Prefer32Bit>
|
|
|
|
|
|
</PropertyGroup>
|
2020-03-03 00:48:07 +00:00
|
|
|
|
|
2015-04-21 00:32:10 +00:00
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
|
|
|
|
|
<DebugType>pdbonly</DebugType>
|
|
|
|
|
|
<Optimize>true</Optimize>
|
2020-04-21 09:12:17 +00:00
|
|
|
|
<OutputPath>..\..\Output\Release\Plugins\Flow.Launcher.Plugin.Program\</OutputPath>
|
2015-04-21 00:32:10 +00:00
|
|
|
|
<DefineConstants>TRACE</DefineConstants>
|
|
|
|
|
|
<ErrorReport>prompt</ErrorReport>
|
|
|
|
|
|
<WarningLevel>4</WarningLevel>
|
|
|
|
|
|
<Prefer32Bit>false</Prefer32Bit>
|
|
|
|
|
|
</PropertyGroup>
|
2020-03-03 00:48:07 +00:00
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<None Include="plugin.json">
|
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
|
</None>
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
2015-04-21 00:32:10 +00:00
|
|
|
|
<ItemGroup>
|
2021-01-01 21:15:37 +00:00
|
|
|
|
<Content Include="Languages\*.xaml">
|
2019-10-07 15:08:06 +00:00
|
|
|
|
<Generator>MSBuild:Compile</Generator>
|
2016-06-13 21:24:23 +00:00
|
|
|
|
<SubType>Designer</SubType>
|
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
|
</Content>
|
2021-01-02 01:57:13 +00:00
|
|
|
|
<Content Include="Images\*.png">
|
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
|
</Content>
|
2015-04-21 00:32:10 +00:00
|
|
|
|
</ItemGroup>
|
2024-12-10 07:09:06 +00:00
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<AdditionalFiles Include="NativeMethods.txt" />
|
|
|
|
|
|
</ItemGroup>
|
2020-03-03 00:48:07 +00:00
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2020-04-21 09:12:17 +00:00
|
|
|
|
<ProjectReference Include="..\..\Flow.Launcher.Plugin\Flow.Launcher.Plugin.csproj" />
|
2020-03-03 00:48:07 +00:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
2015-04-21 00:32:10 +00:00
|
|
|
|
<ItemGroup>
|
2022-10-16 09:25:47 +00:00
|
|
|
|
<PackageReference Include="ini-parser" Version="2.5.2" />
|
2025-06-23 05:02:04 +00:00
|
|
|
|
<PackageReference Include="MemoryPack" Version="1.21.4" />
|
2025-09-21 12:23:00 +00:00
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Caching.Memory" Version="9.0.9" />
|
|
|
|
|
|
<PackageReference Include="Microsoft.Windows.CsWin32" Version="0.3.205">
|
2024-12-10 07:09:06 +00:00
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
|
|
</PackageReference>
|
2025-09-21 12:23:00 +00:00
|
|
|
|
<PackageReference Include="NLog" Version="6.0.4" />
|
2015-04-21 00:32:10 +00:00
|
|
|
|
</ItemGroup>
|
2020-05-01 14:40:12 +00:00
|
|
|
|
|
2015-11-04 16:40:10 +00:00
|
|
|
|
</Project>
|