2020-07-02 20:44:48 +00:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
2020-09-20 07:14:47 +00:00
|
|
|
|
<OutputType>Library</OutputType>
|
2025-02-26 14:37:41 +00:00
|
|
|
|
<TargetFramework>net9.0-windows</TargetFramework>
|
2020-07-02 20:44:48 +00:00
|
|
|
|
<AssemblyName>Flow.Launcher.Plugin.ProcessKiller</AssemblyName>
|
|
|
|
|
|
<PackageId>Flow.Launcher.Plugin.ProcessKiller</PackageId>
|
|
|
|
|
|
<Authors>Flow-Launcher</Authors>
|
|
|
|
|
|
<PackageProjectUrl>https://github.com/Flow-Launcher/Flow.Launcher.Plugin.ProcessKiller</PackageProjectUrl>
|
|
|
|
|
|
<RepositoryUrl>https://github.com/Flow-Launcher/Flow.Launcher.Plugin.ProcessKiller</RepositoryUrl>
|
|
|
|
|
|
<PackageTags>flow-launcher flow-plugin</PackageTags>
|
2020-09-20 07:14:47 +00:00
|
|
|
|
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
|
2020-07-02 20:44:48 +00:00
|
|
|
|
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
|
|
|
|
|
|
<AppendRuntimeIdentifierToOutputPath>false</AppendRuntimeIdentifierToOutputPath>
|
2024-05-23 05:03:01 +00:00
|
|
|
|
<SatelliteResourceLanguages>en</SatelliteResourceLanguages>
|
2025-03-26 07:44:59 +00:00
|
|
|
|
<UseWPF>true</UseWPF>
|
2020-07-02 20:44:48 +00:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
|
|
|
|
|
<DebugSymbols>true</DebugSymbols>
|
2021-02-22 05:16:48 +00:00
|
|
|
|
<DebugType>portable</DebugType>
|
2020-07-02 20:44:48 +00:00
|
|
|
|
<Optimize>false</Optimize>
|
|
|
|
|
|
<OutputPath>..\..\Output\Debug\Plugins\Flow.Launcher.Plugin.ProcessKiller\</OutputPath>
|
|
|
|
|
|
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
|
|
|
|
|
<ErrorReport>prompt</ErrorReport>
|
|
|
|
|
|
<WarningLevel>4</WarningLevel>
|
|
|
|
|
|
<Prefer32Bit>false</Prefer32Bit>
|
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
|
|
|
|
|
<DebugType>pdbonly</DebugType>
|
|
|
|
|
|
<Optimize>true</Optimize>
|
|
|
|
|
|
<OutputPath>..\..\Output\Release\Plugins\Flow.Launcher.Plugin.ProcessKiller\</OutputPath>
|
|
|
|
|
|
<DefineConstants>TRACE</DefineConstants>
|
|
|
|
|
|
<ErrorReport>prompt</ErrorReport>
|
|
|
|
|
|
<WarningLevel>4</WarningLevel>
|
|
|
|
|
|
<Prefer32Bit>false</Prefer32Bit>
|
2025-09-27 16:18:33 +00:00
|
|
|
|
<NoWarn>$(NoWarn);FLSG0007</NoWarn>
|
2020-07-02 20:44:48 +00:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2021-01-01 21:15:37 +00:00
|
|
|
|
<Content Include="Languages\*.xaml">
|
2020-07-02 22:16:33 +00:00
|
|
|
|
<SubType>Designer</SubType>
|
|
|
|
|
|
<Generator>MSBuild:Compile</Generator>
|
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
|
</Content>
|
2021-01-02 01:57:13 +00:00
|
|
|
|
<Content Include="Images\*.png">
|
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
|
</Content>
|
2020-07-02 20:44:48 +00:00
|
|
|
|
<Content Include="plugin.json">
|
|
|
|
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
|
|
|
|
</Content>
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
2024-12-10 05:29:21 +00:00
|
|
|
|
<ItemGroup>
|
2025-09-27 16:18:33 +00:00
|
|
|
|
<PackageReference Include="Flow.Launcher.Localization" Version="0.0.6" />
|
2026-02-04 22:46:23 +00:00
|
|
|
|
<PackageReference Include="Microsoft.Windows.CsWin32" Version="0.3.269">
|
2024-12-10 05:29:21 +00:00
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
|
|
</PackageReference>
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
2020-07-02 20:44:48 +00:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<ProjectReference Include="..\..\Flow.Launcher.Plugin\Flow.Launcher.Plugin.csproj" />
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
2024-05-23 05:03:01 +00:00
|
|
|
|
</Project>
|