2020-05-11 13:15:15 +00:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
|
|
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
|
<OutputType>Library</OutputType>
|
|
|
|
|
|
<TargetFramework>netcoreapp3.1</TargetFramework>
|
|
|
|
|
|
<UseWPF>true</UseWPF>
|
|
|
|
|
|
<ApplicationIcon />
|
|
|
|
|
|
<StartupObject />
|
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
|
|
|
|
|
<OutputPath>..\..\Output\Debug\Plugins\Flow.Launcher.Explorer</OutputPath>
|
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
|
|
|
|
|
|
<OutputPath>..\..\Output\Release\Plugins\Flow.Launcher.Explorer</OutputPath>
|
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
2020-05-11 20:50:17 +00:00
|
|
|
|
<ItemGroup>
|
2020-05-18 11:31:28 +00:00
|
|
|
|
<PackageReference Include="System.Data.OleDb" Version="4.7.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>
|
|
|
|
|
|
<ProjectReference Include="..\..\Flow.Launcher.Infrastructure\Flow.Launcher.Infrastructure.csproj" />
|
|
|
|
|
|
<ProjectReference Include="..\..\Flow.Launcher.Plugin\Flow.Launcher.Plugin.csproj" />
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
|
|
</Project>
|