Grunge
Maui - pre build targets iOS
After a couple of days of messing with this I have an answer
these 2 will run at roughly the same time in the build process and will be before the resizertizer so files moved are processed as expected.
<Target Name="CopyBrandingiOS" BeforeTargets="ProcessMauiSplashScreens" Condition="$(TargetFramework.Contains('ios'))">
</Target>
<Target Name="CopyBrandingAndroid" BeforeTargets="PrepareForBuild" Condition="$(TargetFramework.Contains('android'))">
</Target>
2 replies