2026-01-26 23:30:33 +00:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2020-12-06 08:58:27 +00:00
|
|
|
<PropertyGroup>
|
|
|
|
|
<OutputType>Library</OutputType>
|
2025-02-26 14:37:41 +00:00
|
|
|
<TargetFramework>net9.0-windows</TargetFramework>
|
2020-12-06 08:58:27 +00:00
|
|
|
<UseWPF>true</UseWPF>
|
|
|
|
|
<UseWindowsForms>true</UseWindowsForms>
|
|
|
|
|
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
|
|
|
|
|
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
|
2024-05-23 05:03:01 +00:00
|
|
|
<SatelliteResourceLanguages>en</SatelliteResourceLanguages>
|
2020-12-06 08:58:27 +00:00
|
|
|
</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.Plugin\Flow.Launcher.Plugin.csproj" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<None Include="plugin.json">
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
</None>
|
|
|
|
|
</ItemGroup>
|
2024-05-23 05:03:01 +00:00
|
|
|
|
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>
|
2025-04-04 08:35:28 +00:00
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<PackageReference Include="SharpZipLib" Version="1.4.2" />
|
2026-01-26 23:30:33 +00:00
|
|
|
<PackageReference Include="Avalonia" Version="11.2.3" />
|
|
|
|
|
<PackageReference Include="FluentAvaloniaUI" Version="2.2.0" />
|
2025-04-04 08:35:28 +00:00
|
|
|
</ItemGroup>
|
2026-01-26 23:30:33 +00:00
|
|
|
|
|
|
|
|
<!-- Copy plugin output to Avalonia build directory -->
|
|
|
|
|
<Target Name="CopyToAvaloniaOutput" AfterTargets="Build">
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<AvaloniaPluginDir>..\..\Output\$(Configuration)\Avalonia\Plugins\$(AssemblyName)\</AvaloniaPluginDir>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<PluginFiles Include="$(OutputPath)**\*.*" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<Copy SourceFiles="@(PluginFiles)" DestinationFolder="$(AvaloniaPluginDir)%(RecursiveDir)" SkipUnchangedFiles="true" />
|
|
|
|
|
</Target>
|
2024-05-23 05:03:01 +00:00
|
|
|
</Project>
|