2026-01-17 08:06:22 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
|
|
|
|
2026-01-24 06:13:13 +00:00
|
|
|
<!--
|
2026-01-17 08:06:22 +00:00
|
|
|
OpenMaui Linux Build Targets
|
|
|
|
|
Handles MauiImage items for Linux platform since we don't use the full MAUI SDK targets.
|
|
|
|
|
-->
|
|
|
|
|
|
2026-01-24 06:13:13 +00:00
|
|
|
<!-- Copy MauiImage items to output directory after Build -->
|
2026-01-17 08:06:22 +00:00
|
|
|
<Target Name="CopyMauiImagesToOutput" AfterTargets="Build" Condition="@(MauiImage) != ''">
|
|
|
|
|
<Message Importance="normal" Text="OpenMaui: Copying MauiImage items to output..." />
|
2026-01-24 06:13:13 +00:00
|
|
|
<Copy SourceFiles="@(MauiImage)" DestinationFolder="$(OutputPath)" SkipUnchangedFiles="true" />
|
2026-01-17 08:06:22 +00:00
|
|
|
</Target>
|
|
|
|
|
|
2026-01-24 06:13:13 +00:00
|
|
|
<!-- Copy MauiImage items to publish directory after Publish -->
|
|
|
|
|
<Target Name="CopyMauiImagesToPublish" AfterTargets="Publish" Condition="@(MauiImage) != ''">
|
|
|
|
|
<Message Importance="normal" Text="OpenMaui: Copying MauiImage items to publish folder..." />
|
|
|
|
|
<Copy SourceFiles="@(MauiImage)" DestinationFolder="$(PublishDir)" SkipUnchangedFiles="true" />
|
2026-01-17 08:06:22 +00:00
|
|
|
</Target>
|
|
|
|
|
|
|
|
|
|
</Project>
|