2021-02-11 19:17:13 +00:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2020-12-06 08:58:27 +00:00
|
|
|
|
<PropertyGroup>
|
|
|
|
|
|
<OutputType>Library</OutputType>
|
2021-02-11 19:17:13 +00:00
|
|
|
|
<TargetFramework>net5.0-windows</TargetFramework>
|
2020-12-06 08:58:27 +00:00
|
|
|
|
<UseWPF>true</UseWPF>
|
|
|
|
|
|
<UseWindowsForms>true</UseWindowsForms>
|
|
|
|
|
|
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
|
|
|
|
|
|
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
|
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
|
|
|
|
|
<OutputPath>..\..\Output\Debug\Plugins\Flow.Launcher.Plugin.PluginsManager</OutputPath>
|
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
|
|
|
|
|
|
<OutputPath>..\..\Output\Release\Plugins\Flow.Launcher.Plugin.PluginsManager</OutputPath>
|
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<ProjectReference Include="..\..\Flow.Launcher.Infrastructure\Flow.Launcher.Infrastructure.csproj" />
|
2021-02-12 15:47:21 +00:00
|
|
|
|
<ProjectReference Include="..\..\Flow.Launcher.Core\Flow.Launcher.Core.csproj" />
|
2020-12-06 08:58:27 +00:00
|
|
|
|
<ProjectReference Include="..\..\Flow.Launcher.Plugin\Flow.Launcher.Plugin.csproj" />
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<None Include="plugin.json">
|
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
|
</None>
|
|
|
|
|
|
</ItemGroup>
|
2020-12-06 10:10:22 +00:00
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2021-01-02 01:47:20 +00:00
|
|
|
|
<Content Include="Languages\*.xaml">
|
2020-12-07 10:21:14 +00:00
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
|
</Content>
|
2021-01-02 01:57:13 +00:00
|
|
|
|
<Content Include="Images\*.png">
|
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
|
</Content>
|
2020-12-06 10:10:22 +00:00
|
|
|
|
</ItemGroup>
|
2020-12-08 10:59:45 +00:00
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<PackageReference Include="SharpZipLib" Version="1.2.0" />
|
|
|
|
|
|
</ItemGroup>
|
2020-12-06 08:58:27 +00:00
|
|
|
|
</Project>
|