2021-02-11 19:17:13 +00:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2020-05-11 13:15:15 +00:00
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
|
<OutputType>Library</OutputType>
|
2025-02-26 14:37:41 +00:00
|
|
|
|
<TargetFramework>net9.0-windows</TargetFramework>
|
2020-05-11 13:15:15 +00:00
|
|
|
|
<UseWPF>true</UseWPF>
|
2020-06-06 12:13:22 +00:00
|
|
|
|
<UseWindowsForms>true</UseWindowsForms>
|
2020-09-20 07:14:47 +00:00
|
|
|
|
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
|
2020-05-18 13:38:03 +00:00
|
|
|
|
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
|
2021-01-05 01:45:31 +00:00
|
|
|
|
<SatelliteResourceLanguages>en</SatelliteResourceLanguages>
|
2022-07-04 00:50:02 +00:00
|
|
|
|
<Nullable>warnings</Nullable>
|
2020-05-11 13:15:15 +00:00
|
|
|
|
<ApplicationIcon />
|
|
|
|
|
|
<StartupObject />
|
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
2020-05-18 13:38:03 +00:00
|
|
|
|
<OutputPath>..\..\Output\Debug\Plugins\Flow.Launcher.Plugin.Explorer</OutputPath>
|
2020-05-11 13:15:15 +00:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
|
2020-05-18 13:38:03 +00:00
|
|
|
|
<OutputPath>..\..\Output\Release\Plugins\Flow.Launcher.Plugin.Explorer</OutputPath>
|
2020-05-11 13:15:15 +00:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
2020-05-18 13:38:03 +00:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<None Include="plugin.json">
|
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
|
</None>
|
2022-11-04 06:06:43 +00:00
|
|
|
|
<None Update="EverythingSDK\x64\Everything.dll">
|
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
|
</None>
|
|
|
|
|
|
<None Update="EverythingSDK\x86\Everything.dll">
|
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
|
</None>
|
2020-05-18 13:38:03 +00:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
2020-05-18 14:07:17 +00:00
|
|
|
|
<ItemGroup>
|
2021-01-02 01:57:13 +00:00
|
|
|
|
<Content Include="Images\*.png">
|
2020-05-19 08:46:42 +00:00
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
|
</Content>
|
2021-01-01 21:15:37 +00:00
|
|
|
|
<Content Include="Languages\*.xaml">
|
2020-06-08 10:31:48 +00:00
|
|
|
|
<Generator>MSBuild:Compile</Generator>
|
|
|
|
|
|
<SubType>Designer</SubType>
|
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
|
</Content>
|
2020-05-18 14:07:17 +00:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
2020-05-11 20:50:17 +00:00
|
|
|
|
<ItemGroup>
|
2024-10-21 22:22:58 +00:00
|
|
|
|
<PackageReference Include="System.Data.OleDb" Version="8.0.1" />
|
2022-12-04 21:45:44 +00:00
|
|
|
|
<PackageReference Include="System.Linq.Async" Version="6.0.1" />
|
2020-05-11 20:50:17 +00:00
|
|
|
|
<PackageReference Include="tlbimp-Microsoft.Search.Interop" Version="1.0.0" />
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
2020-05-11 13:15:15 +00:00
|
|
|
|
<ItemGroup>
|
2020-07-18 14:12:11 +00:00
|
|
|
|
<ProjectReference Include="..\..\Flow.Launcher.Core\Flow.Launcher.Core.csproj" />
|
2020-05-11 13:15:15 +00:00
|
|
|
|
<ProjectReference Include="..\..\Flow.Launcher.Infrastructure\Flow.Launcher.Infrastructure.csproj" />
|
|
|
|
|
|
<ProjectReference Include="..\..\Flow.Launcher.Plugin\Flow.Launcher.Plugin.csproj" />
|
|
|
|
|
|
</ItemGroup>
|
2022-12-04 22:29:44 +00:00
|
|
|
|
|
2020-05-11 13:15:15 +00:00
|
|
|
|
</Project>
|